/third_party/typescript/tests/baselines/reference/ |
H A D | mappedTypeNotMistakenlyHomomorphic.js | 2 enum ABC { A, B } 4 type Gen<T extends ABC> = { v: T; } & ( 6 v: ABC.A, 9 v: ABC.B, 16 // type Gen2<T extends ABC> = { 20 type Gen2<T extends ABC> = { 25 const gen2TypeA: Gen2<ABC.A> = { v: "I am A", a: "" }; 26 const gen2TypeB: Gen2<ABC.B> = { v: "I am B", b: "" }; 29 type K = keyof Gen2<ABC.A>; 32 declare let a: Gen2<ABC 39 var ABC; global() variable [all...] |
H A D | stringLiteralTypesWithTemplateStrings01.js | 2 let ABC: "ABC" = `ABC`; 9 var ABC = "ABC";
variable 16 declare let ABC: "ABC";
|
H A D | instanceOfAssignability.js | 82 class ABC { a; b; c; } 84 if(x instanceof ABC) { 188 var ABC = /** @class */ (function () {
189 function ABC() {
191 return ABC;
194 if (x instanceof ABC) {
|
H A 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);
|
H A D | libTypeScriptOverrideSimple.js | 4 interface ABC { abc: string }
7 const a: ABC = { abc: "Hello" }
|
H A D | mixinPrivateAndProtected.js | 38 ABC = mixC(AB); 43 abc = new ABC(), 153 var AB2C = mixC(AB2), ABC = mixC(AB);
154 var a = new A(), ab = new AB(), abc = new ABC(), ab2c = new AB2C();
|
H A D | unionPropertyExistence.js | 20 type ABC = C | AB; 23 var abc: ABC;
|
/third_party/rust/crates/bitflags/src/ |
H A D | lib.rs | 28 //! const ABC = Self::A.bits | Self::B.bits | Self::C.bits; 35 //! assert_eq!((e1 | e2), Flags::ABC); // union 298 /// const ABC = Self::A.bits | Self::B.bits | Self::C.bits; 305 /// assert_eq!((e1 | e2), Flags::ABC); // union 956 const ABC = Self::A.bits | Self::B.bits | Self::C.bits; consts 986 assert_eq!(Flags::ABC.bits(), 0b00000111); in test_bits() 1060 assert!(!Flags::ABC.is_empty()); in test_is_empty() 1072 assert!(Flags::ABC.is_all()); in test_is_all() 1077 assert!((Flags::ABC | extra).is_all()); in test_is_all() 1097 let e2 = Flags::ABC; in test_empty_does_not_intersect_with_full() 1675 const ABC = Self::A.bits | Self::B.bits | Self::C.bits; test_u128_bitflags() consts [all...] |
H A D | example_generated.rs | 12 const ABC = Self::A.bits | Self::B.bits | Self::C.bits; consts
|
/third_party/ltp/tools/sparse/sparse-src/validation/preprocessor/ |
H A D | dump-macros-only.c | 2 #define ABC abc macro 3 #undef ABC macro
|
H A D | dump-macros.c | 1 #define ABC abc macro 2 #undef ABC macro
|
/third_party/rust/crates/bitflags/tests/ |
H A D | basic.rs | 13 const ABC = Flags::A.bits | Flags::B.bits | Flags::C.bits; consts 19 assert_eq!(Flags::ABC, Flags::A | Flags::B | Flags::C); in basic()
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | cstrtest.c | 49 static const char *const abc="abcdefghijklmnopqrstuvwxyz", *const ABC="ABCDEFGHIJKLMNOPQRSTUVWXYZ"; in TestAPI() local 62 dest[i]=uprv_tolower(ABC[i]); in TestAPI() 65 log_err("uprv_tolower(ABC) failed\n"); in TestAPI() 71 if(0!=strcmp(ABC, dest)) { in TestAPI() 76 dest[i]=uprv_toupper(ABC[i]); in TestAPI() 78 if(0!=strcmp(ABC, dest)) { in TestAPI() 79 log_err("uprv_toupper(ABC) failed\n"); in TestAPI()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/ |
H A D | base_printer.py | 9 from abc import ABC, abstractmethod namespace 33 class BasePrinter(ABC):
|
H A D | entity_db.py | 9 from abc import ABC, abstractmethod namespace 25 class EntityDatabase(ABC):
|
H A D | conventions.py | 76 class ConventionsBase(abc.ABC):
|
/third_party/python/Lib/test/ |
H A D | test_typechecks.py | 6 class ABC(type): class 19 class Integer(metaclass=ABC):
|
/third_party/python/Lib/importlib/resources/ |
H A D | simple.py | 13 class SimpleReader(abc.ABC):
|
/third_party/python/Lib/ |
H A D | abc.py | 33 class C(ABC): 53 class C(ABC): 73 class C(ABC): 95 Use this metaclass to create an ABC. An ABC can be subclassed 99 be considered subclasses of the registering ABC by the built-in 100 issubclass() function, but the registering ABC won't show up in 102 implementations defined by the registering ABC be callable (not 111 """Register a virtual subclass of an ABC. 126 """Debug helper to print the ABC registr 184 class ABC(metaclass=ABCMeta): global() class [all...] |
H A D | contextlib.py | 17 class AbstractContextManager(abc.ABC): 39 class AbstractAsyncContextManager(abc.ABC):
|
/third_party/ltp/testcases/kernel/controllers/cpuctl_fj/ |
H A D | run_cpuctl_test_fj.sh | 527 ./cpuctl_fj_simple_echo 2048ABC $CPUCTL/tmp/cpu.shares 555 ./cpuctl_fj_simple_echo ABC $CPUCTL/tmp/cpu.shares
|
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/ |
H A D | SetupRoutine.cpp | 383 Float4 ABC = M[0] + M[1] + M[2]; in generate() local 385 Float4 A = ABC.x; in generate() 386 Float4 B = ABC.y; in generate() 387 Float4 C = ABC.z; in generate()
|
/third_party/skia/third_party/externals/swiftshader/src/Shader/ |
H A D | SetupRoutine.cpp | 391 Float4 ABC = M[0] + M[1] + M[2]; in generate() local 393 Float4 A = ABC.x; in generate() 394 Float4 B = ABC.y; in generate() 395 Float4 C = ABC.z; in generate()
|
/third_party/vulkan-headers/registry/spec_tools/ |
H A D | conventions.py | 76 class ConventionsBase(abc.ABC):
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-uniscribe.cc | 110 ABC *pABC 191 ABC *pABC in hb_ScriptPlaceOpenType()
|