/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.traits/ |
D | lookup_classname.pass.cpp | 34 test("d", std::ctype_base::digit); in main() 35 test("D", std::ctype_base::digit); in main() 36 test("d", std::ctype_base::digit, true); in main() 37 test("D", std::ctype_base::digit, true); in main() 73 test("digit", std::ctype_base::digit); in main() 74 test("Digit", std::ctype_base::digit); in main() 75 test("digit", std::ctype_base::digit, true); in main() 76 test("Digit", std::ctype_base::digit, true); in main() 78 test("digit", std::ctype_base::digit); in main() 79 test("DIGIT", std::ctype_base::digit); in main() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype.byname/ |
D | is_many.pass.cpp | 44 assert(!(m[0] & F::digit)); in main() 58 assert(!(m[1] & F::digit)); in main() 72 assert(!(m[2] & F::digit)); in main() 86 assert(!(m[3] & F::digit)); in main() 100 assert(!(m[4] & F::digit)); in main() 114 assert(!(m[5] & F::digit)); in main() 128 assert( (m[6] & F::digit)); in main() 153 assert(!(m[0] & F::digit)); in main() 167 assert(!(m[1] & F::digit)); in main() 181 assert(!(m[2] & F::digit)); in main() [all …]
|
D | is_1.pass.cpp | 48 assert(f.is(F::digit, L'1')); in main() 49 assert(!f.is(F::digit, L'a')); in main() 91 assert(f.is(F::digit, L'1')); in main() 92 assert(!f.is(F::digit, L'a')); in main()
|
D | scan_not.pass.cpp | 40 assert(f.scan_not(F::digit, in.data(), in.data() + in.size()) - in.data() == 0); in main() 61 assert(f.scan_not(F::digit, in.data(), in.data() + in.size()) - in.data() == 0); in main()
|
D | scan_is.pass.cpp | 40 assert(f.scan_is(F::digit, in.data(), in.data() + in.size()) - in.data() == 6); in main() 61 assert(f.scan_is(F::digit, in.data(), in.data() + in.size()) - in.data() == 6); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/ |
D | ctype_base.pass.cpp | 50 assert(std::ctype_base::digit); in main() 60 & std::ctype_base::digit in main() 63 assert(std::ctype_base::alnum == (std::ctype_base::alpha | std::ctype_base::digit)); in main() 72 test(std::ctype_base::digit); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/ |
D | is_many.pass.cpp | 41 assert(!(m[0] & F::digit)); in main() 55 assert(!(m[1] & F::digit)); in main() 69 assert(!(m[2] & F::digit)); in main() 83 assert(!(m[3] & F::digit)); in main() 97 assert(!(m[4] & F::digit)); in main() 111 assert( (m[5] & F::digit)); in main()
|
D | is_1.pass.cpp | 44 assert(f.is(F::digit, '1')); in main() 45 assert(!f.is(F::digit, 'a')); in main()
|
D | scan_not.pass.cpp | 37 assert(f.scan_not(F::digit, in.data(), in.data() + in.size()) - in.data() == 0); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/ |
D | is_many.pass.cpp | 41 assert(!(m[0] & F::digit)); in main() 55 assert(!(m[1] & F::digit)); in main() 69 assert(!(m[2] & F::digit)); in main() 83 assert(!(m[3] & F::digit)); in main() 97 assert(!(m[4] & F::digit)); in main() 111 assert( (m[5] & F::digit)); in main()
|
D | is_1.pass.cpp | 44 assert(f.is(F::digit, L'1')); in main() 45 assert(!f.is(F::digit, L'a')); in main()
|
/ndk/tests/device/test-stlport/unit/ |
D | ctype_facets_test.cpp | 33 CPPUNIT_ASSERT( ct.is(ctype_base::digit, '0') ); in _ctype_facet() 50 CPPUNIT_ASSERT( (res[0] & ctype_base::digit) != 0 ); in _ctype_facet() 66 CPPUNIT_ASSERT( (res[3] & ctype_base::digit) == 0 ); in _ctype_facet() 70 CPPUNIT_ASSERT( (res[4] & ctype_base::digit) == 0 ); in _ctype_facet() 177 CPPUNIT_CHECK( wct.is(ctype_base::digit, L'0') ); in _ctype_facet_w() 194 CPPUNIT_CHECK( (res[0] & ctype_base::digit) != 0 ); in _ctype_facet_w() 210 CPPUNIT_CHECK( (res[3] & ctype_base::digit) == 0 ); in _ctype_facet_w() 214 CPPUNIT_CHECK( (res[4] & ctype_base::digit) == 0 ); in _ctype_facet_w() 454 CPPUNIT_CHECK(cfacet_byname.is(ctype_base::digit, c) == cfacet.is(ctype_base::digit, c)); in ctype_by_name()
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | ctype_facets_test.cpp | 33 CPPUNIT_ASSERT( ct.is(ctype_base::digit, '0') ); in _ctype_facet() 50 CPPUNIT_ASSERT( (res[0] & ctype_base::digit) != 0 ); in _ctype_facet() 66 CPPUNIT_ASSERT( (res[3] & ctype_base::digit) == 0 ); in _ctype_facet() 70 CPPUNIT_ASSERT( (res[4] & ctype_base::digit) == 0 ); in _ctype_facet() 177 CPPUNIT_CHECK( wct.is(ctype_base::digit, L'0') ); in _ctype_facet_w() 194 CPPUNIT_CHECK( (res[0] & ctype_base::digit) != 0 ); in _ctype_facet_w() 210 CPPUNIT_CHECK( (res[3] & ctype_base::digit) == 0 ); in _ctype_facet_w() 214 CPPUNIT_CHECK( (res[4] & ctype_base::digit) == 0 ); in _ctype_facet_w() 454 CPPUNIT_CHECK(cfacet_byname.is(ctype_base::digit, c) == cfacet.is(ctype_base::digit, c)); in ctype_by_name()
|
/ndk/sources/cxx-stl/stlport/src/ |
D | ctype.cpp | 94 ctype_base::mask(digit | print | xdigit) /* 0 */, in classic_table() 95 ctype_base::mask(digit | print | xdigit) /* 1 */, in classic_table() 96 ctype_base::mask(digit | print | xdigit) /* 2 */, in classic_table() 97 ctype_base::mask(digit | print | xdigit) /* 3 */, in classic_table() 98 ctype_base::mask(digit | print | xdigit) /* 4 */, in classic_table() 99 ctype_base::mask(digit | print | xdigit) /* 5 */, in classic_table() 100 ctype_base::mask(digit | print | xdigit) /* 6 */, in classic_table() 101 ctype_base::mask(digit | print | xdigit) /* 7 */, in classic_table() 102 ctype_base::mask(digit | print | xdigit) /* 8 */, in classic_table() 103 ctype_base::mask(digit | print | xdigit) /* 9 */, in classic_table()
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
D | classes.sed | 2 s/^\([/[:lower:]A-Z0-9]*_cv_[[:lower:][:upper:]/[:digit:]]*\)=\(.*\)/: \${\1='\2'}/p
|
D | binary.sed | 165 # Left shift, convert to analog and add a binary digit for each analog digit 175 # Right shift, convert to analog and remove a binary digit for each analog digit
|
D | PCRE.tests | 945 /[[:digit:]][[:digit:]]\/[[:digit:]][[:digit:]]\/[[:digit:]][[:digit:]][[:digit:]][[:digit:]]/ 1059 /^[[:digit:]][[:digit:]][[:digit:]][[:digit:]][[:digit:]][[:digit:]][[:digit:]][[:digit:]][[:digit:…
|
D | binary2.sed | 199 # Left shift, convert to analog and add a binary digit for each analog digit 210 # Right shift, convert to analog and remove a binary digit for each analog digit
|
D | binary3.sed | 178 # Left shift, convert to analog and add a binary digit for each analog digit 188 # Right shift, convert to analog and remove a binary digit for each analog digit
|
/ndk/sources/cxx-stl/llvm-libc++/patches.android/ |
D | 0002-Fix-GLibc-specific-check.patch | 2 From: David 'Digit' Turner <digit@google.com>
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
D | regex.cpp | 223 {"d", ctype_base::digit}, 224 {"digit", ctype_base::digit},
|
/ndk/sources/host-tools/make-3.81/ |
D | config.log | 13 hostname = digit-glaptop 342 ACLOCAL='${SHELL} /home/digit/sources/make-3.81/config/missing --run aclocal-1.9' 347 AMTAR='${SHELL} /home/digit/sources/make-3.81/config/missing --run tar' 350 AUTOCONF='${SHELL} /home/digit/sources/make-3.81/config/missing --run autoconf' 351 AUTOHEADER='${SHELL} /home/digit/sources/make-3.81/config/missing --run autoheader' 352 AUTOMAKE='${SHELL} /home/digit/sources/make-3.81/config/missing --run automake-1.9' 385 MAKEINFO='${SHELL} /home/digit/sources/make-3.81/config/missing --run makeinfo' 441 install_sh='/home/digit/sources/make-3.81/config/install-sh'
|
/ndk/sources/third_party/googletest/patches.ndk/ |
D | 0002-Work-around-broken-abort-on-Android-MIPS.patch | 2 From: David 'Digit' Turner <digit@google.com>
|
D | 0001-Allow-clone-usage-on-MIPS.patch | 2 From: David 'Digit' Turner <digit@google.com>
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _monetary.c | 66 if (__first == __last || !_c_type.is(ctype_base::digit, *__first)) in __get_monetary_value() 74 if (_c_type.is(ctype_base::digit, *__first)) { in __get_monetary_value() 110 while (__first != __last && _c_type.is(ctype_base::digit, *__first)) { in __get_monetary_value() 387 while (__cp != __digits_last && __c_type.is(ctype_base::digit, *__cp)) in __money_do_put()
|