/third_party/typescript/tests/baselines/reference/ |
D | scannerS7.8.4_A7.1_T4.types | 6 * EscapeSequence :: UnicodeEscapeSequence :: u HexDigit HexDigit HexDigit HexDigit
|
D | scannerS7.8.4_A7.1_T4.errors.txt | 9 * EscapeSequence :: UnicodeEscapeSequence :: u HexDigit HexDigit HexDigit HexDigit
|
D | scannerS7.8.4_A7.1_T4.symbols | 6 …n for this code. * EscapeSequence :: UnicodeEscapeSequence :: u HexDigit HexDigit HexDigit HexDigit
|
D | templateLiteralTypes1.js | 95 type HexDigit = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' |'8' | '9' | 'A' | 'B' | 'C' | 'D' | … 99 … [R1, R2, G1, G2, B1, B2] extends [HexDigit, HexDigit, HexDigit, HexDigit, HexDigit, HexDigit] ? 325 declare type HexDigit = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | 'A' | 'B' | 'C'… 333 ] extends [HexDigit, HexDigit, HexDigit, HexDigit, HexDigit, HexDigit] ? S : never : never;
|
D | templateLiteralTypes1.symbols | 320 type HexDigit = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' |'8' | '9' | 'A' | 'B' | 'C' | 'D' | … 321 >HexDigit : Symbol(HexDigit, Decl(templateLiteralTypes1.ts, 91, 32)) 336 … [R1, R2, G1, G2, B1, B2] extends [HexDigit, HexDigit, HexDigit, HexDigit, HexDigit, HexDigit] ? 343 >HexDigit : Symbol(HexDigit, Decl(templateLiteralTypes1.ts, 91, 32)) 344 >HexDigit : Symbol(HexDigit, Decl(templateLiteralTypes1.ts, 91, 32)) 345 >HexDigit : Symbol(HexDigit, Decl(templateLiteralTypes1.ts, 91, 32)) 346 >HexDigit : Symbol(HexDigit, Decl(templateLiteralTypes1.ts, 91, 32)) 347 >HexDigit : Symbol(HexDigit, Decl(templateLiteralTypes1.ts, 91, 32)) 348 >HexDigit : Symbol(HexDigit, Decl(templateLiteralTypes1.ts, 91, 32))
|
D | templateLiteralTypes1.errors.txt | 115 …type HexDigit = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' |'8' | '9' | 'A' | 'B' | 'C' | 'D' |… 119 … [R1, R2, G1, G2, B1, B2] extends [HexDigit, HexDigit, HexDigit, HexDigit, HexDigit, HexDigit] ?
|
D | templateLiteralTypes1.types | 199 type HexDigit = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' |'8' | '9' | 'A' | 'B' | 'C' | 'D' | … 200 >HexDigit : HexDigit 206 … [R1, R2, G1, G2, B1, B2] extends [HexDigit, HexDigit, HexDigit, HexDigit, HexDigit, HexDigit] ?
|
/third_party/protobuf/src/google/protobuf/io/ |
D | tokenizer.cc | 132 CHARACTER_CLASS(HexDigit, ('0' <= c && c <= '9') || ('a' <= c && c <= 'f') || 388 if (!TryConsumeOne<HexDigit>()) { in ConsumeString() 393 if (!TryConsumeOne<HexDigit>() || !TryConsumeOne<HexDigit>() || in ConsumeString() 394 !TryConsumeOne<HexDigit>() || !TryConsumeOne<HexDigit>()) { in ConsumeString() 402 !TryConsumeOne<HexDigit>() || !TryConsumeOne<HexDigit>() || in ConsumeString() 403 !TryConsumeOne<HexDigit>() || !TryConsumeOne<HexDigit>() || in ConsumeString() 404 !TryConsumeOne<HexDigit>()) { in ConsumeString() 433 ConsumeOneOrMore<HexDigit>("\"0x\" must be followed by hex digits."); in ConsumeNumber() 1081 if (HexDigit::InClass(ptr[1])) { in ParseStringAppend() 1085 if (HexDigit::InClass(ptr[1])) { in ParseStringAppend()
|
/third_party/typescript/tests/cases/conformance/types/literal/ |
D | templateLiteralTypes1.ts | 97 type HexDigit = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' |'8' | '9' | 'A' | 'B' | 'C' | 'D' | … alias 101 … [R1, R2, G1, G2, B1, B2] extends [HexDigit, HexDigit, HexDigit, HexDigit, HexDigit, HexDigit] ?
|
/third_party/rust/crates/nom/src/ |
D | error.rs | 384 HexDigit, enumerator 465 ErrorKind::HexDigit => 59, in error_to_u32() 528 ErrorKind::HexDigit => "Hexadecimal Digit", in description()
|
/third_party/rust/crates/nom/src/character/ |
D | complete.rs | 488 input.split_at_position1_complete(|item| !item.is_hex_digit(), ErrorKind::HexDigit) in hex_digit1() 873 assert_eq!(hex_digit1(e), Err(Err::Error((e, ErrorKind::HexDigit)))); in character() 910 assert_eq!(hex_digit1(e), Err(Err::Error((e, ErrorKind::HexDigit)))); in character_s() 1037 Err(Err::Error(error_position!(i, ErrorKind::HexDigit))) in hex_digit_test() 1043 Err(Err::Error(error_position!(i, ErrorKind::HexDigit))) in hex_digit_test()
|
D | streaming.rs | 427 input.split_at_position1(|item| !item.is_hex_digit(), ErrorKind::HexDigit) in hex_digit1() 798 assert_eq!(hex_digit1(e), Err(Err::Error((e, ErrorKind::HexDigit)))); in character() 861 assert_eq!(hex_digit1(e), Err(Err::Error((e, ErrorKind::HexDigit)))); in character_s() 1003 Err(Err::Error(error_position!(i, ErrorKind::HexDigit))) in hex_digit_test() 1009 Err(Err::Error(error_position!(i, ErrorKind::HexDigit))) in hex_digit_test()
|
/third_party/rust/crates/nom/doc/archive/ |
D | upgrading_to_nom_2.md | 77 … `(left == right)` (left: `Incomplete(Unknown)`, right: `Error(Position(HexDigit, []))`)', source/…
|
/third_party/node/deps/acorn/acorn/dist/ |
D | acorn.mjs | 4619 // https://www.ecma-international.org/ecma-262/8.0/#prod-HexDigit 4620 // And HexDigit HexDigit in https://www.ecma-international.org/ecma-262/8.0/#prod-HexEscapeSequence
|