HomeSort by relevance Sort by last modified time
    Searched refs:grouping (Results 1 - 25 of 175) sorted by null

1 2 3 4 5 6 7

  /external/libcxx/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/
grouping.pass.cpp 16 // string grouping() const;
58 // Monetary grouping strings may be terminated with 0 or CHAR_MAX, defining
59 // how the grouping is repeated.
63 assert(f.grouping() == s || f.grouping() == "");
67 assert(f.grouping() == s || f.grouping() == "");
71 assert(f.grouping() == s || f.grouping() == "");
75 assert(f.grouping() == s || f.grouping() == "")
    [all...]
Android.mk 27 test_name := localization/locale.categories/category.monetary/locale.moneypunct.byname/grouping
28 test_src := grouping.pass.cpp
  /external/libcxx/test/localization/locale.categories/facet.numpunct/locale.numpunct.byname/
grouping.pass.cpp 14 // string grouping() const;
28 assert(np.grouping() == "");
33 assert(np.grouping() == "");
41 assert(np.grouping() == "\3\3");
46 assert(np.grouping() == "\3\3");
54 assert(np.grouping() == "\x7F");
59 assert(np.grouping() == "\x7F");
Android.mk 19 test_name := localization/locale.categories/facet.numpunct/locale.numpunct.byname/grouping
20 test_src := grouping.pass.cpp
  /external/libcxx/test/localization/locale.categories/facet.numpunct/locale.numpunct/facet.numpunct.members/
grouping.pass.cpp 14 // string grouping() const;
25 assert(np.grouping() == std::string());
30 assert(np.grouping() == std::string());
Android.mk 19 test_name := localization/locale.categories/facet.numpunct/locale.numpunct/facet.numpunct.members/grouping
20 test_src := grouping.pass.cpp
  /external/libcxx/test/localization/locale.categories/category.monetary/locale.moneypunct/locale.moneypunct.members/
grouping.pass.cpp 14 // string grouping() const;
61 assert(f.grouping() == std::string());
65 assert(f.grouping() == std::string());
69 assert(f.grouping() == std::string());
73 assert(f.grouping() == std::string());
Android.mk 27 test_name := localization/locale.categories/category.monetary/locale.moneypunct/locale.moneypunct.members/grouping
28 test_src := grouping.pass.cpp
  /external/chromium_org/tools/grit/grit/node/
empty.py 19 '''Base class for all the grouping elements (<structures>, <includes>,
  /external/bison/lib/
strtol.c 224 /* This file defines a function to check for correct grouping. */
225 # include "grouping.h"
256 /* The numeric grouping specification of the current locale,
258 const char *grouping; local
262 grouping = _NL_CURRENT (LC_NUMERIC, GROUPING);
263 if (*grouping <= 0 || *grouping == CHAR_MAX)
264 grouping = NULL;
274 grouping = NULL
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Includes/libc/
locale.pxd 12 char *grouping
  /bionic/libc/include/
locale.h 71 char* grouping; member in struct:lconv
  /development/ndk/platforms/android-L/include/
locale.h 71 char* grouping; member in struct:lconv
  /external/libvorbis/lib/
backends.h 110 int grouping; /* group n vectors per partition */ member in struct:vorbis_info_residue0
vorbisenc.c 41 int grouping; member in struct:__anon4307
469 r->grouping=res->grouping;
569 r->end=(int)((freq/nyq*blocksize*ch)/r->grouping+.9)* /* round up only if we're well past */
570 r->grouping;
571 /* the blocksize and grouping may disagree at the end */
572 if(r->end>blocksize*ch)r->end=blocksize*ch/r->grouping*r->grouping;
576 r->end=(int)((freq/nyq*blocksize)/r->grouping+.9)* /* round up only if we're well past */
577 r->grouping;
    [all...]
res0.c 139 acc?(float)acc/(look->resvals[j]*info->grouping):0);
180 oggpack_write(opb,info->grouping-1,24); /* residue vectors to group and
211 info->grouping=oggpack_read(opb,24)+1;
420 int samples_per_partition=info->grouping;
487 int samples_per_partition=info->grouping;
551 int samples_per_partition=info->grouping;
666 int samples_per_partition=info->grouping;
811 int samples_per_partition=info->grouping;
  /external/chromium_org/chrome/browser/web_resource/
notification_promo.cc 250 // Grouping.
251 const base::DictionaryValue* grouping = NULL; local
252 if (promo->GetDictionary("grouping", &grouping)) {
253 grouping->GetInteger("buckets", &num_groups_);
254 grouping->GetInteger("segment", &initial_segment_);
255 grouping->GetInteger("increment", &increment_);
256 grouping->GetInteger("increment_frequency", &time_slice_);
257 grouping->GetInteger("increment_max", &max_group_);
  /bionic/libc/bionic/
locale.cpp 70 g_locale.grouping = not_available;
  /external/chromium_org/third_party/libxslt/libxslt/
numbers.c 131 (xsltUTF8Charcmp((letter), (self)->grouping) == 0) || \
932 * , placeholder for grouping separator.
1032 self_grouping_len = xmlStrlen(self->grouping);
1055 (!xmlStrncmp(the_format, self->grouping, self_grouping_len))) {
1123 } else if (xsltUTF8Charcmp(the_format, self->grouping) != 0) {
    [all...]
trio.h 150 void trio_locale_set_grouping TRIO_PROTO((char *grouping));
  /bionic/tests/
locale_test.cpp 26 EXPECT_STREQ("", localeconv()->grouping);
  /external/chromium_org/v8/test/webkit/
toString-prefix-postfix-preserve-parens.js 25 "This test checks that toString() round-trip on a function that has prefix, postfix and typeof operators applied to group expression will not remove the grouping. Also checks that evaluation of such a expression produces run-time exception"
113 // check that grouping operator is still there (this test reveals the bug
  /external/chromium_org/third_party/icu/source/i18n/
winnmfmt.cpp 54 * Turns a string of the form "3;2;0" into the grouping UINT
59 static UINT getGrouping(const char *grouping)
64 for (s = grouping; *s != '\0'; s += 1) {
87 fmt->Grouping = getGrouping(buf);
114 fmt->Grouping = getGrouping(buf);
306 formatInfo.currency.Grouping = 0;
328 formatInfo.number.Grouping = 0;
  /external/icu/icu4c/source/i18n/
winnmfmt.cpp 54 * Turns a string of the form "3;2;0" into the grouping UINT
59 static UINT getGrouping(const char *grouping)
64 for (s = grouping; *s != '\0'; s += 1) {
87 fmt->Grouping = getGrouping(buf);
114 fmt->Grouping = getGrouping(buf);
306 formatInfo.currency.Grouping = 0;
328 formatInfo.number.Grouping = 0;
  /external/chromium_org/third_party/libxml/src/
trio.h 150 void trio_locale_set_grouping TRIO_PROTO((char *grouping));

Completed in 842 milliseconds

1 2 3 4 5 6 7