/third_party/typescript/tests/cases/conformance/interfaces/declarationMerging/ |
D | twoGenericInterfacesWithTheSameNameButDifferentArity.ts | 1 interface A<T> { interface 5 interface A<T, U> { // error interface 10 interface A<T> { interface 14 interface A<T, U> { // error interface 20 interface A<T> { interface 26 interface A<T, U> { // ok, different declaration space than other M2 interface 32 export interface A<T> { interface 38 export interface A<T, U> { // error interface
|
D | genericAndNonGenericInterfaceWithTheSameName.ts | 3 interface A { interface 7 interface A<T> { // error interface 12 interface A<T> { interface 16 interface A { // error interface 22 interface A { interface 28 interface A<T> { // ok, different declaration space than other M2 interface 34 export interface A { interface 40 export interface A<T> { // error interface
|
D | mergedInterfacesWithConflictingPropertyNames2.ts | 1 interface A { interface 5 interface A { interface 10 interface A<T> { interface 14 interface A<T> { interface 20 interface A<T> { interface 26 interface A<T> { interface 32 export interface A<T> { interface 38 export interface A<T> { interface
|
D | mergedInterfacesWithConflictingPropertyNames.ts | 1 interface A { interface 5 interface A { interface 10 interface A<T> { interface 14 interface A<T> { interface 20 interface A<T> { interface 26 interface A<T> { interface 32 export interface A<T> { interface 38 export interface A<T> { interface
|
D | twoGenericInterfacesWithDifferentConstraints.ts | 1 interface A<T extends Date> { interface 5 interface A<T extends Number> { // error interface 20 interface A<T extends Date> { interface 26 interface A<T extends Number> { // ok, different declaration space from other M2.A interface 32 export interface A<T extends Date> { interface 38 export interface A<T extends Number> { // error interface
|
D | genericAndNonGenericInterfaceWithTheSameName2.ts | 4 interface A<T> { interface 10 interface A { // ok interface 17 interface A<T> { interface 23 interface A { // ok interface
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/ |
D | bitfield_align.h | 1 struct A { struct 2 unsigned char x; 3 unsigned b1 : 1; 4 unsigned b2 : 1; 5 unsigned b3 : 1; 6 unsigned b4 : 1; 7 unsigned b5 : 1; 8 unsigned b6 : 1; 9 unsigned b7 : 1; 10 unsigned b8 : 1; [all …]
|
D | no_size_t_is_usize.h | 6 struct A { struct 9 struct A* next; argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
D | RelocationResolver.cpp | 42 static uint64_t resolveX86_64(RelocationRef R, uint64_t S, uint64_t A) { in resolveX86_64() 71 static uint64_t resolveAArch64(RelocationRef R, uint64_t S, uint64_t A) { in resolveAArch64() 92 static uint64_t resolveBPF(RelocationRef R, uint64_t S, uint64_t A) { in resolveBPF() 115 static uint64_t resolveMips64(RelocationRef R, uint64_t S, uint64_t A) { in resolveMips64() 140 static uint64_t resolvePPC64(RelocationRef R, uint64_t S, uint64_t A) { in resolvePPC64() 161 static uint64_t resolveSystemZ(RelocationRef R, uint64_t S, uint64_t A) { in resolveSystemZ() 184 static uint64_t resolveSparc64(RelocationRef R, uint64_t S, uint64_t A) { in resolveSparc64() 206 static uint64_t resolveAmdgpu(RelocationRef R, uint64_t S, uint64_t A) { in resolveAmdgpu() 227 static uint64_t resolveX86(RelocationRef R, uint64_t S, uint64_t A) { in resolveX86() 244 static uint64_t resolvePPC32(RelocationRef R, uint64_t S, uint64_t A) { in resolvePPC32() [all …]
|
/third_party/typescript/tests/cases/conformance/enums/ |
D | enumClassification.ts | 13 15 A = 123 enumerator 19 A = "hello" enumerator 23 A, enumerator 29 A, enumerator 35 A = "one", enumerator 41 A, enumerator 50 A = 10, enumerator 62 A = +0, enumerator 68 A = 1 << 0, enumerator
|
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/ |
D | fast_type_id_test.cc | 27 #define PRIM_TYPES(A) \ argument 43 #define A(T) bi::FastTypeId<T>(), in TEST() macro 46 #define A(T) bi::FastTypeId<const T>(), in TEST() macro 49 #define A(T) bi::FastTypeId<volatile T>(), in TEST() macro 52 #define A(T) bi::FastTypeId<const volatile T>(), in TEST() macro 66 #define FIXED_WIDTH_TYPES(A) \ argument 78 #define A(T) bi::FastTypeId<T>(), in TEST() macro 81 #define A(T) bi::FastTypeId<const T>(), in TEST() macro 84 #define A(T) bi::FastTypeId<volatile T>(), in TEST() macro 87 #define A(T) bi::FastTypeId<const volatile T>(), in TEST() macro
|
/third_party/protobuf/src/google/protobuf/stubs/ |
D | logging.h | 155 #define GOOGLE_CHECK_OK(A) GOOGLE_CHECK(::google::protobuf::internal::IsOk(A)) argument 156 #define GOOGLE_CHECK_EQ(A, B) GOOGLE_CHECK((A) == (B)) argument 157 #define GOOGLE_CHECK_NE(A, B) GOOGLE_CHECK((A) != (B)) argument 158 #define GOOGLE_CHECK_LT(A, B) GOOGLE_CHECK((A) < (B)) argument 159 #define GOOGLE_CHECK_LE(A, B) GOOGLE_CHECK((A) <= (B)) argument 160 #define GOOGLE_CHECK_GT(A, B) GOOGLE_CHECK((A) > (B)) argument 161 #define GOOGLE_CHECK_GE(A, B) GOOGLE_CHECK((A) >= (B)) argument 173 #define GOOGLE_CHECK_NOTNULL(A) \ argument 183 #define GOOGLE_DCHECK_EQ(A, B) GOOGLE_DCHECK((A) == (B)) argument 184 #define GOOGLE_DCHECK_NE(A, B) GOOGLE_DCHECK((A) != (B)) argument [all …]
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
D | objc_escape.rs | 14 pub struct A(pub id); struct 15 impl std::ops::Deref for A { implementation 21 unsafe impl objc::Message for A {} implementation 22 impl A { implementation 27 impl IA for A {} implementation
|
D | no_size_t_is_usize.rs | 12 pub struct A { struct 15 pub next: *mut A, argument 48 impl Default for A { implementation
|
/third_party/libabigail/tests/data/test-read-ctf/ |
D | test-ambiguous-struct-A.c | 3 struct A { struct B b; long foo; long bar; struct B b2; }; argument
|
/third_party/typescript/tests/baselines/reference/ |
D | unexportedInstanceClassVariables.js | 3 class A{ class 18 var A = /** @class */ (function () { class 19 function A(val) { class in anonymousFunctionf96d54490100.A 25 var A = /** @class */ (function () { class 26 function A() { class in anonymousFunctionf96d54490400.A
|
D | genericMemberFunction.js | 3 public parent<A, B extends A, C>(): FileWithErrors<A, B, C> { property in BuildError 8 public errors<A, B extends A, C>(): BuildError<A, B, C>[] { property in FileWithErrors
|
D | overloadedStaticMethodSpecialization.js | 2 class A<T> { class 3 static B<S>(v: A<S>): A<S>; field in A 4 static B<S>(v: S): A<S>; field in A 5 static B<S>(v: any): A<S> { field in A 13 function A() { class in A
|
D | numericLiteralTypes3.js | 7 function f1(a: A, b: B, c: C, d: D) { 14 function f2(a: A, b: B, c: C, d: D) { 21 function f3(a: A, b: B, c: C, d: D) { 28 function f4(a: A, b: B, c: C, d: D) { 35 function f5(a: A, b: B, c: C, d: D) { 54 function f6(a: A, b: B, c: C, d: D) { 73 function f7(a: A, b: B, c: C, d: D) {
|
D | invalidModuleWithStatementsOfEveryKind.js | 21 class A { s: string } class 100 var A = /** @class */ (function () { class 101 function A() { class in anonymousFunctionff798a4e0600.A 132 var A = /** @class */ (function () { class 133 function A() { class in anonymousFunctionff798a4e0e00.anonymousFunctionff798a4e0f00.A 149 var A = /** @class */ (function () { class 150 function A() { class in anonymousFunctionff798a4e1700.A 181 var A = /** @class */ (function () { class 182 function A() { class in anonymousFunctionff798a4e1f00.anonymousFunctionff798a4e2000.A 198 var A = /** @class */ (function () { class [all …]
|
/third_party/ffmpeg/libavutil/arm/ |
D | asm.S | 30 # define A @ macro 33 # define A macro 184 A ldr \rd, [pc, \rd] label 242 A add \rd, \rn, \rm, \sh label 248 A ldr \rt, [\rn, \rm]! label 254 A ldr \rt, [\rn, -\rm]! label 260 A ldr \rt, [\rn, -\rm] label 266 A ldr \rt, [\rn], \rm label 272 A ldr\cc \rt, [\rn, \rm]! label 279 A ldrd \rt, \rt2, [\rn, \rm] label [all …]
|
/third_party/typescript/tests/cases/conformance/jsdoc/declarations/ |
D | jsDeclarationsEnums.ts | 11 export enum A {} enum 32 A = 1, enumerator 38 A = "a", enumerator 43 A = "a", enumerator 49 A = 1, enumerator 56 A = 1 << 0, enumerator 64 A = 1 << 0, enumerator
|
/third_party/typescript/tests/baselines/reference/extractFunction/ |
D | extractFunction4.ts | 2 namespace A { namespace 17 namespace A { namespace 36 namespace A { namespace 55 namespace A { namespace 74 namespace A { namespace
|
D | extractFunction3.ts | 2 namespace A { namespace 15 namespace A { namespace 32 namespace A { namespace 49 namespace A { namespace 66 namespace A { namespace
|
/third_party/googletest/googletest/test/ |
D | googletest-shuffle-test_.cc | 48 class A : public Test {}; class 49 TEST_F(A, A) {} in TEST_F() argument 50 TEST_F(A, B) {} in TEST_F() argument 52 TEST(ADeathTest, A) {} in TEST() argument 56 TEST(B, A) {} in TEST() argument 62 TEST(BDeathTest, A) {} in TEST() argument 65 TEST(C, A) {} in TEST() argument 70 TEST(CDeathTest, A) {} in TEST() argument 72 TEST(DISABLED_D, A) {} in TEST() argument
|