Searched refs:addInstruction (Results 1 - 19 of 19) sorted by relevance

/external/smali/dexlib2/src/test/java/org/jf/dexlib2/builder/
H A DFixGotoTest.java22 builder.addInstruction(new BuilderInstruction10t(Opcode.GOTO, gotoTarget));
25 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
29 builder.addInstruction(new BuilderInstruction10x(Opcode.RETURN_VOID));
45 builder.addInstruction(new BuilderInstruction10t(Opcode.GOTO, gotoTarget));
48 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
52 builder.addInstruction(new BuilderInstruction10x(Opcode.RETURN_VOID));
68 builder.addInstruction(new BuilderInstruction20t(Opcode.GOTO_16, gotoTarget));
71 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
75 builder.addInstruction(new BuilderInstruction10x(Opcode.RETURN_VOID));
91 builder.addInstruction(ne
[all...]
H A DPayloadAlignmentTest.java53 implBuilder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
54 implBuilder.addInstruction(new BuilderArrayPayload(4, null));
70 implBuilder.addInstruction(new BuilderInstruction12x(Opcode.MOVE, 0, 0));
71 implBuilder.addInstruction(new BuilderArrayPayload(4, null));
93 implBuilder.addInstruction(new BuilderInstruction31t(Opcode.FILL_ARRAY_DATA, 0, label));
94 implBuilder.addInstruction(new BuilderInstruction12x(Opcode.MOVE, 0, 0));
95 implBuilder.addInstruction(new BuilderInstruction12x(Opcode.MOVE, 0, 0));
96 implBuilder.addInstruction(new BuilderInstruction12x(Opcode.MOVE, 0, 0));
97 implBuilder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
99 implBuilder.addInstruction(ne
[all...]
H A DFixOffsetsTest.java56 builder.addInstruction(new BuilderInstruction10t(Opcode.GOTO, firstGotoTarget));
61 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
69 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
75 builder.addInstruction(new BuilderInstruction10t(Opcode.GOTO, secondGotoTarget));
82 builder.addInstruction(new BuilderInstruction10x(Opcode.NOP));
91 builder.addInstruction(new BuilderInstruction10x(Opcode.RETURN_VOID));
/external/llvm/lib/DebugInfo/
H A DDWARFDebugFrame.cpp76 void addInstruction(uint8_t Opcode) { function in class:llvm::FrameEntry
80 void addInstruction(uint8_t Opcode, uint64_t Operand1) { function in class:llvm::FrameEntry
85 void addInstruction(uint8_t Opcode, uint64_t Operand1, uint64_t Operand2) { function in class:llvm::FrameEntry
112 addInstruction(Primary, Op1);
115 addInstruction(Primary, Op1, Data.getULEB128(Offset));
127 addInstruction(Opcode);
131 addInstruction(Opcode, Data.getAddress(Offset));
135 addInstruction(Opcode, Data.getU8(Offset));
139 addInstruction(Opcode, Data.getU16(Offset));
143 addInstruction(Opcod
[all...]
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DCode.java349 addInstruction(new PlainInsn(Rops.GOTO, sourcePosition, null, RegisterSpecList.EMPTY),
388 addInstruction(new ThrowingInsn(Rops.THROW, sourcePosition,
400 private void addInstruction(Insn insn) { method in class:Code
401 addInstruction(insn, null);
408 private void addInstruction(Insn insn, Label branch) { method in class:Code
481 addInstruction(new PlainCstInsn(rop, sourcePosition, target.spec(),
484 addInstruction(new ThrowingCstInsn(rop, sourcePosition,
494 addInstruction(new PlainInsn(Rops.opMove(source.type.ropType),
504 addInstruction(new PlainInsn(op.rop(source.type), sourcePosition,
519 addInstruction(ne
[all...]
/external/smali/smali/src/main/antlr3/
H A DsmaliTreeWalker.g751 $method::methodBuilder.addInstruction(new BuilderInstruction10t(opcode, $label_ref.label));
759 $method::methodBuilder.addInstruction(new BuilderInstruction10x(opcode));
772 $method::methodBuilder.addInstruction(new BuilderInstruction11n(opcode, regA, litB));
782 $method::methodBuilder.addInstruction(new BuilderInstruction11x(opcode, regA));
793 $method::methodBuilder.addInstruction(new BuilderInstruction12x(opcode, regA, regB));
805 $method::methodBuilder.addInstruction(new BuilderInstruction20bc(opcode, verificationError,
814 $method::methodBuilder.addInstruction(new BuilderInstruction20t(opcode, $label_ref.label));
826 $method::methodBuilder.addInstruction(new BuilderInstruction21c(opcode, regA,
837 $method::methodBuilder.addInstruction(new BuilderInstruction21c(opcode, regA,
848 $method::methodBuilder.addInstruction(ne
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
H A DMethodImplementationBuilder.java149 public void addInstruction(@Nullable BuilderInstruction instruction) { method in class:MethodImplementationBuilder
150 impl.addInstruction(instruction);
H A DMutableMethodImplementation.java203 public void addInstruction(int index, BuilderInstruction instruction) { method in class:MutableMethodImplementation
212 addInstruction(instruction);
235 public void addInstruction(@Nonnull BuilderInstruction instruction) { method in class:MutableMethodImplementation
456 addInstruction(location.index, new BuilderInstruction10x(Opcode.NOP));
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
H A DJumboStringConversionTest.java69 methodBuilder.addInstruction(new BuilderInstruction21c(Opcode.CONST_STRING, 0,
72 methodBuilder.addInstruction(new BuilderInstruction10x(Opcode.RETURN_VOID));
/external/smali/smali/src/main/java/org/jf/smali/
H A DsmaliTreeWalker.java4464 method_stack.peek().methodBuilder.addInstruction(new BuilderInstruction10t(opcode, label_ref105));
4497 method_stack.peek().methodBuilder.addInstruction(new BuilderInstruction10x(opcode));
4542 method_stack.peek().methodBuilder.addInstruction(new BuilderInstruction11n(opcode, regA, litB));
4579 method_stack.peek().methodBuilder.addInstruction(new BuilderInstruction11x(opcode, regA));
4619 method_stack.peek().methodBuilder.addInstruction(new BuilderInstruction12x(opcode, regA, regB));
4666 method_stack.peek().methodBuilder.addInstruction(new BuilderInstruction20bc(opcode, verificationError,
4705 method_stack.peek().methodBuilder.addInstruction(new BuilderInstruction20t(opcode, label_ref117));
4757 method_stack.peek().methodBuilder.addInstruction(new BuilderInstruction21c(opcode, regA,
4800 method_stack.peek().methodBuilder.addInstruction(new BuilderInstruction21c(opcode, regA,
4843 method_stack.peek().methodBuilder.addInstruction(ne
[all...]
/external/smack/src/org/jivesoftware/smackx/packet/
H A DDataForm.java182 public void addInstruction(String instruction) { method in class:DataForm
/external/smack/src/org/jivesoftware/smackx/provider/
H A DDataFormProvider.java54 dataForm.addInstruction(parser.nextText());
/external/smack/src/org/jivesoftware/smackx/search/
H A DUserSearch.java213 dataForm.addInstruction(instructions);
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dasm-commons-3.3.jarMETA-INF/MANIFEST.MF org/objectweb/asm/commons/AdviceAdapter.class " package org.objectweb.asm ...
H A Dbcel.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/clang/lib/Analysis/
H A DThreadSafetyCommon.cpp720 CurrentBB->addInstruction(V);
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h1453 void addInstruction(Variable *V) { function in class:clang::threadSafety::BasicBlock
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.objectweb.asm_3.2.0.v200909071300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 359 milliseconds