HomeSort by relevance Sort by last modified time
    Searched refs:SubClass (Results 1 - 15 of 15) sorted by null

  /cts/tools/dx-tests/src/dxc/junit/opcodes/aastore/jm/
TestStubs.java 32 class SubClass extends SuperClass{
  /cts/tools/dx-tests/src/dxc/junit/opcodes/checkcast/jm/
TestStubs.java 39 class SubClass extends SuperClass{
  /cts/tools/dx-tests/src/dxc/junit/opcodes/opc_instanceof/jm/
TestStubs.java 38 class SubClass extends SuperClass{
  /external/llvm/include/llvm/Support/
RecyclingAllocator.h 41 /// SubClass. The storage may be either newly allocated or recycled.
43 template<class SubClass>
44 SubClass *Allocate() { return Base.template Allocate<SubClass>(Allocator); }
51 template<class SubClass>
52 void Deallocate(SubClass* E) { return Base.Deallocate(Allocator, E); }
Recycler.h 89 template<class SubClass, class AllocatorType>
90 SubClass *Allocate(AllocatorType &Allocator) {
91 assert(sizeof(SubClass) <= Size &&
93 assert(AlignOf<SubClass>::Alignment <= Align &&
96 reinterpret_cast<SubClass *>(FreeList.remove(FreeList.begin())) :
97 static_cast<SubClass *>(Allocator.Allocate(Size, Align));
105 template<class SubClass, class AllocatorType>
106 void Deallocate(AllocatorType & /*Allocator*/, SubClass* Element) {
InstVisitor.h 28 return static_cast<SubClass*>(this)-> \
39 /// new type for the 'SubClass' template parameter, and "override" visitXXX
77 template<typename SubClass, typename RetTy=void>
89 static_cast<SubClass*>(this)->visit(*Start++);
95 static_cast<SubClass*>(this)->visitModule(M);
99 static_cast<SubClass*>(this)->visitFunction(F);
103 static_cast<SubClass*>(this)->visitBasicBlock(BB);
121 static_cast<SubClass*>(this)-> \
210 // function. If this function is not overloaded in the user's subclass, then
  /cts/tools/vm-tests/src/dot/junit/opcodes/check_cast/d/
T_check_cast_2.d 34 .class public dot.junit.opcodes.check_cast.d.T_check_cast_2.SubClass
62 ; (SubClass instanceof SuperClass)
63 new-instance v10, dot/junit/opcodes/check_cast/d/T_check_cast_2/SubClass
64 invoke-direct {v10}, dot/junit/opcodes/check_cast/d/T_check_cast_2/SubClass/<init>()V
67 ; (SubClass[] instanceof SuperClass[])
69 new-array v10, v11, [Ldot/junit/opcodes/check_cast/d/T_check_cast_2/SubClass;
73 ; (SubClass[] instanceof Object)
74 new-array v10, v11, [Ldot/junit/opcodes/check_cast/d/T_check_cast_2/SubClass;
77 ; (SubClass instanceof SuperInterface)
78 new-instance v10, dot/junit/opcodes/check_cast/d/T_check_cast_2/SubClass
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/instance_of/d/
T_instance_of_2.d 34 .class public dot.junit.opcodes.instance_of.d.T_instance_of_2.SubClass
62 ; (SubClass instanceof SuperClass)
63 new-instance v10, dot/junit/opcodes/instance_of/d/T_instance_of_2/SubClass
64 invoke-direct {v10}, dot/junit/opcodes/instance_of/d/T_instance_of_2/SubClass/<init>()V
68 ; (SubClass[] instanceof SuperClass[])
70 new-array v10, v11, [Ldot/junit/opcodes/instance_of/d/T_instance_of_2/SubClass;
74 ; (SubClass[] instanceof Object)
75 new-array v10, v11, [Ldot/junit/opcodes/instance_of/d/T_instance_of_2/SubClass;
79 ; (SubClass instanceof SuperInterface)
80 new-instance v10, dot/junit/opcodes/instance_of/d/T_instance_of_2/SubClass
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/check_cast/d/
T_check_cast_2.d 34 .class public dot.junit.opcodes.check_cast.d.T_check_cast_2.SubClass
62 ; (SubClass instanceof SuperClass)
63 new-instance v10, dot/junit/opcodes/check_cast/d/T_check_cast_2/SubClass
64 invoke-direct {v10}, dot/junit/opcodes/check_cast/d/T_check_cast_2/SubClass/<init>()V
67 ; (SubClass[] instanceof SuperClass[])
69 new-array v10, v11, [Ldot/junit/opcodes/check_cast/d/T_check_cast_2/SubClass;
73 ; (SubClass[] instanceof Object)
74 new-array v10, v11, [Ldot/junit/opcodes/check_cast/d/T_check_cast_2/SubClass;
77 ; (SubClass instanceof SuperInterface)
78 new-instance v10, dot/junit/opcodes/check_cast/d/T_check_cast_2/SubClass
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/instance_of/d/
T_instance_of_2.d 34 .class public dot.junit.opcodes.instance_of.d.T_instance_of_2.SubClass
62 ; (SubClass instanceof SuperClass)
63 new-instance v10, dot/junit/opcodes/instance_of/d/T_instance_of_2/SubClass
64 invoke-direct {v10}, dot/junit/opcodes/instance_of/d/T_instance_of_2/SubClass/<init>()V
68 ; (SubClass[] instanceof SuperClass[])
70 new-array v10, v11, [Ldot/junit/opcodes/instance_of/d/T_instance_of_2/SubClass;
74 ; (SubClass[] instanceof Object)
75 new-array v10, v11, [Ldot/junit/opcodes/instance_of/d/T_instance_of_2/SubClass;
79 ; (SubClass instanceof SuperInterface)
80 new-instance v10, dot/junit/opcodes/instance_of/d/T_instance_of_2/SubClass
    [all...]
  /external/llvm/include/llvm/
OperandTraits.h 30 template <typename SubClass, unsigned ARITY>
32 static Use *op_begin(SubClass* U) {
35 static Use *op_end(SubClass* U) {
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) {
70 static Use *op_end(SubClass* U) {
85 /// Assumes that the User subclass that is determined by this traits class
  /cts/tools/vm-tests/src/dot/junit/opcodes/aput_object/d/
T_aput_object_3.d 33 .class public dot.junit.opcodes.aput_object.d.SubClass
61 ; v2 = SubClass[]
62 new-array v2, v0, [Ldot/junit/opcodes/aput_object/d/SubClass;
67 ; v4 = SubClass
68 new-instance v4, dot/junit/opcodes/aput_object/d/SubClass
69 invoke-direct {v4}, dot/junit/opcodes/aput_object/d/SubClass/<init>()V
86 ; (SubClass -> SuperClass[])
89 ; (SubClass -> SuperInterface[])
92 ; (SubClass -> Object[])
95 ; !(SuperClass -> SubClass[])
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aput_object/d/
T_aput_object_3.d 33 .class public dot.junit.opcodes.aput_object.d.SubClass
61 ; v2 = SubClass[]
62 new-array v2, v0, [Ldot/junit/opcodes/aput_object/d/SubClass;
67 ; v4 = SubClass
68 new-instance v4, dot/junit/opcodes/aput_object/d/SubClass
69 invoke-direct {v4}, dot/junit/opcodes/aput_object/d/SubClass/<init>()V
86 ; (SubClass -> SuperClass[])
89 ; (SubClass -> SuperInterface[])
92 ; (SubClass -> Object[])
95 ; !(SuperClass -> SubClass[])
    [all...]
  /external/llvm/lib/TableGen/
TGParser.cpp 147 /// AddSubClass - Add SubClass as a subclass to CurRec, resolving its template
148 /// args as SubClass's template arguments.
149 bool TGParser::AddSubClass(Record *CurRec, SubClassReference &SubClass) {
150 Record *SC = SubClass.Rec;
151 // Add all of the values in the subclass into the current class.
154 if (AddValue(CurRec, SubClass.RefLoc, Vals[i]))
160 if (TArgs.size() < SubClass.TemplateArgs.size())
161 return Error(SubClass.RefLoc, "More template args specified than expected");
166 if (i < SubClass.TemplateArgs.size())
    [all...]
TGParser.h 93 bool AddSubClass(Record *Rec, SubClassReference &SubClass);

Completed in 1497 milliseconds