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

1 2 3 4 5 6 7 8 9

  /dalvik/libcore/luni/src/main/native/
java_lang_Character.cpp 30 static jint toLower(JNIEnv* env, jclass clazz, jint val)
32 return Unicode::toLower(val);
65 { "nativeToLower", "(I)I", (void*) toLower },
  /external/icu4c/samples/case/
case.cpp 57 string.toLower(); /* string = "this is a test" */
65 string.toLower(Locale("tr", "TR")); /* Turkish lower case map string =
67 u_fprintf(out, "\nupper.toLower: ");
  /frameworks/base/core/java/android/net/http/
CharArrayBuffers.java 52 a = toLower(a);
53 b = toLower(b);
83 private static char toLower(char c) {
  /external/icu4c/i18n/
tolowtrn.h 23 * A transliterator that performs locale-sensitive toLower()
titletrn.cpp 86 // toLower.
90 // in which case we want to start in toLower mode. If the
107 // Convert things after a cased character toLower; things
  /external/srec/seti/setiUtils/src/
platform_utils.c 102 for (; *str1 != '\0' && *str2 != '\0' && tolower(*str1) == tolower(*str2);
110 return tolower(*str1) < tolower(*str2)? -1 : 1;
  /external/icu4c/test/intltest/
strcase.cpp 77 test4.toLower(Locale(""));
80 errln("1. toLower failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
83 test4.toLower(Locale("tr", "TR"));
86 errln("2. toLower failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
113 test4.toLower(Locale("el", "GR"));
116 errln("toLower failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
144 s.toLower("");
148 errln("error in toLower(root locale)=\"" + s + "\" expected \"" + UnicodeString(FALSE, lowerRoot, (int32_t)(sizeof(lowerRoot)/U_SIZEOF_UCHAR)) + "\"");
153 s.setCharAt(0, beforeLower[0]).toLower(Locale("tr"));
157 errln("error in toLower(turkish locale)=\"" + s + "\" expected \"" + UnicodeString(FALSE, lowerTurkish, (int32_t)(sizeof(l (…)
    [all...]
  /hardware/ti/wlan/wl1271/platforms/os/linux/src/
osRgstry_parser.c 83 #ifndef tolower
84 #define tolower(c) ( (c) | 0x20) macro
102 for( i=0; &buf[i] <= end_buf && buf[i] && str[i] && (tolower(buf[i]) == tolower(str[i])); i++ ) ;
104 if ((!str[i]) && (!((tolower(*(buf-1))>='a') && (tolower(*(buf-1))<='z'))))
  /system/wlan/ti/wilink_6_1/platforms/os/linux/src/
osRgstry_parser.c 83 #ifndef tolower
84 #define tolower(c) ( (c) | 0x20) macro
102 for( i=0; &buf[i] <= end_buf && buf[i] && str[i] && (tolower(buf[i]) == tolower(str[i])); i++ ) ;
104 if ((!str[i]) && (!((tolower(*(buf-1))>='a') && (tolower(*(buf-1))<='z'))))
  /bionic/libc/unistd/
fnmatch.c 144 (tolower((unsigned char)c) ==
145 tolower((unsigned char)*string))))
170 test = (char)tolower((unsigned char)test);
187 c = (char)tolower((unsigned char)c);
196 c2 = (char)tolower((unsigned char)c2);
  /external/stlport/stlport/
locale 78 #undef tolower
131 inline _CharT tolower(_CharT c, const locale& loc)
132 { return (use_facet<ctype<_CharT> >(loc)).tolower(c); }
  /external/stlport/test/unit/
ctype_facets_test.cpp 128 //tolower
130 CPPUNIT_ASSERT( ct.tolower('A') == 'a' );
131 CPPUNIT_ASSERT( ct.tolower('a') == 'a' );
132 CPPUNIT_ASSERT( ct.tolower('1') == '1' );
135 //tolower range
139 ct.tolower(range, range + sizeof(range));
272 //tolower
274 CPPUNIT_CHECK( wct.tolower(L'A') == L'a' );
275 CPPUNIT_CHECK( wct.tolower(L'a') == L'a' );
276 CPPUNIT_CHECK( wct.tolower(L'1') == L'1' )
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/pform/linux/src/
osRgstry_parser.c 79 #ifndef tolower
80 #define tolower(c) ( (c) | 0x20) macro
98 for( i=0; &buf[i] <= end_buf && buf[i] && str[i] && (tolower(buf[i]) == tolower(str[i])); i++ ) ;
100 if ((!str[i]) && (!((tolower(*(buf-1))>='a') && (tolower(*(buf-1))<='z'))))
  /bionic/libc/string/
strcasestr.c 49 c = (char)tolower((unsigned char)c);
55 } while ((char)tolower((unsigned char)sc) != c);
  /external/webkit/JavaScriptCore/wtf/
DisallowCType.h 54 #undef tolower macro
71 #define tolower tolower_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h macro
  /system/extras/tests/bionic/libstdc++/
test_cctype.cpp 74 #ifdef tolower
85 using std::tolower;
  /bionic/libc/kernel/common/linux/
ctype.h 41 #define tolower(c) __tolower(c) macro
  /external/icu4c/test/perf/charperf/
CharPerf.pl 48 "toLower", ["$p TestStdLibToLower" , "$p TestToLower" ],
CharPerf_r.pl 52 "toLower", ["$p1 TestToLower" , "$p2 TestToLower" ],
  /external/stlport/stlport/stl/
_cctype.h 43 using _STLP_VENDOR_CSTD::tolower;
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
ctype.h 41 #define tolower(c) __tolower(c) macro
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
ctype.h 41 #define tolower(c) __tolower(c) macro
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/
ctype.h 41 #define tolower(c) __tolower(c) macro
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
ctype.h 41 #define tolower(c) __tolower(c) macro
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/
ctype.h 41 #define tolower(c) __tolower(c) macro

Completed in 320 milliseconds

1 2 3 4 5 6 7 8 9