/third_party/ffmpeg/libavformat/ |
H A D | pcmdec.c | 151 #define PCMDEF_EXT(name, long_name, ext, uppercase, ...) \ 152 PCMDEF_3(name, long_name, ext, AV_CODEC_ID_PCM_ ## uppercase, \ 153 CONFIG_PCM_ ## uppercase ## _DEMUXER, __VA_ARGS__) 154 #define PCMDEF(name, long_name, ext, uppercase) \ 155 PCMDEF_EXT(name, long_name, ext, uppercase, )
|
H A D | pcmenc.c | 42 #define PCMDEF(name, long_name, ext, uppercase) \ 43 PCMDEF_3(name, long_name, ext, AV_CODEC_ID_PCM_ ## uppercase, \ 44 CONFIG_PCM_ ## uppercase ## _MUXER)
|
/third_party/icu/icu4c/source/samples/case/ |
H A D | case.cpp | 54 /* uppercase = "LATIN CAPITAL I WITH DOT ABOVE STANBUL" */ in main() 55 UChar uppercase[] = {0x0130, 0x53, 0x54, 0x41, 0x4e, 0x42, 0x55, 0x4C, 0}; in main() local 57 UnicodeString upper(uppercase); in main() 69 u_fprintf(out, "\n\nlowercase=%S, uppercase=%S\n", lowercase, uppercase); in main() 80 uppercase */ in main()
|
/third_party/skia/third_party/externals/icu/source/samples/case/ |
H A D | case.cpp | 54 /* uppercase = "LATIN CAPITAL I WITH DOT ABOVE STANBUL" */ in main() 55 UChar uppercase[] = {0x0130, 0x53, 0x54, 0x41, 0x4e, 0x42, 0x55, 0x4C, 0}; in main() local 57 UnicodeString upper(uppercase); in main() 69 u_fprintf(out, "\n\nlowercase=%S, uppercase=%S\n", lowercase, uppercase); in main() 80 uppercase */ in main()
|
/third_party/rust/crates/heck/src/ |
H A D | shouty_kebab.rs | 3 use crate::{transform, uppercase}; 8 /// words are in uppercase. 43 transform(self.0.as_ref(), uppercase, |f| write!(f, "-"), f) in fmt()
|
H A D | shouty_snake.rs | 3 use crate::{transform, uppercase}; 8 /// words are in uppercase. 57 transform(self.0.as_ref(), uppercase, |f| write!(f, "_"), f) in fmt()
|
H A D | lib.rs | 14 //! 2. If an uppercase character is followed by lowercase letters, a word 15 //! boundary is considered to be just prior to that uppercase character. 16 //! 3. If multiple uppercase characters are consecutive, they are considered to 93 /// (either lowercase or uppercase) since the previous word boundary, in transform() 99 /// There have been no lowercase or uppercase characters in the current in transform() 104 /// The previous cased character in the current word is uppercase. in transform() 136 // not uppercase and next is uppercase in transform() 146 // Otherwise if current and previous are uppercase and next in transform() 191 fn uppercase( functions [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | Punycode.java | 83 private static char asciiCaseMap(char b, boolean uppercase) { in asciiCaseMap() argument 84 if(uppercase) { in asciiCaseMap() 99 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is 100 * nonzero, in which case the uppercase form is used. 102 private static char digitToBasic(int digit, boolean uppercase) { in digitToBasic() argument 106 if(uppercase) { in digitToBasic() 424 /* Case of last character determines uppercase flag: */ in decode()
|
/third_party/icu/icu4c/source/common/ |
H A D | punycode.cpp | 91 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is 92 * nonzero, in which case the uppercase form is used. 95 digitToBasic(int32_t digit, UBool uppercase) { in digitToBasic() argument 99 if(uppercase) { in digitToBasic() 132 asciiCaseMap(char b, UBool uppercase) { in asciiCaseMap() argument 133 if(uppercase) { in asciiCaseMap() 573 /* Case of last character determines uppercase flag: */ in u_strFromPunycode()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | Punycode.java | 93 private static char asciiCaseMap(char b, boolean uppercase) { in asciiCaseMap() argument 94 if(uppercase) { in asciiCaseMap() 109 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is 110 * nonzero, in which case the uppercase form is used. 112 private static char digitToBasic(int digit, boolean uppercase) { in digitToBasic() argument 116 if(uppercase) { in digitToBasic() 421 /* Case of last character determines uppercase flag: */ in decode()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | punycode.cpp | 91 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is 92 * nonzero, in which case the uppercase form is used. 95 digitToBasic(int32_t digit, UBool uppercase) { in digitToBasic() argument 99 if(uppercase) { in digitToBasic() 132 asciiCaseMap(char b, UBool uppercase) { in asciiCaseMap() argument 133 if(uppercase) { in asciiCaseMap() 573 /* Case of last character determines uppercase flag: */ in u_strFromPunycode()
|
/third_party/node/deps/brotli/c/common/ |
H A D | transform.c | 261 uint8_t* uppercase = &dst[idx - len]; in BrotliTransformDictionaryWord() local 263 int step = ToUpperCase(uppercase); in BrotliTransformDictionaryWord() 264 uppercase += step; in BrotliTransformDictionaryWord()
|
/third_party/skia/third_party/externals/brotli/c/common/ |
H A D | transform.c | 261 uint8_t* uppercase = &dst[idx - len]; in BrotliTransformDictionaryWord() local 263 int step = ToUpperCase(uppercase); in BrotliTransformDictionaryWord() 264 uppercase += step; in BrotliTransformDictionaryWord()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | punycode.cpp | 91 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is 92 * nonzero, in which case the uppercase form is used. 95 digitToBasic(int32_t digit, UBool uppercase) { in digitToBasic() argument 99 if(uppercase) { in digitToBasic() 132 asciiCaseMap(char b, UBool uppercase) { in asciiCaseMap() argument 133 if(uppercase) { in asciiCaseMap() 573 /* Case of last character determines uppercase flag: */ in u_strFromPunycode()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/ |
H A D | D3D12Error.cpp | 32 messageStream << "0x" << std::uppercase << std::setfill('0') << std::setw(8) << std::hex in CheckHRESULTImpl()
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | core.h | 196 # pragma names uppercase,truncated
|
/third_party/openssl/include/openssl/ |
H A D | core.h | 196 # pragma names uppercase,truncated
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/ |
H A D | float_conversion.cc | 857 bool uppercase, const FormatState &state) { in FormatA() 888 (uppercase ? 0 : 16); in FormatA() 892 *digits_iter++ = uppercase ? 'X' : 'x'; in FormatA() 923 exp_buffer[0] = uppercase ? 'P' : 'p'; in FormatA() 1383 bool uppercase = (c == FormatConversionCharInternal::A); 1385 decomposed.exponent, uppercase, {sign_char, precision, conv, sink}); 856 FormatA(const HexFloatTypeParams float_traits, Int mantissa, int exp, bool uppercase, const FormatState &state) FormatA() argument
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
H A D | LLVMAsm.cpp | 148 location << "[0x" << std::uppercase << std::hex << instructionAddress << "] "; in fixupAsmFile()
|
/third_party/gptfdisk/ |
H A D | attributes.cc | 75 cout.setf(ios::uppercase); in DisplayAttributes()
|
H A D | bsd.cc | 199 cout.setf(ios::uppercase); in DisplayBSDData()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TextAPI/MachO/ |
H A D | InterfaceFile.cpp | 93 Stream << std::setfill('0') << std::setw(2) << std::uppercase << std::hex in addUUID()
|
/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | int128.cc | 157 std::ios::basefield | std::ios::showbase | std::ios::uppercase; in operator <<()
|
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
H A D | CollationAPITest.java | 934 boolean uppercase = collator.isUpperCaseFirst(); in TestSetGet() 964 collator.setUpperCaseFirst(!uppercase); in TestSetGet() 965 if (collator.isUpperCaseFirst() == uppercase) { in TestSetGet() 994 || collator.isUpperCaseFirst() != uppercase) { in TestSetGet()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/ |
H A D | CollationAPITest.java | 937 boolean uppercase = collator.isUpperCaseFirst(); in TestSetGet() 967 collator.setUpperCaseFirst(!uppercase); in TestSetGet() 968 if (collator.isUpperCaseFirst() == uppercase) { in TestSetGet() 997 || collator.isUpperCaseFirst() != uppercase) { in TestSetGet()
|