HomeSort by relevance Sort by last modified time
    Searched defs:ToLower (Results 1 - 25 of 28) sorted by null

1 2

  /external/sonivox/arm-wt-22k/lib_src/
eas_ctype.h 38 EAS_INLINE EAS_I8 ToLower (EAS_I8 c) { if ((c >= 'A') && (c <= 'Z')) return c |= 0x20; else return c; }
  /external/deqp/framework/delibs/decpp/
deStringUtil.cpp 47 struct ToLower
50 ToLower (void) : loc(locale::classic()) {}
51 char operator() (char c) { return std::tolower(c, loc); }
64 string toLower (const string& str)
67 std::transform(str.begin(), str.end(), std::inserter(ret, ret.begin()), ToLower());
138 char toLower (char c)
140 return std::tolower(c, std::locale::classic());
163 DE_TEST_ASSERT(toLower("FooBar") == "foobar");
197 DE_TEST_ASSERT(toLower('a') == 'a');
198 DE_TEST_ASSERT(toLower('A') == 'a')
    [all...]
  /external/libtextclassifier/util/utf8/
unilib-icu.cc 61 char32 UniLib::ToLower(char32 codepoint) const { return u_tolower(codepoint); }
  /prebuilts/go/darwin-x86/src/unicode/
letter.go 261 // ToLower maps the rune to lower case.
262 func ToLower(r rune) rune {
301 // ToLower maps the rune to lower case giving priority to the special mapping.
302 func (special SpecialCase) ToLower(r rune) rune {
305 r1 = ToLower(r)
362 // equivalence class containing rune and ToLower(rune)
364 if l := ToLower(r); l != r {
  /prebuilts/go/linux-x86/src/unicode/
letter.go 261 // ToLower maps the rune to lower case.
262 func ToLower(r rune) rune {
301 // ToLower maps the rune to lower case giving priority to the special mapping.
302 func (special SpecialCase) ToLower(r rune) rune {
305 r1 = ToLower(r)
362 // equivalence class containing rune and ToLower(rune)
364 if l := ToLower(r); l != r {
  /prebuilts/go/darwin-x86/src/bytes/
bytes.go 478 // ToLower treats s as UTF-8-encoded bytes and returns a copy with all the Unicode letters mapped to their lower case.
479 func ToLower(s []byte) []byte { return Map(unicode.ToLower, s) }
493 return Map(func(r rune) rune { return c.ToLower(r) }, s)
  /prebuilts/go/darwin-x86/src/strings/
strings.go 581 // ToLower returns a copy of the string s with all Unicode letters mapped to their lower case.
582 func ToLower(s string) string {
607 return Map(unicode.ToLower, s)
622 return Map(func(r rune) rune { return c.ToLower(r) }, s)
  /prebuilts/go/linux-x86/src/bytes/
bytes.go 478 // ToLower treats s as UTF-8-encoded bytes and returns a copy with all the Unicode letters mapped to their lower case.
479 func ToLower(s []byte) []byte { return Map(unicode.ToLower, s) }
493 return Map(func(r rune) rune { return c.ToLower(r) }, s)
  /prebuilts/go/linux-x86/src/strings/
strings.go 581 // ToLower returns a copy of the string s with all Unicode letters mapped to their lower case.
582 func ToLower(s string) string {
607 return Map(unicode.ToLower, s)
622 return Map(func(r rune) rune { return c.ToLower(r) }, s)
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/UefiEfiIfrSupportLib/
UefiIfrForm.c 1100 ToLower (
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Application/Shell/
ShellProtocol.c     [all...]
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.h 382 inline static int ToLower( int v, TiXmlEncoding encoding )
386 if ( v < 128 ) return tolower( v );
391 return tolower( v );
    [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /external/tinyxml/
tinyxml.h 341 inline static int ToLower( int v, TiXmlEncoding encoding )
345 if ( v < 128 ) return tolower( v );
350 return tolower( v );
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-port.h     [all...]
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/include/gtest/internal/
gtest-port.h     [all...]
  /system/core/adb/
sysdeps_win32.cpp     [all...]
  /external/googletest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-port.h     [all...]
  /external/v8/testing/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/sqlite/dist/orig/
shell.c 182 #define ToLower(X) (char)tolower((unsigned char)X)
    [all...]

Completed in 889 milliseconds

1 2