HomeSort by relevance Sort by last modified time
    Searched refs:ToUpper (Results 1 - 25 of 67) sorted by null

1 2 3

  /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_test.go 299 r := ToUpper(c.in)
301 t.Errorf("ToUpper(U+%04X) = U+%04X want U+%04X", c.in, r, c.out)
362 if To(UpperCase, i) != ToUpper(i) {
363 t.Errorf("ToUpper(U+%04X) disagrees with To(Upper)", i)
382 if TurkishCase.ToUpper(u) != u {
383 t.Errorf("upper(U+%04X) is U+%04X not U+%04X", u, TurkishCase.ToUpper(u), u)
385 if TurkishCase.ToUpper(l) != u {
386 t.Errorf("upper(U+%04X) is U+%04X not U+%04X", l, TurkishCase.ToUpper(l), u)
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_test.go 299 r := ToUpper(c.in)
301 t.Errorf("ToUpper(U+%04X) = U+%04X want U+%04X", c.in, r, c.out)
362 if To(UpperCase, i) != ToUpper(i) {
363 t.Errorf("ToUpper(U+%04X) disagrees with To(Upper)", i)
382 if TurkishCase.ToUpper(u) != u {
383 t.Errorf("upper(U+%04X) is U+%04X not U+%04X", u, TurkishCase.ToUpper(u), u)
385 if TurkishCase.ToUpper(l) != u {
386 t.Errorf("upper(U+%04X) is U+%04X not U+%04X", l, TurkishCase.ToUpper(l), u)
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)
  /build/blueprint/proptools/
proptools.go 35 fieldName := string(unicode.ToUpper(r))
  /external/protobuf/src/google/protobuf/compiler/java/
java_message.cc 427 ToUpper(field->name()),
434 ToUpper(vars["oneof_name"]));
450 ToUpper(field->name()));
461 "cap_oneof_name", ToUpper(vars["oneof_name"]));
    [all...]
  /prebuilts/go/darwin-x86/src/strings/
strings_test.go 497 func TestToUpper(t *testing.T) { runStringTests(t, ToUpper, "ToUpper", upperTests) }
734 upper := ToUpper(s)
744 if !equal("ToUpper(upper)", ToUpper(upper), upper, t) {
745 t.Error("ToUpper(upper) consistency fail")
755 unicode.ToUpper(unicode.ToLower('\u0130')) != '\u0130'
757 if !equal("ToUpper(lower)", ToUpper(lower), upper, t) {
758 t.Error("ToUpper(lower) consistency fail")
    [all...]
example_test.go 202 fmt.Println(strings.ToUpper("Gopher"))
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/strings/
strings_test.go 497 func TestToUpper(t *testing.T) { runStringTests(t, ToUpper, "ToUpper", upperTests) }
734 upper := ToUpper(s)
744 if !equal("ToUpper(upper)", ToUpper(upper), upper, t) {
745 t.Error("ToUpper(upper) consistency fail")
755 unicode.ToUpper(unicode.ToLower('\u0130')) != '\u0130'
757 if !equal("ToUpper(lower)", ToUpper(lower), upper, t) {
758 t.Error("ToUpper(lower) consistency fail")
    [all...]
example_test.go 202 fmt.Println(strings.ToUpper("Gopher"))
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/boringssl/src/util/
make_errors.go 62 prefix := strings.ToUpper(lib)
250 lib = strings.ToUpper(lib)
  /prebuilts/go/darwin-x86/src/mime/
encodedword_test.go 47 return bytes.NewReader(bytes.ToUpper(content)), nil
86 return bytes.NewReader(bytes.ToUpper(content)), nil
  /prebuilts/go/linux-x86/src/mime/
encodedword_test.go 47 return bytes.NewReader(bytes.ToUpper(content)), nil
86 return bytes.NewReader(bytes.ToUpper(content)), nil
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_message.cc 481 ToUpper(descriptor_->oneof_decl(i)->name());
609 ToUpper(descriptor_->oneof_decl(i)->name()));
    [all...]
  /prebuilts/go/darwin-x86/doc/progs/
go1.go 146 DELTA = unicode.ToUpper(delta)
  /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/cmd/internal/rsc.io/arm/armasm/
plan9x.go 210 return strings.ToUpper(arg.String())
  /prebuilts/go/linux-x86/doc/progs/
go1.go 146 DELTA = unicode.ToUpper(delta)
  /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/cmd/internal/rsc.io/arm/armasm/
plan9x.go 210 return strings.ToUpper(arg.String())
  /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) {

Completed in 411 milliseconds

1 2 3