Searched refs:tostr (Results 1 - 6 of 6) sorted by relevance

/macosx-10.10/adv_cmds-158/locale/
H A Dlocale.cc25 template<typename T> string tostr(T val) { function
264 add_kw(new lc_keyword(LC_MONETARY, "int_frac_digits", tostr((int)lc->int_frac_digits), V_NUM));
265 add_kw(new lc_keyword(LC_MONETARY, "frac_digits", tostr((int)lc->frac_digits), V_NUM));
266 add_kw(new lc_keyword(LC_MONETARY, "p_cs_precedes", tostr((int)lc->p_cs_precedes), V_NUM));
267 add_kw(new lc_keyword(LC_MONETARY, "p_sep_by_space", tostr((int)lc->p_sep_by_space), V_NUM));
268 add_kw(new lc_keyword(LC_MONETARY, "n_cs_precedes", tostr((int)lc->n_cs_precedes), V_NUM));
269 add_kw(new lc_keyword(LC_MONETARY, "n_sep_by_space", tostr((int)lc->n_sep_by_space), V_NUM));
270 add_kw(new lc_keyword(LC_MONETARY, "p_sign_posn", tostr((int)lc->p_sign_posn), V_NUM));
271 add_kw(new lc_keyword(LC_MONETARY, "n_sign_posn", tostr((int)lc->n_sign_posn), V_NUM));
272 add_kw(new lc_keyword(LC_MONETARY, "int_p_cs_precedes", tostr((in
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/math/
H A Dbigfloat.tcl662 set d [expr {[tostr $n]%4}]
970 set new_exp [tostr $new_exp]
1233 # [tostr [fromstr 10.0]] returns 10.
1617 # after the dot (after you call [tostr] on the result)
1622 set precision [tostr $precision]
1845 switch -- [tostr $d] {
2069 set result [string trimleft [tostr $x] +]
2097 set integer [tostr [roundshift [::math::bignum::fromstr $integer] $lenDiff]]
2126 proc ::math::bigfloat::tostr {args} {
2133 if {[llength $args]!=1} {error "syntax error: should be tostr
[all...]
H A Dbigfloat2.tcl1137 # [tostr [fromstr 10.0]] returns 10.
1509 # after the dot (after you call [tostr] on the result)
1970 # please note: here we call math::bigfloat::tostr
1971 set result [string trimleft [tostr $x] +]
2037 proc ::math::bigfloat::tostr {args} {
2043 if {[llength $args]!=1} {error "syntax error: should be tostr ?-nosci? number"}
2207 fromstr tostr fromdouble todouble
/macosx-10.10/emacs-93/emacs/src/
H A Deditfns.c2744 unsigned char fromstr[MAX_MULTIBYTE_LENGTH], tostr[MAX_MULTIBYTE_LENGTH];
2764 if (CHAR_STRING (XFASTINT (tochar), tostr) != len)
2766 if (!ASCII_BYTE_P (*tostr))
2772 if (!CHAR_HEAD_P (*tostr))
2774 else if (BYTES_BY_CHAR_HEAD (*tostr) > len)
2782 tostr[0] = XFASTINT (tochar);
2869 string = make_multibyte_string (tostr, 1, len);
2892 for (i = 0; i < len; i++) *p++ = tostr[i];
2730 unsigned char fromstr[MAX_MULTIBYTE_LENGTH], tostr[MAX_MULTIBYTE_LENGTH]; variable
/macosx-10.10/vim-55/runtime/syntax/
H A Dmoo.vim95 syn keyword mooKnownBuiltinFunction abs acos add_property add_verb asin atan binary_hash boot_player buffered_output_length callers caller_perms call_function ceil children chparent clear_property connected_players connected_seconds connection_name connection_option connection_options cos cosh create crypt ctime db_disk_size decode_binary delete_property delete_verb disassemble dump_database encode_binary equal eval exp floatstr floor flush_input force_input function_info idle_seconds index is_clear_property is_member is_player kill_task length listappend listdelete listen listeners listinsert listset log log10 match max max_object memory_usage min move notify object_bytes open_network_connection output_delimiters parent pass players properties property_info queued_tasks queue_info raise random read recycle renumber reset_max_object resume rindex rmatch seconds_left server_log server_version setadd setremove set_connection_option set_player_flag set_property_info set_task_perms set_verb_args set_verb_code set_verb_info shutdown sin sinh sqrt strcmp string_hash strsub substitute suspend tan tanh task_id task_stack ticks_left time tofloat toint toliteral tonum toobj tostr trunc typeof unlisten valid value_bytes value_hash verbs verb_args verb_code verb_info contained
/macosx-10.10/vim-55/src/
H A Deval.c17707 * "tr(string, fromstr, tostr)" function
17716 char_u *tostr; local
17733 tostr = get_tv_string_buf_chk(&argvars[2], buf2);
17738 if (fromstr == NULL || tostr == NULL)
17745 /* not multi-byte: fromstr and tostr must be the same length */
17746 if (STRLEN(fromstr) != STRLEN(tostr))
17756 /* fromstr and tostr have to contain the same number of chars */
17771 for (p = tostr; *p != NUL; p += tolen)
17781 if (*p == NUL) /* tostr is shorter than fromstr */
17790 /* Check that fromstr and tostr hav
[all...]

Completed in 222 milliseconds