/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | instruction_list.h | 44 class InstructionList : public utils::IntrusiveList<Instruction> { 46 InstructionList() = default; 47 InstructionList(InstructionList&& that) in InstructionList() function 49 InstructionList& operator=(InstructionList&& that) { 56 inline virtual ~InstructionList(); 117 InstructionList::~InstructionList() { clear(); } in ~InstructionList() 119 void InstructionList::clear() { in clear()
|
D | instruction_list.cpp | 20 InstructionList::iterator InstructionList::iterator::InsertBefore( in InsertBefore() 30 InstructionList::iterator InstructionList::iterator::InsertBefore( in InsertBefore()
|
D | module.h | 47 using inst_iterator = InstructionList::iterator; 48 using const_inst_iterator = InstructionList::const_iterator; 268 InstructionList capabilities_; 269 InstructionList extensions_; 270 InstructionList ext_inst_imports_; 273 InstructionList entry_points_; 274 InstructionList execution_modes_; 275 InstructionList debugs1_; 276 InstructionList debugs2_; 277 InstructionList debugs3_; [all …]
|
D | basic_block.h | 42 using iterator = InstructionList::iterator; 43 using const_iterator = InstructionList::const_iterator; 44 using reverse_iterator = std::reverse_iterator<InstructionList::iterator>; 46 std::reverse_iterator<InstructionList::const_iterator>; 229 InstructionList insts_;
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | instruction_list.h | 44 class InstructionList : public utils::IntrusiveList<Instruction> { 46 InstructionList() = default; 47 InstructionList(InstructionList&& that) in InstructionList() function 49 InstructionList& operator=(InstructionList&& that) { 56 inline virtual ~InstructionList(); 117 InstructionList::~InstructionList() { clear(); } in ~InstructionList() 119 void InstructionList::clear() { in clear()
|
D | instruction_list.cpp | 20 InstructionList::iterator InstructionList::iterator::InsertBefore( in InsertBefore() 30 InstructionList::iterator InstructionList::iterator::InsertBefore( in InsertBefore()
|
D | module.h | 47 using inst_iterator = InstructionList::iterator; 48 using const_inst_iterator = InstructionList::const_iterator; 268 InstructionList capabilities_; 269 InstructionList extensions_; 270 InstructionList ext_inst_imports_; 273 InstructionList entry_points_; 274 InstructionList execution_modes_; 275 InstructionList debugs1_; 276 InstructionList debugs2_; 277 InstructionList debugs3_; [all …]
|
D | basic_block.h | 42 using iterator = InstructionList::iterator; 43 using const_iterator = InstructionList::const_iterator; 44 using reverse_iterator = std::reverse_iterator<InstructionList::iterator>; 46 std::reverse_iterator<InstructionList::const_iterator>; 229 InstructionList insts_;
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/ |
D | InstructionList.java | 46 public class InstructionList implements Iterable<InstructionHandle> { class 56 public InstructionList() { in InstructionList() method in InstructionList 65 public InstructionList(final Instruction i) { in InstructionList() method in InstructionList 75 public InstructionList(final BranchInstruction i) { in InstructionList() method in InstructionList 85 public InstructionList(final CompoundInstruction c) { in InstructionList() method in InstructionList 155 public InstructionList(final byte[] code) { in InstructionList() method in InstructionList 229 public InstructionHandle append(final InstructionHandle ih, final InstructionList il) { in append() 260 public InstructionHandle append(final Instruction i, final InstructionList il) { in append() 275 public InstructionHandle append(final InstructionList il) { in append() 347 return append(i, new InstructionList(j)); in append() [all …]
|
/external/apache-commons-bcel/src/test/java/org/apache/bcel/ |
D | LocalVariableTypeTableTestCase.java | 28 import org.apache.bcel.generic.InstructionList; 87 final InstructionList instructionList = methodGen.getInstructionList(); in injection() 99 …public InstructionList makeWillBeAddedInstructionList(final MethodGen methodGen, final int firstSt… in makeWillBeAddedInstructionList() 101 return new InstructionList(); in makeWillBeAddedInstructionList() 116 public InstructionList createPrintln(final ConstantPoolGen cp, final Instruction instruction) { in createPrintln() 117 final InstructionList il = new InstructionList(); in createPrintln()
|
D | InstructionFinderTestCase.java | 25 import org.apache.bcel.generic.InstructionList; 49 final InstructionList il = new InstructionList(bytes); in testSearchAll()
|
/external/apache-commons-bcel/src/test/java/org/apache/bcel/verifier/tests/ |
D | TestReturn03Creator.java | 29 import org.apache.bcel.generic.InstructionList; 55 final InstructionList il = new InstructionList(); in createMethod_0() 71 final InstructionList il = new InstructionList(); in createMethod_1()
|
D | TestReturn01Creator.java | 29 import org.apache.bcel.generic.InstructionList; 55 final InstructionList il = new InstructionList(); in createMethod_0() 71 final InstructionList il = new InstructionList(); in createMethod_1()
|
D | TestArrayAccess03Creator.java | 29 import org.apache.bcel.generic.InstructionList; 57 final InstructionList il = new InstructionList(); in createMethod_0() 73 final InstructionList il = new InstructionList(); in createMethod_1()
|
D | TestArrayAccess04Creator.java | 30 import org.apache.bcel.generic.InstructionList; 57 final InstructionList il = new InstructionList(); in createMethod_0() 73 final InstructionList il = new InstructionList(); in createMethod_1()
|
D | TestArrayAccess02Creator.java | 29 import org.apache.bcel.generic.InstructionList; 57 final InstructionList il = new InstructionList(); in createMethod_0() 73 final InstructionList il = new InstructionList(); in createMethod_1()
|
/external/apache-commons-bcel/src/examples/Mini/ |
D | ASTIfExpr.java | 27 import org.apache.bcel.generic.InstructionList; 160 public void byte_code(InstructionList il, MethodGen method, ConstantPoolGen cp) { in byte_code() 163 InstructionList then_code = new InstructionList(); in byte_code() 164 InstructionList else_code = new InstructionList(); in byte_code()
|
D | ASTProgram.java | 34 import org.apache.bcel.generic.InstructionList; 216 InstructionList il = new InstructionList(); in byte_code() 255 il = new InstructionList(); in byte_code() 290 il = new InstructionList(); in byte_code() 305 il = new InstructionList(); in byte_code()
|
/external/deqp-deps/SPIRV-Tools/test/opt/ |
D | instruction_list_test.cpp | 50 InstructionList* list = new InstructionList(); in TEST() 72 InstructionList list; in TEST() 94 InstructionList list; in TEST()
|
/external/swiftshader/third_party/SPIRV-Tools/test/opt/ |
D | instruction_list_test.cpp | 50 InstructionList* list = new InstructionList(); in TEST() 72 InstructionList list; in TEST() 94 InstructionList list; in TEST()
|
/external/apache-commons-bcel/src/test/java/org/apache/bcel/util/ |
D | InstructionFinderTest.java | 28 import org.apache.bcel.generic.InstructionList; 33 final InstructionList il = new InstructionList(); in testSearch()
|
/external/apache-commons-bcel/src/examples/ |
D | helloify.java | 33 import org.apache.bcel.generic.InstructionList; 104 InstructionList patch = new InstructionList(); in helloifyMethod() 110 InstructionList il = mg.getInstructionList(); in helloifyMethod()
|
D | ProxyCreator.java | 31 import org.apache.bcel.generic.InstructionList; 87 InstructionList il = new InstructionList(); in main()
|
/external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 2031 Instruction *Inst = InstructionList[Record[0]]; in ParseMetadataAttachment() 2053 InstructionList.clear(); in ParseFunctionBody() 2172 InstructionList.push_back(I); in ParseFunctionBody() 2204 InstructionList.push_back(I); in ParseFunctionBody() 2223 InstructionList.push_back(I); in ParseFunctionBody() 2246 InstructionList.push_back(I); in ParseFunctionBody() 2270 InstructionList.push_back(I); in ParseFunctionBody() 2285 InstructionList.push_back(I); in ParseFunctionBody() 2312 InstructionList.push_back(I); in ParseFunctionBody() 2323 InstructionList.push_back(I); in ParseFunctionBody() [all …]
|
/external/apache-commons-bcel/src/test/java/org/apache/bcel/generic/ |
D | GeneratingAnnotatedClassesTestCase.java | 80 final InstructionList il = new InstructionList(); in testGenerateClassLevelAnnotations() 123 final InstructionList il = new InstructionList(); in testGenerateMethodLevelAnnotations1() 163 final InstructionList il = new InstructionList(); in testGenerateMethodLevelAnnotations2() 415 final ConstantPoolGen cp, final InstructionList il) in buildClassContentsWithAnnotatedMethods() 511 final InstructionList il) in buildClassContents() 619 private MethodGen createMethodGen(final String methodname, final InstructionList il, in createMethodGen()
|