Home
last modified time | relevance | path

Searched refs:SubClass (Results 1 – 25 of 30) sorted by relevance

12

/third_party/typescript/tests/baselines/reference/
DdestructuringParameterDeclaration5.types11 class SubClass extends Class {
12 >SubClass : SubClass
126 d2({ x: new SubClass() });
127 >d2({ x: new SubClass() }) : void
129 >{ x: new SubClass() } : { x: SubClass; }
130 >x : SubClass
131 >new SubClass() : SubClass
132 >SubClass : typeof SubClass
149 d3({ y: new SubClass() });
150 >d3({ y: new SubClass() }) : void
[all …]
DdestructuringParameterDeclaration5.js9 class SubClass extends Class { class
42 d2({ x: new SubClass() });
46 d3({ y: new SubClass() });
75 var SubClass = /** @class */ (function (_super) {
76 __extends(SubClass, _super);
77 function SubClass() { class in SubClass
80 return SubClass;
116 d2({ x: new SubClass() });
119 d3({ y: new SubClass() });
DgenericBaseClassLiteralProperty.js7 class SubClass extends BaseClass<number> { class
36 var SubClass = /** @class */ (function (_super) {
37 __extends(SubClass, _super);
38 function SubClass() { class in SubClass
41 SubClass.prototype.Error = function () {
45 return SubClass;
DgenericBaseClassLiteralProperty.symbols15 class SubClass extends BaseClass<number> {
16 >SubClass : Symbol(SubClass, Decl(genericBaseClassLiteralProperty.ts, 3, 1))
20 >Error : Symbol(SubClass.Error, Decl(genericBaseClassLiteralProperty.ts, 5, 42))
25 >this : Symbol(SubClass, Decl(genericBaseClassLiteralProperty.ts, 3, 1))
31 >this : Symbol(SubClass, Decl(genericBaseClassLiteralProperty.ts, 3, 1))
DdestructuringParameterDeclaration5.symbols14 class SubClass extends Class {
15 >SubClass : Symbol(SubClass, Decl(destructuringParameterDeclaration5.ts, 5, 1))
19 >foo : Symbol(SubClass.foo, Decl(destructuringParameterDeclaration5.ts, 7, 30))
118 d2({ x: new SubClass() });
121 >SubClass : Symbol(SubClass, Decl(destructuringParameterDeclaration5.ts, 5, 1))
132 d3({ y: new SubClass() });
135 >SubClass : Symbol(SubClass, Decl(destructuringParameterDeclaration5.ts, 5, 1))
DgenericBaseClassLiteralProperty.types12 class SubClass extends BaseClass<number> {
13 >SubClass : SubClass
DquickInfoInheritDoc3.baseline33 "text": "SubClass",
67 "text": "SubClass.prop",
76 "text": "SubClass.prop",
DquickInfoInheritDoc2.baseline33 "text": "SubClass",
79 "text": "SubClass.prop",
88 "text": "SubClass.prop",
DquickInfoInheritDoc.baseline33 "text": "SubClass",
219 "text": "SubClass",
315 "text": "SubClass.func1.stuff1",
324 "text": "SubClass.func1.returns",
363 "text": "SubClass",
DdestructuringParameterDeclaration5.errors.txt16 class SubClass extends Class {
49 d2({ x: new SubClass() });
53 d3({ y: new SubClass() });
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DInstVisitor.h30 return static_cast<SubClass*>(this)-> \
79 template<typename SubClass, typename RetTy=void>
91 static_cast<SubClass*>(this)->visit(*Start++); in visit()
97 static_cast<SubClass*>(this)->visitModule(M); in visit()
101 static_cast<SubClass*>(this)->visitFunction(F); in visit()
105 static_cast<SubClass*>(this)->visitBasicBlock(BB); in visit()
118 static_assert(std::is_base_of<InstVisitor, SubClass>::value, in visit()
126 static_cast<SubClass*>(this)-> \ in visit()
224 return static_cast<SubClass*>(this)->visitCallSite(&I); in visitCallInst()
227 return static_cast<SubClass*>(this)->visitCallSite(&I); in visitInvokeInst()
[all …]
DOperandTraits.h29 template <typename SubClass, unsigned ARITY>
31 static Use *op_begin(SubClass* U) { in op_begin()
33 !std::is_polymorphic<SubClass>::value, in op_begin()
37 static Use *op_end(SubClass* U) { in op_end()
52 template <typename SubClass, unsigned ARITY = 1>
53 struct OptionalOperandTraits : public FixedNumOperandTraits<SubClass, ARITY> {
67 template <typename SubClass, unsigned MINARITY = 0>
69 static Use *op_begin(SubClass* U) { in op_begin()
71 !std::is_polymorphic<SubClass>::value, in op_begin()
75 static Use *op_end(SubClass* U) { in op_end()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DRecycler.h82 template<class SubClass, class AllocatorType>
83 SubClass *Allocate(AllocatorType &Allocator) { in Allocate()
84 static_assert(alignof(SubClass) <= Align, in Allocate()
86 static_assert(sizeof(SubClass) <= Size, in Allocate()
88 return FreeList ? reinterpret_cast<SubClass *>(pop_val()) in Allocate()
89 : static_cast<SubClass *>(Allocator.Allocate(Size, Align)); in Allocate()
97 template<class SubClass, class AllocatorType>
98 void Deallocate(AllocatorType & /*Allocator*/, SubClass* Element) { in Deallocate()
DRecyclingAllocator.h42 template<class SubClass>
43 SubClass *Allocate() { return Base.template Allocate<SubClass>(Allocator); } in Allocate()
50 template<class SubClass>
51 void Deallocate(SubClass* E) { return Base.Deallocate(Allocator, E); } in Deallocate()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DOperandTraits.h30 template <typename SubClass, unsigned ARITY>
32 static Use *op_begin(SubClass* U) { in op_begin()
35 static Use *op_end(SubClass* U) { in op_end()
50 template <typename SubClass, unsigned ARITY = 1>
51 struct OptionalOperandTraits : public FixedNumOperandTraits<SubClass, ARITY> {
65 template <typename SubClass, unsigned MINARITY = 0>
67 static Use *op_begin(SubClass* U) { in op_begin()
70 static Use *op_end(SubClass* U) { in op_end()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DRegAllocRegistry.h28 template <class SubClass>
43 SubClass *getNext() const { in getNext()
44 return static_cast<SubClass *>(MachinePassRegistryNode::getNext()); in getNext()
47 static SubClass *getList() { in getList()
48 return static_cast<SubClass *>(Registry.getList()); in getList()
/third_party/typescript/tests/cases/conformance/es6/destructuring/
DdestructuringParameterDeclaration5.ts8 class SubClass extends Class { class
41 d2({ x: new SubClass() });
45 d3({ y: new SubClass() });
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/expressions/the_super_keyword/super_calls/
Dgengric_extends.ts29 class SubClass<T> extends BaseClass<T> { class
34 class StringSubClass extends SubClass<string> {
Darguments.ts31 class SubClass<T> extends SuperClass<T> { class
36 const sub = new SubClass("hello");
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/
DTGParser.cpp228 bool TGParser::AddSubClass(Record *CurRec, SubClassReference &SubClass) { in AddSubClass() argument
229 Record *SC = SubClass.Rec; in AddSubClass()
232 if (AddValue(CurRec, SubClass.RefRange.Start, Val)) in AddSubClass()
238 if (TArgs.size() < SubClass.TemplateArgs.size()) in AddSubClass()
239 return Error(SubClass.RefRange.Start, in AddSubClass()
247 if (i < SubClass.TemplateArgs.size()) { in AddSubClass()
249 if (SetValue(CurRec, SubClass.RefRange.Start, TArgs[i], in AddSubClass()
250 None, SubClass.TemplateArgs[i])) in AddSubClass()
253 return Error(SubClass.RefRange.Start, in AddSubClass()
279 return Error(SubClass.RefRange.Start, in AddSubClass()
[all …]
/third_party/python/Lib/test/
Dtest_dynamicclassattribute.py38 class SubClass(BaseClass): class
115 sub = SubClass()
123 sub = SubClass()
Dtest_property.py37 class SubClass(BaseClass): class
98 sub = SubClass()
106 sub = SubClass()
/third_party/node/test/fixtures/wpt/streams/
Dqueuing-strategies.any.js62 class SubClass extends QueuingStrategy { class
72 const sc = new SubClass({ highWaterMark: 77 });
/third_party/typescript/tests/cases/compiler/
DgenericBaseClassLiteralProperty.ts6 class SubClass extends BaseClass<number> { class
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DTargetRegisterInfo.cpp222 const TargetRegisterClass *SubClass = getAllocatableClass(RC); in getAllocatableSet() local
223 if (SubClass) in getAllocatableSet()
224 getAllocatableSetForRC(MF, SubClass, Allocatable); in getAllocatableSet()

12