HomeSort by relevance Sort by last modified time
    Searched full:toupper (Results 1 - 25 of 250) sorted by null

1 2 3 4 5 6 7 8 910

  /external/icu4c/samples/case/
case.cpp 54 string.toUpper(); /* string = "THIS IS A TEST" */
71 string.toUpper(Locale("tr", "TR")); /* Turkish upper case map string =
73 u_fprintf(out, "\nlower.toUpper: ");
  /external/clearsilver/util/
wildmat.c 138 if (toupper(*text) != toupper(*p))
162 if (toupper(*++p) == toupper(*text))
164 for (last = toupper(*p); *++p && *p != ']'; last = toupper(*p))
167 ? toupper(*text) <= toupper(*++p) && toupper(*text) >= last : toupper(*text) == toupper(*p)
    [all...]
  /external/chromium/third_party/icu/source/i18n/
toupptrn.h 23 * A transliterator that performs locale-sensitive toUpper()
  /external/icu4c/i18n/
toupptrn.h 23 * A transliterator that performs locale-sensitive toUpper()
  /external/chromium/third_party/icu/source/test/intltest/
strcase.cpp 93 test4.toUpper(Locale(""));
96 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
99 test4.toUpper(Locale("tr", "TR"));
102 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
106 test3.toUpper(Locale("de", "DE"));
109 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test3 + "\".");
120 test4.toUpper();
123 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
162 s.setCharAt(0, beforeUpper[0]).toUpper(Locale(""));
166 errln("error in toUpper(root locale)=\"" + s + "\" expected \"" + UnicodeString(FALSE, upperRoot, (int32_t)(sizeof(upperRo (…)
    [all...]
  /external/icu4c/test/intltest/
strcase.cpp 95 test4.toUpper(Locale(""));
98 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
101 test4.toUpper(Locale("tr", "TR"));
104 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
108 test3.toUpper(Locale("de", "DE"));
111 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test3 + "\".");
122 test4.toUpper();
125 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
164 s.setCharAt(0, beforeUpper[0]).toUpper(Locale(""));
168 errln("error in toUpper(root locale)=\"" + s + "\" expected \"" + UnicodeString(FALSE, upperRoot, (int32_t)(sizeof(upperRo (…)
    [all...]
  /external/bison/lib/
strtol.c 207 # define TOUPPER(Ch) __towupper_l ((Ch), loc)
211 # define TOUPPER(Ch) towupper (Ch)
225 # define TOUPPER(Ch) __toupper_l ((Ch), loc)
229 # define TOUPPER(Ch) (IN_CTYPE_DOMAIN (Ch) ? toupper (Ch) : (Ch))
326 if ((base == 0 || base == 16) && TOUPPER (s[1]) == L_('X'))
348 && (!ISALPHA (c) || (int) (TOUPPER (c) - L_('A') + 10) >= base))
371 c = TOUPPER (c) - L_('A') + 10;
425 if (save - nptr >= 2 && TOUPPER (save[-1]) == L_('X')
  /external/stlport/stlport/
locale 77 #undef toupper
127 inline _CharT toupper(_CharT c, const locale& loc)
128 { return (use_facet<ctype<_CharT> >(loc)).toupper(c); }
  /external/stlport/test/unit/
ctype_facets_test.cpp 113 //toupper
115 CPPUNIT_ASSERT( ct.toupper('a') == 'A' );
116 CPPUNIT_ASSERT( ct.toupper('A') == 'A' );
117 CPPUNIT_ASSERT( ct.toupper('1') == '1' );
120 //toupper range
124 ct.toupper(range, range + sizeof(range));
257 //toupper
259 CPPUNIT_CHECK( wct.toupper(L'a') == L'A' );
260 CPPUNIT_CHECK( wct.toupper(L'A') == L'A' );
261 CPPUNIT_CHECK( wct.toupper(L'1') == L'1' )
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/
locale 77 #undef toupper
127 inline _CharT toupper(_CharT c, const locale& loc)
128 { return (use_facet<ctype<_CharT> >(loc)).toupper(c); }
  /ndk/tests/device/test-gnustl-full/unit/
ctype_facets_test.cpp 113 //toupper
115 CPPUNIT_ASSERT( ct.toupper('a') == 'A' );
116 CPPUNIT_ASSERT( ct.toupper('A') == 'A' );
117 CPPUNIT_ASSERT( ct.toupper('1') == '1' );
120 //toupper range
124 ct.toupper(range, range + sizeof(range));
257 //toupper
259 CPPUNIT_CHECK( wct.toupper(L'a') == L'A' );
260 CPPUNIT_CHECK( wct.toupper(L'A') == L'A' );
261 CPPUNIT_CHECK( wct.toupper(L'1') == L'1' )
    [all...]
  /ndk/tests/device/test-stlport/unit/
ctype_facets_test.cpp 113 //toupper
115 CPPUNIT_ASSERT( ct.toupper('a') == 'A' );
116 CPPUNIT_ASSERT( ct.toupper('A') == 'A' );
117 CPPUNIT_ASSERT( ct.toupper('1') == '1' );
120 //toupper range
124 ct.toupper(range, range + sizeof(range));
257 //toupper
259 CPPUNIT_CHECK( wct.toupper(L'a') == L'A' );
260 CPPUNIT_CHECK( wct.toupper(L'A') == L'A' );
261 CPPUNIT_CHECK( wct.toupper(L'1') == L'1' )
    [all...]
  /external/webkit/JavaScriptCore/wtf/
DisallowCType.h 55 #undef toupper macro
72 #define toupper toupper_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h macro
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/
cctype 62 #undef toupper
78 using ::toupper;
  /system/extras/tests/bionic/libstdc++/
test_cctype.cpp 77 #ifdef toupper
90 using std::toupper;
  /bionic/libc/kernel/common/linux/
ctype.h 42 #define toupper(c) __toupper(c) macro
  /development/ndk/platforms/android-3/include/linux/
ctype.h 42 #define toupper(c) __toupper(c) macro
  /external/chromium/third_party/icu/source/test/perf/charperf/
CharPerf.pl 49 "toUpper", ["$p TestStdLibToUpper" , "$p TestToUpper" ],
CharPerf_r.pl 53 "toUpper", ["$p1 TestToUpper" , "$p2 TestToUpper" ],
  /external/icu4c/test/perf/charperf/
CharPerf.pl 49 "toUpper", ["$p TestStdLibToUpper" , "$p TestToUpper" ],
CharPerf_r.pl 53 "toUpper", ["$p1 TestToUpper" , "$p2 TestToUpper" ],
  /external/stlport/stlport/stl/
_cctype.h 44 using _STLP_VENDOR_CSTD::toupper;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 44 using _STLP_VENDOR_CSTD::toupper;
  /packages/apps/Email/tests/src/com/android/email/mail/
FlagTests.java 30 * Confirm that all flags are upper-case. This removes the need for wasteful toUpper
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
ctype.h 42 #define toupper(c) __toupper(c) macro

Completed in 710 milliseconds

1 2 3 4 5 6 7 8 910