/external/stlport/src/ |
D | num_put.cpp | 31 __insert_grouping_aux(Char* first, Char* last, const string& grouping, in __insert_grouping_aux() argument 53 if ( n < grouping.size() ) { in __insert_grouping_aux() 54 groupsize = __STATIC_CAST(int, grouping[n++] ); in __insert_grouping_aux() 75 const string& grouping, in __insert_grouping_aux() argument 98 if ( n < grouping.size() ) { in __insert_grouping_aux() 99 groupsize = __STATIC_CAST( int, grouping[n++] ); in __insert_grouping_aux() 135 __insert_grouping(char * first, char * last, const string& grouping, in __insert_grouping() argument 137 return __insert_grouping_aux(first, last, grouping, in __insert_grouping() 142 __insert_grouping(__iostring &str, size_t group_pos, const string& grouping, in __insert_grouping() argument 144 __insert_grouping_aux(str, group_pos, grouping, separator, Plus, Minus, basechars); in __insert_grouping() [all …]
|
/external/bison/lib/ |
D | strtol.c | 272 const char *grouping; in INTERNAL() local 276 grouping = _NL_CURRENT (LC_NUMERIC, GROUPING); in INTERNAL() 277 if (*grouping <= 0 || *grouping == CHAR_MAX) in INTERNAL() 278 grouping = NULL; in INTERNAL() 288 grouping = NULL; in INTERNAL() 292 grouping = NULL; in INTERNAL() 353 end = correctly_grouped_prefix (s, end, thousands, grouping); in INTERNAL()
|
/external/stlport/test/unit/ |
D | num_facets_test.cpp | 46 if (!npct.grouping().empty()) { in _num_put_get() 75 if (!npct.grouping().empty()) { in _num_put_get() 90 if (npct.grouping().size() == 1 && npct.grouping()[0] == 3) { in _num_put_get() 243 CPPUNIT_CHECK( cfacet_byname.grouping() == cfacet.grouping() ); in numpunct_by_name() 244 if (!cfacet.grouping().empty()) in numpunct_by_name()
|
D | money_facets_test.cpp | 134 if (!intl_fmp.grouping().empty()) { in _money_put_get2() 220 if (!dom_fmp.grouping().empty()) { in _money_put_get2() 552 CPPUNIT_CHECK( cfacet_byname.grouping() == cfacet.grouping() ); in moneypunct_by_name() 553 if (!cfacet_byname.grouping().empty()) in moneypunct_by_name() 581 CPPUNIT_CHECK( cfacet_byname.grouping() == cfacet.grouping() ); in moneypunct_by_name() 582 if (!cfacet_byname.grouping().empty()) in moneypunct_by_name()
|
/external/stlport/src/c_locale_win32/ |
D | c_locale_win32.c | 194 char *grouping; member 223 char *grouping; member 233 static void __FixGrouping(char *grouping); 416 lnum->grouping = GroupingBuffer; in _Locale_numeric_create() 419 lnum->grouping = (char*)malloc(1); in _Locale_numeric_create() 420 if (!lnum->grouping) { free(lnum); *__err_code = _STLP_LOC_NO_MEMORY; return NULL; } in _Locale_numeric_create() 421 lnum->grouping[0] = 0; in _Locale_numeric_create() 848 { lmon->grouping = NULL; *__err_code = _STLP_LOC_NO_MEMORY; return lmon; } in _Locale_monetary_create() 851 lmon->grouping = GroupingBuffer; in _Locale_monetary_create() 945 if (lnum->grouping) free(lnum->grouping); in _Locale_numeric_destroy() [all …]
|
/external/stlport/stlport/stl/ |
D | _numpunct.h | 58 string grouping() const { return do_grouping(); } in grouping() function 87 string grouping() const { return do_grouping(); } in grouping() function
|
D | _monetary.h | 94 string grouping() const { return do_grouping(); } in grouping() function 134 string grouping() const { return do_grouping(); } in grouping() function 175 string grouping() const { return do_grouping(); } in grouping() function 214 string grouping() const { return do_grouping(); } in grouping() function
|
D | _monetary.c | 218 string __grouping = __intl ? __punct_intl.grouping() in __money_do_get() 219 : __punct.grouping(); in __money_do_get() 341 string __grouping = __intl ? __punct_intl.grouping() in __money_do_put() 342 : __punct.grouping(); in __money_do_put()
|
D | _num_get.c | 279 …e, __end, __base, __val, __got, __negative, __np.thousands_sep(), __np.grouping(), __true_type() … in __do_get_integer() 281 …e, __end, __base, __val, __got, __negative, __np.thousands_sep(), __np.grouping(), __false_type()… in __do_get_integer() 283 …ite, __end, __base, __val, __got, __negative, __np.thousands_sep(), __np.grouping(), _IsSigned()); in __do_get_integer() 373 string __grouping = __numpunct.grouping(); in __read_float()
|
D | _num_put.c | 124 __group_pos, __np.grouping()); in __do_put_float() 207 const string& __grouping = __np.grouping(); in __put_integer() 238 const string& __grouping = __np.grouping(); in __put_integer()
|
/external/libxslt/libxslt/ |
D | numbers.c | 131 (xsltUTF8Charcmp((letter), (self)->grouping) == 0) || \ 1032 self_grouping_len = xmlStrlen(self->grouping); in xsltFormatNumberConversion() 1055 (!xmlStrncmp(the_format, self->grouping, self_grouping_len))) { in xsltFormatNumberConversion() 1123 } else if (xsltUTF8Charcmp(the_format, self->grouping) != 0) { in xsltFormatNumberConversion() 1286 if ((self->grouping != NULL) && in xsltFormatNumberConversion() 1287 (self->grouping[0] != 0)) { in xsltFormatNumberConversion() 1289 len = xmlStrlen(self->grouping); in xsltFormatNumberConversion() 1290 pchar = xsltGetUTF8Char(self->grouping, &len); in xsltFormatNumberConversion()
|
D | trio.h | 150 void trio_locale_set_grouping TRIO_PROTO((char *grouping));
|
D | xslt.c | 289 self->grouping = xmlStrdup(BAD_CAST(",")); in xsltNewDecimalFormat() 310 if (self->grouping) in xsltFreeDecimalFormat() 311 xmlFree(self->grouping); in xsltFreeDecimalFormat() 1408 if (format->grouping != NULL) xmlFree(format->grouping); in xsltParseStylesheetDecimalFormat() 1409 format->grouping = prop; in xsltParseStylesheetDecimalFormat()
|
D | xsltInternals.h | 318 xmlChar *grouping; member
|
/external/tremolo/Tremolo/ |
D | res012.c | 68 info->grouping=oggpack_read(opb,24)+1; in res_unpack() 109 int samples_per_partition=info->grouping; in res_inverse()
|
D | codec_internal.h | 141 int grouping; /* group n vectors per partition */ member
|
/external/icu4c/i18n/ |
D | winnmfmt.cpp | 59 static UINT getGrouping(const char *grouping) in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() 64 for (s = grouping; *s != '\0'; s += 1) { in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
|
D | decimfmt.cpp | 1196 const UnicodeString *grouping ; in subformat() local 1198 grouping = &getConstSymbol(DecimalFormatSymbols::kMonetaryGroupingSeparatorSymbol); in subformat() 1200 grouping = &getConstSymbol(DecimalFormatSymbols::kGroupingSeparatorSymbol); in subformat() 1412 appendTo.append(*grouping); in subformat() 1885 … const UnicodeString *grouping = &getConstSymbol(DecimalFormatSymbols::kGroupingSeparatorSymbol); in subparse() local 1891 int32_t groupingLen = grouping->length(); in subparse() 1944 … else if (groupingLen > 0 && !text.compare(position, groupingLen, *grouping) && isGroupingUsed()) in subparse()
|
/external/oprofile/libregex/ |
D | stl.pat.in | 12 # in another pattern (see iosfwd section). The number of grouping regexp is 24 # \digit which is a wall. Indeed if you add more () grouping you need to 28 # pointer is ugly but we can't add any grouping to not overrun 9 max group
|
/external/libxml2/ |
D | trio.h | 150 void trio_locale_set_grouping TRIO_PROTO((char *grouping));
|
D | trio.c | 894 if ((internalLocaleValues->grouping) && in TrioSetLocale() 895 (internalLocaleValues->grouping[0] != NIL)) in TrioSetLocale() 899 internalLocaleValues->grouping); in TrioSetLocale() 5085 TRIO_ARGS1((grouping), 5086 char *grouping) 5096 grouping);
|
/external/bison/doc/ |
D | bison.texinfo | 122 * Semantic Values:: Each token or syntactic grouping can have 406 * Semantic Values:: Each token or syntactic grouping can have 426 parts. For example, in the C language, one kind of grouping is called an 477 @cindex syntactic grouping 478 @cindex grouping, syntactic 480 unit or grouping is named by a @dfn{symbol}. Those which are built by 481 grouping smaller constructs according to grammatical rules are called 485 corresponding to a single nonterminal symbol a @dfn{grouping}. 557 that the entire token sequence reduces to a single grouping whose symbol is 644 Each grouping can also have a semantic value as well as its nonterminal [all …]
|
D | bison.info | 84 * Semantic Values:: Each token or syntactic grouping can have 731 * Semantic Values:: Each token or syntactic grouping can have 751 parts. For example, in the C language, one kind of grouping is called 790 syntactic unit or grouping is named by a "symbol". Those which are 791 built by grouping smaller constructs according to grammatical rules are 795 corresponding to a single nonterminal symbol a "grouping". 851 result is that the entire token sequence reduces to a single grouping 936 Each grouping can also have a semantic value as well as its 1389 whole grouping is `@$', while the locations of the subexpressions are 1397 When building a new location for a given grouping, the default behavior [all …]
|
/external/bluetooth/glib/docs/reference/glib/ |
D | regex-syntax.sgml | 1408 helpful. There are often times when a grouping subpattern is required 1732 <title>Atomic grouping and possessive quantifiers</title> 1755 "Atomic grouping" (a term taken from Jeffrey Friedl’s book) provides 1761 If we use atomic grouping for the previous example, the matcher 1785 Atomic grouping subpatterns are not capturing subpatterns. Simple cases 2499 the use of atomic grouping for matching strings of non-parentheses is important 2509 it yields "no match" quickly. However, if atomic grouping is not used,
|
/external/pcre/ |
D | NEWS | 388 grouping".
|