/third_party/typescript/tests/baselines/reference/ |
D | templateStringInEqualityChecks.types | 2 var x = `abc${0}abc` === `abc` || 4 >`abc${0}abc` === `abc` || `abc` !== `abc${0}abc` && `abc${0}abc` == "abc0abc" && … 5 >`abc${0}abc` === `abc` : boolean 6 >`abc${0}abc` : string 8 >`abc` : "abc" 10 `abc` !== `abc${0}abc` && 11 >`abc` !== `abc${0}abc` && `abc${0}abc` == "abc0abc" && "abc0abc" !== `abc${0}abc` : … 12 >`abc` !== `abc${0}abc` && `abc${0}abc` == "abc0abc" : boolean 13 >`abc` !== `abc${0}abc` : boolean 14 >`abc` : "abc" [all …]
|
D | templateStringInEqualityChecksES6.types | 2 var x = `abc${0}abc` === `abc` || 4 >`abc${0}abc` === `abc` || `abc` !== `abc${0}abc` && `abc${0}abc` == "abc0abc" && … 5 >`abc${0}abc` === `abc` : boolean 6 >`abc${0}abc` : string 8 >`abc` : "abc" 10 `abc` !== `abc${0}abc` && 11 >`abc` !== `abc${0}abc` && `abc${0}abc` == "abc0abc" && "abc0abc" !== `abc${0}abc` : … 12 >`abc` !== `abc${0}abc` && `abc${0}abc` == "abc0abc" : boolean 13 >`abc` !== `abc${0}abc` : boolean 14 >`abc` : "abc" [all …]
|
D | taggedTemplateStringsWithTagsTypedAsAnyES6.types | 5 f `abc` 6 >f `abc` : any 8 >`abc` : "abc" 10 f `abc${1}def${2}ghi`; 11 >f `abc${1}def${2}ghi` : any 13 >`abc${1}def${2}ghi` : string 17 f.g.h `abc` 18 >f.g.h `abc` : any 24 >`abc` : "abc" 26 f.g.h `abc${1}def${2}ghi`; [all …]
|
D | taggedTemplateStringsWithTagsTypedAsAny.types | 5 f `abc` 6 >f `abc` : any 8 >`abc` : "abc" 10 f `abc${1}def${2}ghi`; 11 >f `abc${1}def${2}ghi` : any 13 >`abc${1}def${2}ghi` : string 17 f.g.h `abc` 18 >f.g.h `abc` : any 24 >`abc` : "abc" 26 f.g.h `abc${1}def${2}ghi`; [all …]
|
D | taggedTemplateStringsWithIncompatibleTypedTagsES6.types | 27 f `abc` 28 >f `abc` : I 30 >`abc` : "abc" 32 f `abc${1}def${2}ghi`; 33 >f `abc${1}def${2}ghi` : I 35 >`abc${1}def${2}ghi` : string 39 f `abc`.member 40 >f `abc`.member : I 41 >f `abc` : I 43 >`abc` : "abc" [all …]
|
D | taggedTemplateStringsWithIncompatibleTypedTags.types | 27 f `abc` 28 >f `abc` : I 30 >`abc` : "abc" 32 f `abc${1}def${2}ghi`; 33 >f `abc${1}def${2}ghi` : I 35 >`abc${1}def${2}ghi` : string 39 f `abc`.member 40 >f `abc`.member : I 41 >f `abc` : I 43 >`abc` : "abc" [all …]
|
D | taggedTemplateStringsWithTypedTagsES6.types | 27 f `abc` 28 >f `abc` : I 30 >`abc` : "abc" 32 f `abc${1}def${2}ghi`; 33 >f `abc${1}def${2}ghi` : I 35 >`abc${1}def${2}ghi` : string 39 f `abc`.member 40 >f `abc`.member : I 41 >f `abc` : I 43 >`abc` : "abc" [all …]
|
D | taggedTemplateStringsWithTypedTags.types | 27 f `abc` 28 >f `abc` : I 30 >`abc` : "abc" 32 f `abc${1}def${2}ghi`; 33 >f `abc${1}def${2}ghi` : I 35 >`abc${1}def${2}ghi` : string 39 f `abc`.member 40 >f `abc`.member : I 41 >f `abc` : I 43 >`abc` : "abc" [all …]
|
D | nullishCoalescingOperator9.types | 7 let g = f || (abc => { void abc.toLowerCase() }) 9 >f || (abc => { void abc.toLowerCase() }) : (x: string) => void 11 >(abc => { void abc.toLowerCase() }) : (abc: string) => void 12 >abc => { void abc.toLowerCase() } : (abc: string) => void 13 >abc : string 14 >void abc.toLowerCase() : undefined 15 >abc.toLowerCase() : string 16 >abc.toLowerCase : () => string 17 >abc : string 20 let gg = f ?? (abc => { void abc.toLowerCase() }) [all …]
|
D | enumAssignmentCompat3.types | 132 var abc: First.E; 133 >abc : First.E 172 abc = secondAbc; // ok 173 >abc = secondAbc : Abc.E 174 >abc : First.E 177 abc = secondAbcd; // missing 'd' 178 >abc = secondAbcd : Abcd.E 179 >abc : First.E 182 abc = secondAb; // ok 183 >abc = secondAb : Ab.E [all …]
|
D | enumAssignmentCompat3.js | 58 var abc: First.E; 68 abc = secondAbc; // ok 69 abc = secondAbcd; // missing 'd' 70 abc = secondAb; // ok 71 abc = secondCd; // missing 'd' 72 abc = nope; // nope! 73 abc = decl; // ok 74 secondAbc = abc; // ok 75 secondAbcd = abc; // ok 76 secondAb = abc; // missing 'c' [all …]
|
D | stringLiteralTypesWithVariousOperators01.types | 2 let abc: "ABC" = "ABC"; 3 >abc : "ABC" 10 let abcOrXyz: "ABC" | "XYZ" = abc || xyz; 12 >abc || xyz : "ABC" | "XYZ" 13 >abc : "ABC" 22 let a = "" + abc; 24 >"" + abc : string 26 >abc : "ABC" 28 let b = abc + ""; 30 >abc + "" : string [all …]
|
D | stringLiteralTypesWithVariousOperators01.js | 2 let abc: "ABC" = "ABC"; variable 4 let abcOrXyz: "ABC" | "XYZ" = abc || xyz; 7 let a = "" + abc; 8 let b = abc + ""; 9 let c = 10 + abc; 10 let d = abc + 10; 11 let e = xyz + abc; 12 let f = abc + xyz; 13 let g = true + abc; 14 let h = abc + true; [all …]
|
D | switchCaseNarrowsMatchingClausesEvenWhenNonMatchingClausesExist.types | 3 >narrowToLiterals : (str: string) => "abc" | "defaultValue" 4 …ase 'abc': { // inferred type as `abc` return str; } default: retur… 10 case 'abc': { 11 >'abc' : "abc" 13 // inferred type as `abc` 15 >str : "abc" 25 …eOtherStr: string) => { switch (str) { case 'abc': { // inferred type should be `ab… 32 case 'abc': { 33 >'abc' : "abc" 35 // inferred type should be `abc` [all …]
|
D | readonlyRestParameters.types | 36 f1('abc', 'def'); 37 >f1('abc', 'def') : void 39 >'abc' : "abc" 42 f1('abc', ...args); 43 >f1('abc', ...args) : void 45 >'abc' : "abc" 66 f1('abc', 'def'); 67 >f1('abc', 'def') : void 69 >'abc' : "abc" 72 f1('abc', ...args); [all …]
|
/third_party/uboot/u-boot-2020.01/common/ |
D | android_ab.c | 23 static uint32_t ab_control_compute_crc(struct bootloader_control *abc) in ab_control_compute_crc() argument 25 return crc32(0, (void *)abc, offsetof(typeof(*abc), crc32_le)); in ab_control_compute_crc() 39 static int ab_control_default(struct bootloader_control *abc) in ab_control_default() argument 50 if (!abc) in ab_control_default() 53 memcpy(abc->slot_suffix, "a\0\0\0", 4); in ab_control_default() 54 abc->magic = BOOT_CTRL_MAGIC; in ab_control_default() 55 abc->version = BOOT_CTRL_VERSION; in ab_control_default() 56 abc->nb_slot = NUM_SLOTS; in ab_control_default() 57 memset(abc->reserved0, 0, sizeof(abc->reserved0)); in ab_control_default() 58 for (i = 0; i < abc->nb_slot; ++i) in ab_control_default() [all …]
|
/third_party/grpc/src/python/grpcio_testing/grpc_testing/ |
D | __init__.py | 16 import abc 24 class UnaryUnaryChannelRpc(six.with_metaclass(abc.ABCMeta)): 30 @abc.abstractmethod 40 @abc.abstractmethod 45 @abc.abstractmethod 58 class UnaryStreamChannelRpc(six.with_metaclass(abc.ABCMeta)): 64 @abc.abstractmethod 74 @abc.abstractmethod 83 @abc.abstractmethod 88 @abc.abstractmethod [all …]
|
D | _common.py | 16 import abc 59 class ChannelRpcHandler(six.with_metaclass(abc.ABCMeta)): 61 @abc.abstractmethod 65 @abc.abstractmethod 69 @abc.abstractmethod 73 @abc.abstractmethod 77 @abc.abstractmethod 81 @abc.abstractmethod 85 @abc.abstractmethod 89 @abc.abstractmethod [all …]
|
/third_party/grpc/src/python/grpcio/grpc/framework/interfaces/face/ |
D | face.py | 16 import abc 94 class AbortionError(six.with_metaclass(abc.ABCMeta, Exception)): 147 class RpcContext(six.with_metaclass(abc.ABCMeta)): 150 @abc.abstractmethod 155 @abc.abstractmethod 166 @abc.abstractmethod 176 @abc.abstractmethod 184 @abc.abstractmethod 195 class Call(six.with_metaclass(abc.ABCMeta, RpcContext)): 198 @abc.abstractmethod [all …]
|
/third_party/grpc/src/python/grpcio_tests/tests/unit/framework/common/ |
D | test_coverage.py | 16 import abc 24 class Coverage(six.with_metaclass(abc.ABCMeta)): 27 @abc.abstractmethod 31 @abc.abstractmethod 35 @abc.abstractmethod 39 @abc.abstractmethod 43 @abc.abstractmethod 47 @abc.abstractmethod 51 @abc.abstractmethod 55 @abc.abstractmethod [all …]
|
/third_party/grpc/src/python/grpcio/grpc/aio/ |
D | _base_server.py | 16 import abc 25 class Server(abc.ABC): 28 @abc.abstractmethod 41 @abc.abstractmethod 58 @abc.abstractmethod 78 @abc.abstractmethod 85 @abc.abstractmethod 109 @abc.abstractmethod 134 class ServicerContext(Generic[RequestType, ResponseType], abc.ABC): 137 @abc.abstractmethod [all …]
|
/third_party/grpc/src/python/grpcio/grpc/experimental/aio/ |
D | _base_server.py | 16 import abc 25 class Server(abc.ABC): 28 @abc.abstractmethod 41 @abc.abstractmethod 58 @abc.abstractmethod 78 @abc.abstractmethod 85 @abc.abstractmethod 109 @abc.abstractmethod 134 class ServicerContext(Generic[RequestType, ResponseType], abc.ABC): 137 @abc.abstractmethod [all …]
|
/third_party/grpc/src/python/grpcio/grpc/ |
D | __init__.py | 16 import abc 44 class Future(six.with_metaclass(abc.ABCMeta)): 51 @abc.abstractmethod 70 @abc.abstractmethod 88 @abc.abstractmethod 102 @abc.abstractmethod 117 @abc.abstractmethod 140 @abc.abstractmethod 162 @abc.abstractmethod 184 @abc.abstractmethod [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | enumAssignmentCompat3.ts | 57 var abc: First.E; variable 67 abc = secondAbc; // ok 68 abc = secondAbcd; // missing 'd' 69 abc = secondAb; // ok 70 abc = secondCd; // missing 'd' 71 abc = nope; // nope! 72 abc = decl; // ok 73 secondAbc = abc; // ok 74 secondAbcd = abc; // ok 75 secondAb = abc; // missing 'c' [all …]
|
/third_party/grpc/src/python/grpcio/grpc/framework/interfaces/base/ |
D | base.py | 25 import abc 87 class Completion(six.with_metaclass(abc.ABCMeta)): 97 class OperationContext(six.with_metaclass(abc.ABCMeta)): 100 @abc.abstractmethod 110 @abc.abstractmethod 126 @abc.abstractmethod 137 @abc.abstractmethod 142 @abc.abstractmethod 152 class Operator(six.with_metaclass(abc.ABCMeta)): 155 @abc.abstractmethod [all …]
|