HomeSort by relevance Sort by last modified time
    Searched defs:ToUpper (Results 1 - 23 of 23) sorted by null

  /external/sonivox/arm-wt-22k/lib_src/
eas_ctype.h 37 EAS_INLINE EAS_I8 ToUpper (EAS_I8 c) { if ((c >= 'a') && (c <= 'z')) return c & ~0x20; else return c; }
  /external/deqp/framework/delibs/decpp/
deStringUtil.cpp 54 struct ToUpper
57 ToUpper (void) : loc(locale::classic()) {}
58 char operator() (char c) { return std::toupper(c, loc); }
72 string toUpper (const string& str)
75 std::transform(str.begin(), str.end(), std::inserter(ret, ret.begin()), ToUpper());
84 return ToUpper()(str[0]) + str.substr(1);
133 char toUpper (char c)
135 return std::toupper(c, std::locale::classic());
164 DE_TEST_ASSERT(toUpper("FooBar") == "FOOBAR");
195 DE_TEST_ASSERT(toUpper('a') == 'A')
    [all...]
  /prebuilts/go/darwin-x86/src/unicode/
letter.go 250 // ToUpper maps the rune to upper case.
251 func ToUpper(r rune) rune {
283 // ToUpper maps the rune to upper case giving priority to the special mapping.
284 func (special SpecialCase) ToUpper(r rune) rune {
287 r1 = ToUpper(r)
363 // and ToUpper(rune) if they are different from rune.
367 return ToUpper(r)
  /prebuilts/go/linux-x86/src/unicode/
letter.go 250 // ToUpper maps the rune to upper case.
251 func ToUpper(r rune) rune {
283 // ToUpper maps the rune to upper case giving priority to the special mapping.
284 func (special SpecialCase) ToUpper(r rune) rune {
287 r1 = ToUpper(r)
363 // and ToUpper(rune) if they are different from rune.
367 return ToUpper(r)
  /prebuilts/go/darwin-x86/src/bytes/
bytes.go 425 // ToUpper returns a copy of the byte slice s with all Unicode letters mapped to their upper case.
426 func ToUpper(s []byte) []byte { return Map(unicode.ToUpper, s) }
437 return Map(func(r rune) rune { return c.ToUpper(r) }, s)
  /prebuilts/go/darwin-x86/src/strings/
strings.go 446 // ToUpper returns a copy of the string s with all Unicode letters mapped to their upper case.
447 func ToUpper(s string) string { return Map(unicode.ToUpper, s) }
458 return Map(func(r rune) rune { return c.ToUpper(r) }, s)
  /prebuilts/go/linux-x86/src/bytes/
bytes.go 425 // ToUpper returns a copy of the byte slice s with all Unicode letters mapped to their upper case.
426 func ToUpper(s []byte) []byte { return Map(unicode.ToUpper, s) }
437 return Map(func(r rune) rune { return c.ToUpper(r) }, s)
  /prebuilts/go/linux-x86/src/strings/
strings.go 446 // ToUpper returns a copy of the string s with all Unicode letters mapped to their upper case.
447 func ToUpper(s string) string { return Map(unicode.ToUpper, s) }
458 return Map(func(r rune) rune { return c.ToUpper(r) }, s)
  /external/protobuf/src/google/protobuf/stubs/
strutil.h 167 // ToUpper()
185 // toupper() changes based on locale. We don't want this!
190 inline string ToUpper(const string& s) {
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/EfiFileLib/
EfiFileLib.c 457 #define ToUpper(a) ((((a) >= 'a') && ((a) <= 'z')) ? ((a) - 'a' + 'A') : (a))
486 if (ToUpper(*StringPtr) != ToUpper(*GuidPtr)) {
    [all...]
  /frameworks/native/libs/binder/tests/
binderSafeInterfaceTest.cpp 226 ToUpper,
255 virtual status_t toUpper(const String8& str, String8* upperStr) const = 0;
327 status_t toUpper(const String8& str, String8* upperStr) const override {
329 return callRemote<decltype(&ISafeInterfaceTest::toUpper)>(Tag::ToUpper, str, upperStr);
447 status_t toUpper(const String8& str, String8* upperStr) const override {
450 upperStr->toUpper();
536 case ISafeInterfaceTest::Tag::ToUpper: {
537 return callLocal(data, reply, &ISafeInterfaceTest::toUpper);
739 status_t result = mSafeInterfaceTest->toUpper(str, &upperStr)
    [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/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-port.h     [all...]
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-port.h     [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/fmtlib/test/gtest/
gtest.h     [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
gtest.h     [all...]

Completed in 777 milliseconds