/third_party/skia/third_party/externals/freetype/src/tools/ |
H A D | glnames.py | 5031 # - First the node's letter, according to the following scheme. We 5036 # notlast 1 Set to 1 if this is not the last letter 5038 # ascii 7 The letter's ASCII value. 5040 # - The letter is followed by a children count and the value of the 5055 # letter. 5059 # The root node has first letter = 0, and no value. 5062 def __init__( self, letter, value ): 5063 self.letter = letter 5068 return ord( self.letter[ [all...] |
/third_party/node/deps/npm/node_modules/@colors/colors/lib/maps/ |
H A D | america.js | 2 return function(letter, i, exploded) { 3 if (letter === ' ') return letter; 5 case 0: return colors.red(letter); 6 case 1: return colors.white(letter); 7 case 2: return colors.blue(letter);
|
H A D | random.js | 5 return function(letter, i, exploded) { 6 return letter === ' ' ? letter : 9 ](letter);
|
H A D | rainbow.js | 4 return function(letter, i, exploded) { 5 if (letter === ' ') { 6 return letter; 8 return colors[rainbowColors[i++ % rainbowColors.length]](letter);
|
H A D | zebra.js | 2 return function(letter, i, exploded) { 3 return i % 2 === 0 ? letter : colors.inverse(letter);
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/ |
H A D | version.py | 453 letter: Optional[str], number: Union[str, bytes, SupportsInt, None] 456 if letter: 463 letter = letter.lower() 468 if letter == "alpha": 469 letter = "a" 470 elif letter == "beta": 471 letter = "b" 472 elif letter in ["c", "pre", "preview"]: 473 letter [all...] |
/third_party/ltp/docparse/ |
H A D | testinfo.pl | 187 my ($letter, $prev_letter); 191 $letter = substr($name, 0, 1); 192 if (defined($prev_letter) && $letter ne $prev_letter) { 197 $prev_letter = $letter; 207 my $letter; 216 for my $letter (@names) { 217 $content .= reference($letter); 263 my ($letter, $prev_letter, $content); 355 my $letter = substr($name, 0, 1); 357 if ($printed ne $letter) { [all...] |
/third_party/gn/src/base/files/ |
H A D | file_path.cc | 42 // If this FilePath contains a drive letter specification, returns the 43 // position of the last character of the drive letter specification, 45 // begins with a letter followed by a colon. On other platforms, this always 81 StringType::size_type letter = FindDriveLetter(path); in IsPathAbsolute() local 82 if (letter != StringType::npos) { in IsPathAbsolute() 84 return path.length() > letter + 1 && in IsPathAbsolute() 85 FilePath::IsSeparator(path[letter + 1]); in IsPathAbsolute() 240 // Capture drive letter, if any. in GetComponents() 242 StringType::size_type letter = FindDriveLetter(dir.value()); in GetComponents() local 243 if (letter ! in GetComponents() 308 StringType::size_type letter = FindDriveLetter(new_path.path_); DirName() local 340 StringType::size_type letter = FindDriveLetter(new_path.path_); BaseName() local [all...] |
/third_party/EGL/sdk/docs/man/html/ |
H A D | makeindex.py | 159 # letters - if not None, include per-letter links to within 160 # the indices for each letter in the list. 189 for letter in letters: 191 letter + 193 letter + 221 # Begin index section for a letter, include an anchor to link to 222 def beginLetterSection(letter, fp): 223 print(ind2 + '<a name="' + letter + '"></a>', 224 ind2 + '<li>' + letter, 228 # End index section for a letter [all...] |
/third_party/skia/third_party/externals/egl-registry/sdk/docs/man/html/ |
H A D | makeindex.py | 159 # letters - if not None, include per-letter links to within 160 # the indices for each letter in the list. 189 for letter in letters: 191 letter + 193 letter + 221 # Begin index section for a letter, include an anchor to link to 222 def beginLetterSection(letter, fp): 223 print(ind2 + '<a name="' + letter + '"></a>', 224 ind2 + '<li>' + letter, 228 # End index section for a letter [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | correlatedUnions.js | 91 type LetterCaller<K extends keyof LetterMap> = { [P in K]: { letter: Record<P, LetterMap[P]>, caller: (x: Record<P, LetterMap[P]>) => void } }[K]; 93 function call<K extends keyof LetterMap>({ letter, caller }: LetterCaller<K>): void { 94 caller(letter); 102 declare const xx: { letter: A, caller: ACaller } | { letter: B, caller: BCaller }; 277 var letter = _a.letter, caller = _a.caller;
278 caller(letter);
422 letter: Record<P, LetterMap[P]>;
426 declare function call<K extends keyof LetterMap>({ letter, calle [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/ |
H A D | TestBidiTransform.java | 231 for (int letter : letters) { in allTransformOptionsTest() 233 (Order)test[1], (Byte)test[2], (Order)test[3], Mirroring.OFF, digit | letter), in allTransformOptionsTest() 234 expectedChars, digit, letter); in allTransformOptionsTest()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/bidi/ |
H A D | TestBidiTransform.java | 234 for (int letter : letters) { in allTransformOptionsTest() 236 (Order)test[1], (Byte)test[2], (Order)test[3], Mirroring.OFF, digit | letter), in allTransformOptionsTest() 237 expectedChars, digit, letter); in allTransformOptionsTest()
|
/third_party/python/Doc/ |
H A D | Makefile | 37 @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" 193 # archive the letter latex 195 make latex PAPER=letter 198 cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-letter.zip 199 cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-letter.tar.bz2
|
/third_party/python/Lib/ |
H A D | textwrap.py | 75 letter = r'[^\d\W]' variable in TextWrapper 93 )''' % {'wp': word_punct, 'lt': letter, 96 del word_punct, letter, nowhitespace 107 sentence_end_re = re.compile(r'[a-z]' # lowercase letter
|
/third_party/rust/crates/heck/src/ |
H A D | lib.rs | 75 s.split(|letter: char| !letter.is_ascii_alphanumeric()) in get_iterator()
|
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/ |
H A D | Ordinals.pm | 760 symbol = ( letter | "_" ), { letter | digit | "_" }; 762 version = number, "_", number, "_", number, [ letter, [ letter ] ]; 765 platform = ( letter | "_" ) { letter | digit | "_" }; 768 feature = ( letter | "_" ) { letter | digit | "_" }; 771 (C<letter> and C<digit> are assumed self evident)
|
/third_party/openssl/util/perl/OpenSSL/ |
H A D | Ordinals.pm | 760 symbol = ( letter | "_" ), { letter | digit | "_" }; 762 version = number, "_", number, "_", number, [ letter, [ letter ] ]; 765 platform = ( letter | "_" ) { letter | digit | "_" }; 768 feature = ( letter | "_" ) { letter | digit | "_" }; 771 (C<letter> and C<digit> are assumed self evident)
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | DateIntervalInfo.java | 62 * only keeps the field pattern letter and ignores all other parts 67 * might hide a field's pattern letter length. 69 * For those non-digit calendar fields, the pattern letter length is 71 * and the field's pattern letter length is honored. 76 * letter length in skeleton. 525 * Processes the pattern letter 527 * @return Pattern letter 530 // Check that patternLetter is just one letter in validateAndProcessPatternLetter() 533 // Check that the pattern letter is accepted in validateAndProcessPatternLetter() 534 char letter in validateAndProcessPatternLetter() [all...] |
/third_party/icu/icu4c/source/i18n/ |
H A D | ucol_sit.cpp | 125 char letter; member 146 ucol_sit_letterToAttributeValue(char letter, UErrorCode *status) { in ucol_sit_letterToAttributeValue() argument 149 if(conversions[i].letter == letter) { in ucol_sit_letterToAttributeValue() 155 fprintf(stderr, "%s:%d: unknown letter %c: %s\n", __FILE__, __LINE__, letter, u_errorName(*status)); in ucol_sit_letterToAttributeValue()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | ucol_sit.cpp | 126 char letter; member 147 ucol_sit_letterToAttributeValue(char letter, UErrorCode *status) { in ucol_sit_letterToAttributeValue() argument 150 if(conversions[i].letter == letter) { in ucol_sit_letterToAttributeValue() 156 fprintf(stderr, "%s:%d: unknown letter %c: %s\n", __FILE__, __LINE__, letter, u_errorName(*status)); in ucol_sit_letterToAttributeValue()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | ucol_sit.cpp | 125 char letter; member 146 ucol_sit_letterToAttributeValue(char letter, UErrorCode *status) { in ucol_sit_letterToAttributeValue() argument 149 if(conversions[i].letter == letter) { in ucol_sit_letterToAttributeValue() 155 fprintf(stderr, "%s:%d: unknown letter %c: %s\n", __FILE__, __LINE__, letter, u_errorName(*status)); in ucol_sit_letterToAttributeValue()
|
/third_party/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/ |
H A D | PhoneNumberMatcher.java | 291 * Helper method to determine if a character is a Latin-script letter or not. For our purposes, 296 static boolean isLatinLetter(char letter) { in isLatinLetter() argument 298 if (!Character.isLetter(letter) && Character.getType(letter) != Character.NON_SPACING_MARK) { in isLatinLetter() 301 UnicodeBlock block = UnicodeBlock.of(letter); in isLatinLetter() 407 // We return null if it is a latin letter or an invalid punctuation symbol. in parseAndVerify()
|
/third_party/protobuf/src/google/protobuf/compiler/objectivec/ |
H A D | method_dump.sh | 67 // Make sure the next letter is a capital letter so we do not take things like
|
/third_party/curl/src/ |
H A D | tool_getparam.c | 353 char letter; /* short name option or ' ' */ member 708 first character is an alphabetic letter: in parse_cert_parameter() 710 this is a drive letter colon */ in parse_cert_parameter() 716 /* escaped colons and Windows drive letter colons were handled in parse_cert_parameter() 858 /* there was no '=' letter, check for a '@' instead */ in data_urlencode() 871 /* a '@' letter, it means that a file name or - (stdin) follows */ in data_urlencode() 1008 static const struct LongShort *single(char letter) in single() argument 1012 DEBUGASSERT((letter < 127) && (letter > ' ')); in single() 1017 if(aliases[j].letter ! in single() 1304 char letter; getparameter() local [all...] |