HomeSort by relevance Sort by last modified time
    Searched defs:ToUpper (Results 1 - 19 of 19) 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...]
  /external/protobuf/src/google/protobuf/stubs/
strutil.h 129 // ToUpper()
147 // toupper() changes based on locale. We don't want this!
152 inline string ToUpper(const string& s) {
  /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)
352 // and ToUpper(rune) if they are different from rune.
356 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)
352 // and ToUpper(rune) if they are different from rune.
356 return ToUpper(r)
  /prebuilts/go/darwin-x86/src/bytes/
bytes.go 401 // ToUpper returns a copy of the byte slice s with all Unicode letters mapped to their upper case.
402 func ToUpper(s []byte) []byte { return Map(unicode.ToUpper, s) }
413 return Map(func(r rune) rune { return _case.ToUpper(r) }, s)
  /prebuilts/go/darwin-x86/src/strings/
strings.go 473 // ToUpper returns a copy of the string s with all Unicode letters mapped to their upper case.
474 func ToUpper(s string) string { return Map(unicode.ToUpper, s) }
485 return Map(func(r rune) rune { return _case.ToUpper(r) }, s)
  /prebuilts/go/linux-x86/src/bytes/
bytes.go 401 // ToUpper returns a copy of the byte slice s with all Unicode letters mapped to their upper case.
402 func ToUpper(s []byte) []byte { return Map(unicode.ToUpper, s) }
413 return Map(func(r rune) rune { return _case.ToUpper(r) }, s)
  /prebuilts/go/linux-x86/src/strings/
strings.go 473 // ToUpper returns a copy of the string s with all Unicode letters mapped to their upper case.
474 func ToUpper(s string) string { return Map(unicode.ToUpper, s) }
485 return Map(func(r rune) rune { return _case.ToUpper(r) }, s)
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/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/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-port.h     [all...]
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest.h     [all...]
  /external/opencv3/modules/ts/include/opencv2/ts/
ts_gtest.h     [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
gtest.h     [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/include/gtest/
gtest.h     [all...]

Completed in 1051 milliseconds