/third_party/typescript/tests/baselines/reference/ |
D | stringLiteralTypesWithVariousOperators01.types | 2 let abc: "ABC" = "ABC"; 3 >abc : "ABC" 4 >"ABC" : "ABC" 10 let abcOrXyz: "ABC" | "XYZ" = abc || xyz; 11 >abcOrXyz : "ABC" | "XYZ" 12 >abc || xyz : "ABC" | "XYZ" 13 >abc : "ABC" 16 let abcOrXyzOrNumber: "ABC" | "XYZ" | number = abcOrXyz || 100; 17 >abcOrXyzOrNumber : number | "ABC" | "XYZ" 18 >abcOrXyz || 100 : "ABC" | "XYZ" | 100 [all …]
|
D | stringLiteralTypesWithVariousOperators02.types | 2 let abc: "ABC" = "ABC"; 3 >abc : "ABC" 4 >"ABC" : "ABC" 10 let abcOrXyz: "ABC" | "XYZ" = abc || xyz; 11 >abcOrXyz : "ABC" | "XYZ" 12 >abc || xyz : "ABC" | "XYZ" 13 >abc : "ABC" 16 let abcOrXyzOrNumber: "ABC" | "XYZ" | number = abcOrXyz || 100; 17 >abcOrXyzOrNumber : number | "ABC" | "XYZ" 18 >abcOrXyz || 100 : "ABC" | "XYZ" | 100 [all …]
|
D | stringLiteralTypesWithTemplateStrings01.types | 2 let ABC: "ABC" = `ABC`; 3 >ABC : "ABC" 4 >`ABC` : "ABC"
|
D | moduleImport.types | 34 import ABC = A.B.C; 35 >ABC : typeof ABC 38 >C : typeof ABC 44 if (x > 0) ABC.ping(x-1); 48 >ABC.ping(x-1) : void 49 >ABC.ping : (x: number) => void 50 >ABC : typeof ABC
|
D | moduleImport.symbols | 25 import ABC = A.B.C; 26 >ABC : Symbol(ABC, Decl(moduleImport.ts, 7, 10)) 29 >C : Symbol(ABC, Decl(moduleImport.ts, 0, 11)) 35 if (x > 0) ABC.ping(x-1); 37 >ABC.ping : Symbol(ABC.ping, Decl(moduleImport.ts, 1, 20)) 38 >ABC : Symbol(ABC, Decl(moduleImport.ts, 7, 10)) 39 >ping : Symbol(ABC.ping, Decl(moduleImport.ts, 1, 20))
|
D | unionPropertyExistence.types | 35 type ABC = C | AB; 36 >ABC : ABC 41 var abc: ABC; 42 >abc : ABC 83 >abc : ABC 93 >abc : ABC 98 >abc : ABC 103 >abc : ABC
|
D | stringLiteralTypesWithTemplateStrings01.symbols | 2 let ABC: "ABC" = `ABC`; 3 >ABC : Symbol(ABC, Decl(stringLiteralTypesWithTemplateStrings01.ts, 0, 3))
|
D | moduleImport.js | 10 import ABC = A.B.C; 12 if (x > 0) ABC.ping(x-1); 34 var ABC = A.B.C; 37 ABC.ping(x - 1);
|
D | instanceOfAssignability.js | 82 class ABC { a; b; c; } class 84 if(x instanceof ABC) { 188 var ABC = /** @class */ (function () { 189 function ABC() { class in ABC 191 return ABC; 194 if (x instanceof ABC) {
|
D | instanceOfAssignability.types | 172 class ABC { a; b; c; } 173 >ABC : ABC 182 if(x instanceof ABC) { 183 >x instanceof ABC : boolean 185 >ABC : typeof ABC 188 >y : ABC 189 >x : ABC
|
D | stringLiteralTypesWithTemplateStrings01.js | 2 let ABC: "ABC" = `ABC`; variable 9 var ABC = "ABC"; 16 declare let ABC: "ABC";
|
D | unionPropertyExistence.errors.txt | 9 …iler/unionPropertyExistence.ts(35,5): error TS2339: Property 'notInC' does not exist on type 'ABC'. 13 …iler/unionPropertyExistence.ts(37,5): error TS2339: Property 'notInB' does not exist on type 'ABC'. 15 …iler/unionPropertyExistence.ts(40,5): error TS2339: Property 'inNone' does not exist on type 'ABC'. 38 type ABC = C | AB; 41 var abc: ABC; 68 !!! error TS2339: Property 'notInC' does not exist on type 'ABC'. 76 !!! error TS2339: Property 'notInB' does not exist on type 'ABC'. 82 !!! error TS2339: Property 'inNone' does not exist on type 'ABC'.
|
D | stringLiteralTypesWithVariousOperators02.errors.txt | 10 … error TS2367: This condition will always return 'false' since the types '"ABC"' and '"XYZ"' have … 11 …: error TS2367: This condition will always return 'true' since the types '"ABC"' and '"XYZ"' have … 15 let abc: "ABC" = "ABC"; 17 let abcOrXyz: "ABC" | "XYZ" = abc || xyz; 18 let abcOrXyzOrNumber: "ABC" | "XYZ" | number = abcOrXyz || 100; 50 !!! error TS2367: This condition will always return 'false' since the types '"ABC"' and '"XYZ"' hav… 53 !!! error TS2367: This condition will always return 'true' since the types '"ABC"' and '"XYZ"' have…
|
D | unionPropertyExistence.symbols | 43 type ABC = C | AB; 44 >ABC : Symbol(ABC, Decl(unionPropertyExistence.ts, 17, 16)) 52 var abc: ABC; 54 >ABC : Symbol(ABC, Decl(unionPropertyExistence.ts, 17, 16))
|
/third_party/python/Lib/test/ |
D | tokenize_tests.txt | 113 x = b'abc' + B'ABC' 114 y = b"abc" + B"ABC" 115 x = br'abc' + Br'ABC' + bR'ABC' + BR'ABC' 116 y = br"abc" + Br"ABC" + bR"ABC" + BR"ABC" 117 x = rb'abc' + rB'ABC' + Rb'ABC' + RB'ABC' 118 y = rb"abc" + rB"ABC" + Rb"ABC" + RB"ABC"
|
/third_party/node/test/parallel/ |
D | test-stream-uint8array.js | 7 const ABC = new Uint8Array([0x41, 0x42, 0x43]); constant 28 writable.write(ABC); 40 assert.strictEqual(chunk, ABC); 46 writable.end(ABC); 68 writable.write(ABC); 81 readable.unshift(ABC); 85 assert.deepStrictEqual([...buf], [...ABC, ...DEF]); 97 readable.unshift(ABC);
|
/third_party/python/Doc/library/ |
D | abc.rst | 28 a helper class :class:`ABC` to alternatively define ABCs through inheritance: 30 .. class:: ABC 33 an abstract base class can be created by simply deriving from :class:`ABC` 36 from abc import ABC 38 class MyABC(ABC): 41 Note that the type of :class:`ABC` is still :class:`ABCMeta`, therefore 42 inheriting from :class:`ABC` requires the usual precautions regarding 59 Use this metaclass to create an ABC. An ABC can be subclassed directly, and 63 ABC by the built-in :func:`issubclass` function, but the registering ABC 65 implementations defined by the registering ABC be callable (not even via [all …]
|
D | collections.abc.rst | 38 ABC Inherits from Abstract Methods Mixin Methods 102 ABC for classes that provide the :meth:`__contains__` method. 106 ABC for classes that provide the :meth:`__hash__` method. 110 ABC for classes that provide the :meth:`__len__` method. 114 ABC for classes that provide the :meth:`__call__` method. 118 ABC for classes that provide the :meth:`__iter__` method. 128 ABC for sized iterable container classes. 134 ABC for classes that provide the :meth:`~iterator.__iter__` and 140 ABC for iterable classes that also provide the :meth:`__reversed__` 147 ABC for generator classes that implement the protocol defined in [all …]
|
/third_party/boost/libs/wave/test/testwave/testfiles/ |
D | t_9_011.cpp | 18 PRIMITIVE_CAT(1, ABC) //R 1 ABC 19 PRIMITIVE_CAT3(ABC, 1, ABC) //R ABC1ABC
|
/third_party/grpc/src/python/grpcio/grpc/experimental/aio/ |
D | _base_channel.py | 27 class UnaryUnaryMultiCallable(abc.ABC): 65 class UnaryStreamMultiCallable(abc.ABC): 103 class StreamUnaryMultiCallable(abc.ABC): 141 class StreamStreamMultiCallable(abc.ABC): 179 class Channel(abc.ABC):
|
/third_party/grpc/src/python/grpcio/grpc/aio/ |
D | _base_channel.py | 27 class UnaryUnaryMultiCallable(abc.ABC): 66 class UnaryStreamMultiCallable(abc.ABC): 105 class StreamUnaryMultiCallable(abc.ABC): 144 class StreamStreamMultiCallable(abc.ABC): 183 class Channel(abc.ABC):
|
/third_party/boost/libs/log/test/run/ |
D | util_formatting_ostream.cpp | 86 … strm_fmt << strings::abc() << std::setw(8) << (StringT)strings::abcd() << strings::ABC(); in width_formatting() 90 … strm_correct << strings::abc() << std::setw(8) << (StringT)strings::abcd() << strings::ABC(); in width_formatting() 99 … strm_fmt << strings::abc() << std::setw(1) << (StringT)strings::abcd() << strings::ABC(); in width_formatting() 103 … strm_correct << strings::abc() << std::setw(1) << (StringT)strings::abcd() << strings::ABC(); in width_formatting() 114 …tfill(static_cast< char_type >('x')) << std::setw(8) << (StringT)strings::abcd() << strings::ABC(); in fill_formatting() 118 …tfill(static_cast< char_type >('x')) << std::setw(8) << (StringT)strings::abcd() << strings::ABC(); in fill_formatting() 130 …m_fmt << strings::abc() << std::setw(8) << std::left << (StringT)strings::abcd() << strings::ABC(); in alignment() 134 …rrect << strings::abc() << std::setw(8) << std::left << (StringT)strings::abcd() << strings::ABC(); in alignment() 143 …_fmt << strings::abc() << std::setw(8) << std::right << (StringT)strings::abcd() << strings::ABC(); in alignment() 147 …rect << strings::abc() << std::setw(8) << std::right << (StringT)strings::abcd() << strings::ABC(); in alignment() [all …]
|
D | src_record_ostream.cpp | 81 … strm_fmt << strings::abc() << std::setw(8) << (StringT)strings::abcd() << strings::ABC(); in width_formatting() 86 … strm_correct << strings::abc() << std::setw(8) << (StringT)strings::abcd() << strings::ABC(); in width_formatting() 96 … strm_fmt << strings::abc() << std::setw(1) << (StringT)strings::abcd() << strings::ABC(); in width_formatting() 101 … strm_correct << strings::abc() << std::setw(1) << (StringT)strings::abcd() << strings::ABC(); in width_formatting() 113 …tfill(static_cast< char_type >('x')) << std::setw(8) << (StringT)strings::abcd() << strings::ABC(); in fill_formatting() 118 …tfill(static_cast< char_type >('x')) << std::setw(8) << (StringT)strings::abcd() << strings::ABC(); in fill_formatting() 131 …m_fmt << strings::abc() << std::setw(8) << std::left << (StringT)strings::abcd() << strings::ABC(); in alignment() 136 …rrect << strings::abc() << std::setw(8) << std::left << (StringT)strings::abcd() << strings::ABC(); in alignment() 146 …_fmt << strings::abc() << std::setw(8) << std::right << (StringT)strings::abcd() << strings::ABC(); in alignment() 151 …rect << strings::abc() << std::setw(8) << std::right << (StringT)strings::abcd() << strings::ABC(); in alignment() [all …]
|
/third_party/pcre2/pcre2/testdata/ |
D | testinput12 | 137 ABC\x{09} 138 ABC\x{20} 139 ABC\x{a0} 140 ABC\x{1680} 141 ABC\x{180e} 142 ABC\x{2000} 143 ABC\x{202f} 144 ABC\x{205f} 145 ABC\x{3000} 148 ABC\x{0a} [all …]
|
/third_party/boost/libs/convert/doc/ |
D | other.qbk | 13 string encrypted = boost::convert<string>("ABC", my_cypher).value(); 17 BOOST_ASSERT(decrypted == "ABC"); 19 The original "ABC" string is "encrypted" as "123" first and then "123" is "decrypted" back to its o…
|