/third_party/typescript/tests/baselines/reference/ |
D | collisionExportsRequireAndModule.js | 101 var C = /** @class */ (function () { class 102 function C() { class in anonymousFunction860d2a6f0100.anonymousFunction860d2a6f0200.C 114 var C = /** @class */ (function () { class 115 function C() { class in anonymousFunction860d2a6f0100.anonymousFunction860d2a6f0500.C 129 var C = /** @class */ (function () { class 130 function C() { class in anonymousFunction860d2a6f0100.anonymousFunction860d2a6f0800.anonymousFunction860d2a6f0900.C 138 var C = /** @class */ (function () { class 139 function C() { class in anonymousFunction860d2a6f0100.anonymousFunction860d2a6f0800.anonymousFunction860d2a6f0c00.C 150 var C = /** @class */ (function () { class 151 function C() { class in anonymousFunction860d2a6f0100.anonymousFunction860d2a6f1000.anonymousFunction860d2a6f1100.C [all …]
|
D | localTypes1.js | 43 class C { class 128 class C extends B { class 166 var C = /** @class */ (function () { class 167 function C() { class in f1.C 183 var C = /** @class */ (function () { class 184 function C() { class in f2.g.C 204 function C() { class in f3.C 232 var C = /** @class */ (function () { class 233 function C() { class in f5.z1.C 246 var C = /** @class */ (function () { class [all …]
|
D | localTypes3.js | 4 class C<X, Y> { class 17 class C<Y> { class 31 class C { class 48 function C(x, y) { class in f1.f.C 63 var C = /** @class */ (function () { class 64 function C(y) { class in f2.f.C 79 var C = /** @class */ (function () { class 80 function C() { class in f3.f.C
|
D | staticMemberAssignsToConstructorFunctionMembers.js | 2 class C { class 8 C.bar = () => { } // error field in C 9 C.bar = (x) => x; // ok field in C 10 C.bar = (x: number) => 1; // ok field in C 17 function C() { class in C
|
/third_party/typescript/tests/cases/compiler/ |
D | collisionExportsRequireAndModule.ts | 6 export class C { class 15 export class C { class 25 export class C { class 31 export class C { class 39 export class C { class 45 export class C { class 54 export class C { class 60 export class C { class 67 export class C { class 73 export class C { class [all …]
|
D | collisionExportsRequireAndAmbientModule.ts | 6 export class C { class 15 export class C { class 25 export class C { class 31 export class C { class 39 export class C { class 45 export class C { class 55 export class C { class 61 export class C { class 68 export class C { class 74 export class C { class [all …]
|
/third_party/boost/libs/function_types/test/classification/ |
D | is_cv_function.cpp | 15 void test_non_cv(T C::*) in test_non_cv() 43 void test_c_non_v(T C::*) in test_c_non_v() 71 void test_v_non_c(T C::*) in test_v_non_c() 99 void test_cv(T C::*) in test_cv() 127 struct C struct 137 test_non_cv(& C::non_cv); in instanitate() argument
|
/third_party/boost/libs/function_types/test/synthesis/ |
D | cv_function_synthesis.cpp | 18 void test_non_cv(T C::*) in test_non_cv() 72 void test_c_non_v(T C::*) in test_c_non_v() 126 void test_v_non_c(T C::*) in test_v_non_c() 180 void test_cv(T C::*) in test_cv() 234 struct C struct 244 test_non_cv(& C::non_cv); in instanitate() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | SwapByteOrder.h | 72 inline unsigned char getSwappedBytes(unsigned char C) { return C; } in getSwappedBytes() 73 inline signed char getSwappedBytes(signed char C) { return C; } in getSwappedBytes() 74 inline char getSwappedBytes(char C) { return C; } in getSwappedBytes() 76 inline unsigned short getSwappedBytes(unsigned short C) { return SwapByteOrder_16(C); } in getSwappedBytes() 77 inline signed short getSwappedBytes( signed short C) { return SwapByteOrder_16(C); } in getSwappedBytes() 79 inline unsigned int getSwappedBytes(unsigned int C) { return SwapByteOrder_32(C); } in getSwappedBytes() 80 inline signed int getSwappedBytes( signed int C) { return SwapByteOrder_32(C); } in getSwappedBytes() 83 inline unsigned long getSwappedBytes(unsigned long C) { return SwapByteOrder_32(C); } in getSwappedBytes() 84 inline signed long getSwappedBytes( signed long C) { return SwapByteOrder_32(C); } in getSwappedBytes() 86 inline unsigned long getSwappedBytes(unsigned long C) { return SwapByteOrder_64(C); } in getSwappedBytes() [all …]
|
/third_party/boost/boost/graph/detail/ |
D | set_adaptor.hpp | 16 bool set_contains(const std::set< K, C, A >& s, const T& x) in set_contains() argument 22 bool set_contains(const boost::unordered_set< K, H, C, A >& s, const T& x) in set_contains() argument 28 bool set_equal(const std::set< K, C, A >& x, const std::set< K, C, A >& y) in set_equal() argument 36 int set_lex_order(const std::set< K, C, A >& x, const std::set< K, C, A >& y) in set_lex_order() argument 53 template < class K, class C, class A > void set_clear(std::set< K, C, A >& x) in set_clear() argument 59 bool set_empty(const std::set< K, C, A >& x) in set_empty() argument 65 void set_insert(std::set< K, C, A >& x, const T& a) in set_insert() argument 71 void set_remove(std::set< K, C, A >& x, const T& a) in set_remove() argument 77 void set_intersect(const std::set< K, C, A >& x, const std::set< K, C, A >& y, in set_intersect() argument 86 void set_union(const std::set< K, C, A >& x, const std::set< K, C, A >& y, in set_union() argument [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | SwapByteOrder.h | 98 inline unsigned char getSwappedBytes(unsigned char C) { return C; } in getSwappedBytes() 99 inline signed char getSwappedBytes(signed char C) { return C; } in getSwappedBytes() 100 inline char getSwappedBytes(char C) { return C; } in getSwappedBytes() 102 inline unsigned short getSwappedBytes(unsigned short C) { return SwapByteOrder_16(C); } in getSwappedBytes() 103 inline signed short getSwappedBytes( signed short C) { return SwapByteOrder_16(C); } in getSwappedBytes() 105 inline unsigned int getSwappedBytes(unsigned int C) { return SwapByteOrder_32(C); } in getSwappedBytes() 106 inline signed int getSwappedBytes( signed int C) { return SwapByteOrder_32(C); } in getSwappedBytes() 109 inline unsigned long getSwappedBytes(unsigned long C) { return SwapByteOrder_32(C); } in getSwappedBytes() 110 inline signed long getSwappedBytes( signed long C) { return SwapByteOrder_32(C); } in getSwappedBytes() 112 inline unsigned long getSwappedBytes(unsigned long C) { return SwapByteOrder_64(C); } in getSwappedBytes() [all …]
|
D | DataExtractor.h | 37 inline uint24_t getSwappedBytes(uint24_t C) { in getSwappedBytes() 180 uint64_t getUnsigned(Cursor &C, uint32_t Size) const { in getUnsigned() 233 uint64_t getAddress(Cursor &C) const { return getUnsigned(C, AddressSize); } in getAddress() 260 uint8_t getU8(Cursor &C) const { return getU8(&C.Offset, &C.Err); } in getU8() 298 void getU8(Cursor &C, SmallVectorImpl<uint8_t> &Dst, uint32_t Count) const { in getU8() 334 uint16_t getU16(Cursor &C) const { return getU16(&C.Offset, &C.Err); } in getU16() 403 uint32_t getU32(Cursor &C) const { return getU32(&C.Offset, &C.Err); } in getU32() 455 uint64_t getU64(Cursor &C) const { return getU64(&C.Offset, &C.Err); } in getU64() 527 uint64_t getULEB128(Cursor &C) const { return getULEB128(&C.Offset, &C.Err); } in getULEB128() 537 bool eof(const Cursor &C) const { return size() == C.Offset; } in eof() [all …]
|
/third_party/boost/libs/parameter/test/ |
D | preprocessor_eval_cat_8.cpp | 57 struct C struct 67 > bs0_pred; 72 > bs1_pred; 77 > bs2_pred; 82 > bs3_pred; 87 > bs4_pred; 92 > bs5_pred; 97 > bs6_pred; 102 > bs7_pred;
|
/third_party/python/Lib/test/ |
D | test_dataclasses.py | 28 class C: class 36 class C: class 44 class C: class 54 class C: class 72 class C: class 80 class C: class 92 class C: class 105 class C(B): class 119 class C(B): class 126 class C: class [all …]
|
/third_party/boost/boost/serialization/ |
D | collection_traits.hpp | 33 #define BOOST_SERIALIZATION_COLLECTION_TRAITS_HELPER(T, C) \ argument 43 #define BOOST_SERIALIZATION_COLLECTION_TRAITS_HELPER_WCHAR(C) argument 45 #define BOOST_SERIALIZATION_COLLECTION_TRAITS_HELPER_WCHAR(C) \ argument 51 #define BOOST_SERIALIZATION_COLLECTION_TRAITS_HELPER_INT64(C) \ argument 56 #define BOOST_SERIALIZATION_COLLECTION_TRAITS_HELPER_INT64(C) argument 59 #define BOOST_SERIALIZATION_COLLECTION_TRAITS(C) \ argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/RPC/ |
D | RPCSerialization.h | 248 static Error emitSeparator(ChannelT &C) { return Error::success(); } in emitSeparator() 249 static Error consumeSeparator(ChannelT &C) { return Error::success(); } in consumeSeparator() 267 static Error serialize(ChannelT &C) { return Error::success(); } in serialize() 268 static Error deserialize(ChannelT &C) { return Error::success(); } in deserialize() 276 static Error serialize(ChannelT &C, CArgT &&CArg) { in serialize() 283 static Error deserialize(ChannelT &C, CArgT &CArg) { in deserialize() 293 static Error serialize(ChannelT &C, CArgT &&CArg, in serialize() 306 static Error deserialize(ChannelT &C, CArgT &CArg, in deserialize() 318 Error serializeSeq(ChannelT &C, ArgTs &&... Args) { in serializeSeq() 324 Error deserializeSeq(ChannelT &C, ArgTs &... Args) { in deserializeSeq() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/MIRParser/ |
D | MILexer.cpp | 90 static Cursor skipWhitespace(Cursor C) { in skipWhitespace() 96 static bool isNewlineChar(char C) { return C == '\n' || C == '\r'; } in isNewlineChar() 99 static Cursor skipComment(Cursor C) { in skipComment() 109 static bool isIdentifierChar(char C) { in isIdentifierChar() 119 Cursor C = Cursor(Value.substr(1, Value.size() - 2)); in unescapeQuotedString() local 145 static Cursor lexStringConstant(Cursor C, ErrorCallbackType ErrorCallback) { in lexStringConstant() 159 static Cursor lexName(Cursor C, MIToken &Token, MIToken::TokenKind Type, in lexName() 261 static Cursor maybeLexIdentifier(Cursor C, MIToken &Token) { in maybeLexIdentifier() 273 static Cursor maybeLexMachineBasicBlock(Cursor C, MIToken &Token, in maybeLexMachineBasicBlock() 308 static Cursor maybeLexIndex(Cursor C, MIToken &Token, StringRef Rule, in maybeLexIndex() [all …]
|
/third_party/skia/tests/ |
D | SkTBlockListTest.cpp | 12 struct C { struct 13 C() : fID(-1) { ++gInstCnt; } in C() argument 14 C(int id) : fID(id) { ++gInstCnt; } in C() argument 15 C(C&& c) : C(c.fID) {} in C() function 16 C(const C& c) : C(c.fID) {} in C() function 21 ~C() { --gInstCnt; } in ~C() 23 int fID; 28 int fPadding[4]; 30 static int gInstCnt; 43 static size_t ScratchBlockSize(SkTBlockList<C, N>& list) { in ScratchBlockSize() [all …]
|
/third_party/boost/boost/type_traits/detail/ |
D | bool_trait_def.hpp | 48 # define BOOST_TT_AUX_BOOL_TRAIT_VALUE_DECL(C) /**/ argument 52 # define BOOST_TT_AUX_BOOL_C_BASE(C) : public ::boost::integral_constant<bool,C> argument 56 #define BOOST_TT_AUX_BOOL_TRAIT_DEF1(trait,T,C) \ argument 68 #define BOOST_TT_AUX_BOOL_TRAIT_DEF2(trait,T1,T2,C) \ argument 79 #define BOOST_TT_AUX_BOOL_TRAIT_DEF3(trait,T1,T2,T3,C) \ argument 90 #define BOOST_TT_AUX_BOOL_TRAIT_SPEC1(trait,sp,C) \ argument 99 #define BOOST_TT_AUX_BOOL_TRAIT_SPEC2(trait,sp1,sp2,C) \ argument 108 #define BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(trait,sp,C) \ argument 116 #define BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC2(trait,sp1,sp2,C) \ argument 124 #define BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(param,trait,sp,C) \ argument [all …]
|
/third_party/boost/boost/mpl/aux_/ |
D | value_wknd.hpp | 44 # define BOOST_MPL_AUX_VALUE_WKND(C) \ argument 47 # define BOOST_MPL_AUX_MSVC_VALUE_WKND(C) BOOST_MPL_AUX_VALUE_WKND(C) argument 49 # define BOOST_MPL_AUX_VALUE_WKND(C) C argument 50 # define BOOST_MPL_AUX_MSVC_VALUE_WKND(C) \ argument 57 # define BOOST_MPL_AUX_VALUE_WKND(C) C argument 58 # define BOOST_MPL_AUX_MSVC_VALUE_WKND(C) C argument 63 # define BOOST_MPL_AUX_NESTED_VALUE_WKND(T, C) \ argument 67 # define BOOST_MPL_AUX_NESTED_VALUE_WKND(T, C) \ argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | ConstantFolder.h | 129 Constant *CreateFNeg(Constant *C) const { in CreateFNeg() 133 Constant *CreateNot(Constant *C) const { in CreateNot() 137 Constant *CreateUnOp(Instruction::UnaryOps Opc, Constant *C) const { in CreateUnOp() 145 Constant *CreateGetElementPtr(Type *Ty, Constant *C, in CreateGetElementPtr() 150 Constant *CreateGetElementPtr(Type *Ty, Constant *C, Constant *Idx) const { in CreateGetElementPtr() 157 Constant *CreateGetElementPtr(Type *Ty, Constant *C, in CreateGetElementPtr() 162 Constant *CreateInBoundsGetElementPtr(Type *Ty, Constant *C, in CreateInBoundsGetElementPtr() 167 Constant *CreateInBoundsGetElementPtr(Type *Ty, Constant *C, in CreateInBoundsGetElementPtr() 175 Constant *CreateInBoundsGetElementPtr(Type *Ty, Constant *C, in CreateInBoundsGetElementPtr() 184 Constant *CreateCast(Instruction::CastOps Op, Constant *C, in CreateCast() [all …]
|
D | NoFolder.h | 190 Instruction *CreateNSWNeg(Constant *C) const { in CreateNSWNeg() 194 Instruction *CreateNUWNeg(Constant *C) const { in CreateNUWNeg() 198 Instruction *CreateFNeg(Constant *C) const { in CreateFNeg() 202 Instruction *CreateNot(Constant *C) const { in CreateNot() 206 Instruction *CreateUnOp(Instruction::UnaryOps Opc, Constant *C) const { in CreateUnOp() 214 Constant *CreateGetElementPtr(Type *Ty, Constant *C, in CreateGetElementPtr() 219 Constant *CreateGetElementPtr(Type *Ty, Constant *C, Constant *Idx) const { in CreateGetElementPtr() 226 Instruction *CreateGetElementPtr(Type *Ty, Constant *C, in CreateGetElementPtr() 231 Constant *CreateInBoundsGetElementPtr(Type *Ty, Constant *C, in CreateInBoundsGetElementPtr() 236 Constant *CreateInBoundsGetElementPtr(Type *Ty, Constant *C, in CreateInBoundsGetElementPtr() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | TargetFolder.h | 35 Constant *Fold(Constant *C) const { in Fold() 120 Constant *CreateFNeg(Constant *C) const { in CreateFNeg() 123 Constant *CreateNot(Constant *C) const { in CreateNot() 127 Constant *CreateUnOp(Instruction::UnaryOps Opc, Constant *C) const { in CreateUnOp() 135 Constant *CreateGetElementPtr(Type *Ty, Constant *C, in CreateGetElementPtr() 139 Constant *CreateGetElementPtr(Type *Ty, Constant *C, Constant *Idx) const { in CreateGetElementPtr() 145 Constant *CreateGetElementPtr(Type *Ty, Constant *C, in CreateGetElementPtr() 150 Constant *CreateInBoundsGetElementPtr(Type *Ty, Constant *C, in CreateInBoundsGetElementPtr() 154 Constant *CreateInBoundsGetElementPtr(Type *Ty, Constant *C, in CreateInBoundsGetElementPtr() 161 Constant *CreateInBoundsGetElementPtr(Type *Ty, Constant *C, in CreateInBoundsGetElementPtr() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Type.cpp | 39 Type *Type::getPrimitiveType(LLVMContext &C, TypeID IDNumber) { in getPrimitiveType() 165 Type *Type::getVoidTy(LLVMContext &C) { return &C.pImpl->VoidTy; } in getVoidTy() 166 Type *Type::getLabelTy(LLVMContext &C) { return &C.pImpl->LabelTy; } in getLabelTy() 167 Type *Type::getHalfTy(LLVMContext &C) { return &C.pImpl->HalfTy; } in getHalfTy() 168 Type *Type::getFloatTy(LLVMContext &C) { return &C.pImpl->FloatTy; } in getFloatTy() 169 Type *Type::getDoubleTy(LLVMContext &C) { return &C.pImpl->DoubleTy; } in getDoubleTy() 170 Type *Type::getMetadataTy(LLVMContext &C) { return &C.pImpl->MetadataTy; } in getMetadataTy() 171 Type *Type::getTokenTy(LLVMContext &C) { return &C.pImpl->TokenTy; } in getTokenTy() 172 Type *Type::getX86_FP80Ty(LLVMContext &C) { return &C.pImpl->X86_FP80Ty; } in getX86_FP80Ty() 173 Type *Type::getFP128Ty(LLVMContext &C) { return &C.pImpl->FP128Ty; } in getFP128Ty() [all …]
|
/third_party/flutter/skia/tests/ |
D | GrAllocatorTest.cpp | 12 struct C { struct 13 C() : fID(-1) { ++gInstCnt; } in C() function 14 C(int id) : fID(id) { ++gInstCnt; } in C() argument 15 ~C() { --gInstCnt; } in ~C() 16 int fID; 18 static int gInstCnt;
|