Home
last modified time | relevance | path

Searched refs:ABC (Results 1 - 25 of 35) sorted by relevance

12

/third_party/typescript/tests/baselines/reference/
H A DmappedTypeNotMistakenlyHomomorphic.js2 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 DstringLiteralTypesWithTemplateStrings01.js2 let ABC: "ABC" = `ABC`;
9 var ABC = "ABC"; variable
16 declare let ABC: "ABC";
H A DinstanceOfAssignability.js82 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 DmoduleImport.js10 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 DlibTypeScriptOverrideSimple.js4 interface ABC { abc: string }
7 const a: ABC = { abc: "Hello" }
H A DmixinPrivateAndProtected.js38 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 DunionPropertyExistence.js20 type ABC = C | AB;
23 var abc: ABC;
/third_party/rust/crates/bitflags/src/
H A Dlib.rs28 //! 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 Dexample_generated.rs12 const ABC = Self::A.bits | Self::B.bits | Self::C.bits; consts
/third_party/ltp/tools/sparse/sparse-src/validation/preprocessor/
H A Ddump-macros-only.c2 #define ABC abc macro
3 #undef ABC macro
H A Ddump-macros.c1 #define ABC abc macro
2 #undef ABC macro
/third_party/rust/crates/bitflags/tests/
H A Dbasic.rs13 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 Dcstrtest.c49 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 Dbase_printer.py9 from abc import ABC, abstractmethod namespace
33 class BasePrinter(ABC):
H A Dentity_db.py9 from abc import ABC, abstractmethod namespace
25 class EntityDatabase(ABC):
H A Dconventions.py76 class ConventionsBase(abc.ABC):
/third_party/python/Lib/test/
H A Dtest_typechecks.py6 class ABC(type): class
19 class Integer(metaclass=ABC):
/third_party/python/Lib/importlib/resources/
H A Dsimple.py13 class SimpleReader(abc.ABC):
/third_party/python/Lib/
H A Dabc.py33 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 Dcontextlib.py17 class AbstractContextManager(abc.ABC):
39 class AbstractAsyncContextManager(abc.ABC):
/third_party/ltp/testcases/kernel/controllers/cpuctl_fj/
H A Drun_cpuctl_test_fj.sh527 ./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 DSetupRoutine.cpp383 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 DSetupRoutine.cpp391 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 Dconventions.py76 class ConventionsBase(abc.ABC):
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-uniscribe.cc110 ABC *pABC
191 ABC *pABC in hb_ScriptPlaceOpenType()

Completed in 32 milliseconds

12