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

1 2 3 4 5 6

  /external/libcxx/test/input.output/iostreams.base/std.ios.manip/fmtflags.manip/
nouppercase.pass.cpp 26 std::uppercase(ios);
29 assert(!(ios.flags() & std::ios::uppercase));
uppercase.pass.cpp 14 // ios_base& uppercase(ios_base& str);
26 std::ios_base& r = std::uppercase(ios);
28 assert(ios.flags() & std::ios::uppercase);
Android.mk 43 test_name := input.output/iostreams.base/std.ios.manip/fmtflags.manip/uppercase
44 test_src := uppercase.pass.cpp
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/std.ios.manip/fmtflags.manip/
nouppercase.pass.cpp 26 std::uppercase(ios);
29 assert(!(ios.flags() & std::ios::uppercase));
uppercase.pass.cpp 14 // ios_base& uppercase(ios_base& str);
26 std::ios_base& r = std::uppercase(ios);
28 assert(ios.flags() & std::ios::uppercase);
  /external/libcxx/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters/
basic_ios.pass.cpp 57 std::uppercase(os);
66 assert(!(os.flags() & std::ios_base::uppercase));
68 assert( (os.flags() & std::ios_base::uppercase));
ios_base.pass.cpp 57 assert(!(os.flags() & std::ios_base::uppercase));
58 os << std::uppercase; member in class:std
59 assert( (os.flags() & std::ios_base::uppercase));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters/
basic_ios.pass.cpp 57 std::uppercase(os);
66 assert(!(os.flags() & std::ios_base::uppercase));
68 assert( (os.flags() & std::ios_base::uppercase));
ios_base.pass.cpp 57 assert(!(os.flags() & std::ios_base::uppercase));
58 os << std::uppercase; member in class:std
59 assert( (os.flags() & std::ios_base::uppercase));
  /external/icu/icu4c/source/samples/case/
case.cpp 46 /* uppercase = "LATIN CAPITAL I WITH DOT ABOVE STANBUL" */
47 UChar uppercase[] = {0x0130, 0x53, 0x54, 0x41, 0x4e, 0x42, 0x55, 0x4C, 0}; local
49 UnicodeString upper(uppercase);
61 u_fprintf(out, "\n\nlowercase=%S, uppercase=%S\n", lowercase, uppercase);
72 uppercase */
  /external/chromium_org/third_party/brotli/src/brotli/dec/
transform.h 210 uint8_t* uppercase;
221 uppercase = &dst[idx - len];
223 ToUpperCase(uppercase, len);
226 int step = ToUpperCase(uppercase, len);
227 uppercase += step;
  /external/chromium_org/third_party/WebKit/Source/wtf/testing/
WTFTestHelpers.cpp 74 out.setf(std::ios::uppercase);
  /external/chromium_org/third_party/brotli/src/brotli/enc/
transform.h 214 uint8_t *uppercase = reinterpret_cast<uint8_t*>(&ret[ret.size() - len]); local
216 ToUpperCase(uppercase, len);
219 int step = ToUpperCase(uppercase, len);
220 uppercase += step;
  /external/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_fmtflags/
fmtflags.pass.cpp 28 // static const fmtflags uppercase;
52 assert(std::ios_base::uppercase);
70 & std::ios_base::uppercase) == 0
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_fmtflags/
fmtflags.pass.cpp 28 // static const fmtflags uppercase;
52 assert(std::ios_base::uppercase);
70 & std::ios_base::uppercase) == 0
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/styles/
failures.css 41 text-transform: uppercase;
  /external/jemalloc/src/
util.c 30 static char *u2s(uintmax_t x, unsigned base, bool uppercase, char *s,
37 static char *x2s(uintmax_t x, bool alt_form, bool uppercase, char *s,
215 u2s(uintmax_t x, unsigned base, bool uppercase, char *s, size_t *slen_p)
230 const char *digits = (uppercase)
241 const char *digits = (uppercase)
297 x2s(uintmax_t x, bool alt_form, bool uppercase, char *s, size_t *slen_p)
300 s = u2s(x, 16, uppercase, s, slen_p);
304 memcpy(s, uppercase ? "0X" : "0x", 2);
  /external/chromium_org/tools/gyp/test/win/generator-output-different-drive/
gyptest-generator-output-different-drive.py 25 all_letters = [c for c in string.uppercase]
  /external/chromium_org/ui/gfx/test/
gfx_util.cc 17 stream << std::hex << std::uppercase << "#" << std::setfill('0')
  /external/svox/pico/lib/
picobase.h 91 * Converts the content of 'utf8str' to upperrcase and stores it on 'uppercase'
93 * @param uppercase : string converted to uppercase (output)
94 * @param uppercaseMaxLen : maximal number of bytes available in 'uppercase'
98 picoos_int32 picobase_uppercase_utf8_str (picoos_uchar utf8str[], picoos_char uppercase[], int uppercaseMaxLen, picoos_uint8 * done);
150 * returns TRUE if the input string is UTF8 and uppercase
153 * @return TRUE if string is UTF8 and uppercase
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stringold.py 14 uppercase -- a string containing all characters considered uppercase letters
28 uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' variable
29 letters = lowercase + uppercase
58 Return a copy of the string s converted to uppercase.
425 # It also defines values for whitespace, lowercase and uppercase
429 from strop import maketrans, lowercase, uppercase, whitespace namespace
430 letters = lowercase + uppercase
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stringold.py 14 uppercase -- a string containing all characters considered uppercase letters
28 uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' variable
29 letters = lowercase + uppercase
58 Return a copy of the string s converted to uppercase.
425 # It also defines values for whitespace, lowercase and uppercase
429 from strop import maketrans, lowercase, uppercase, whitespace namespace
430 letters = lowercase + uppercase
  /external/libcxx/test/input.output/iostreams.base/ios/basic.ios.members/
move.pass.cpp 84 ios2.flags(std::ios::showpoint | std::ios::uppercase);
109 assert(ios1.flags() == (std::ios::showpoint | std::ios::uppercase));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios/basic.ios.members/
move.pass.cpp 84 ios2.flags(std::ios::showpoint | std::ios::uppercase);
109 assert(ios1.flags() == (std::ios::showpoint | std::ios::uppercase));
  /external/chromium_org/third_party/icu/source/common/
punycode.c 86 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is
87 * nonzero, in which case the uppercase form is used.
90 digitToBasic(int32_t digit, UBool uppercase) {
94 if(uppercase) {
137 asciiCaseMap(char b, UBool uppercase) {
138 if(uppercase) {
566 /* Case of last character determines uppercase flag: */

Completed in 522 milliseconds

1 2 3 4 5 6