Searched refs:getInstructions (Results 1 - 25 of 32) sorted by relevance

12

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
H A DMethodImplementation.java56 @Nonnull Iterable<? extends Instruction> getInstructions(); method in interface:MethodImplementation
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/builder/
H A DFixGotoTest.java33 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions());
56 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions());
79 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions());
115 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions());
H A DPayloadAlignmentTest.java57 Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions());
74 Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions());
101 List<Instruction> instructions = Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions());
127 List<Instruction> instructions = Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions());
176 List<Instruction> instructions = Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions());
227 List<Instruction> instructions = Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions());
H A DFixOffsetsTest.java101 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions());
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
H A DImmutableMethodImplementation.java84 methodImplementation.getInstructions(),
90 @Nonnull @Override public ImmutableList<? extends ImmutableInstruction> getInstructions() { return instructions; } method in class:ImmutableMethodImplementation
/external/dexmaker/src/dx/java/com/android/dx/io/
H A DCode.java55 public short[] getInstructions() { method in class:Code
/external/smack/src/org/jivesoftware/smackx/packet/
H A DDataForm.java89 public Iterator<String> getInstructions() { method in class:DataForm
221 for (Iterator<String> it=getInstructions(); it.hasNext();) {
/external/smack/src/org/jivesoftware/smack/packet/
H A DRegistration.java66 public String getInstructions() { method in class:Registration
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
H A DCustomMethodInlineTableTest.java76 Instruction deodexedInstruction = methodAnalyzer.getInstructions().get(0);
103 Instruction deodexedInstruction = methodAnalyzer.getInstructions().get(0);
130 Instruction deodexedInstruction = methodAnalyzer.getInstructions().get(0);
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
H A DJumboStringConversionTest.java106 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions());
158 @Nonnull @Override public Iterable<? extends Instruction> getInstructions() {
203 List<? extends Instruction> actualInstructions = Lists.newArrayList(impl.getInstructions());
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
H A DDexBackedMethodImplementation.java65 @Nonnull @Override public Iterable<? extends Instruction> getInstructions() { method in class:DexBackedMethodImplementation
/external/llvm/utils/TableGen/
H A DCodeGenTarget.h149 DenseMap<const Record*, CodeGenInstruction*> &getInstructions() const { function in class:llvm::CodeGenTarget
H A DCodeGenTarget.cpp305 const DenseMap<const Record*, CodeGenInstruction*> &Insts = getInstructions();
/external/smali/dexlib2/src/accessorTest/java/org/jf/dexlib2/
H A DAccessorTest.java113 for (Instruction instruction: methodImpl.getInstructions()) {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DSyntheticAccessorResolver.java125 List<Instruction> instructions = ImmutableList.copyOf(matchedMethodImpl.getInstructions());
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DClassSection.java79 @Nullable Iterable<? extends Instruction> getInstructions(@Nonnull MethodKey key); method in interface:ClassSection
H A DDexWriter.java731 Iterable<? extends Instruction> instructions = classSection.getInstructions(methodKey);
751 instructions = mutableMethodImplementation.getInstructions();
780 List<? extends Instruction> instructions = methodImplementation.getInstructions();
/external/smack/src/org/jivesoftware/smackx/
H A DForm.java395 public String getInstructions() { method in class:Form
398 for (Iterator<String> it = dataForm.getInstructions(); it.hasNext();) {
H A DGateway.java192 public String getInstructions(){ method in class:Gateway
193 return getRegisterInfo().getInstructions();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
H A DClassPool.java143 for (Instruction instruction: methodImpl.getInstructions()) {
414 @Nullable @Override public Iterable<? extends Instruction> getInstructions(@Nonnull PoolMethod method) { method in class:ClassPool
417 return impl.getInstructions();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderClassPool.java294 public Iterable<? extends Instruction> getInstructions(@Nonnull BuilderMethod builderMethod) { method in class:BuilderClassPool
299 return impl.getInstructions();
/external/smack/src/org/jivesoftware/smack/
H A DAccountManager.java178 return info.getInstructions();
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DMethodDefinition.java85 instructions = ImmutableList.copyOf(methodImpl.getInstructions());
320 for (Instruction instruction: methodImpl.getInstructions()) {
H A DClassDefinition.java73 for (Instruction instruction: impl.getInstructions()) {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
H A DMutableMethodImplementation.java68 for (Instruction instruction: methodImplementation.getInstructions()) {
84 for (final Instruction instruction: methodImplementation.getInstructions()) {
139 public List<BuilderInstruction> getInstructions() { method in class:MutableMethodImplementation

Completed in 7230 milliseconds

12