HomeSort by relevance Sort by last modified time
    Searched full:methodimpl (Results 1 - 14 of 14) sorted by null

  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
CustomMethodInlineTableTest.java 62 ImmutableMethodImplementation methodImpl = new ImmutableMethodImplementation(1, instructions, null, null);
64 methodImpl);
89 ImmutableMethodImplementation methodImpl = new ImmutableMethodImplementation(1, instructions, null, null);
91 methodImpl);
116 ImmutableMethodImplementation methodImpl = new ImmutableMethodImplementation(1, instructions, null, null);
118 methodImpl);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
DebugInfo.java 63 @Nonnull DexBackedMethodImplementation methodImpl) {
67 return new DebugInfoImpl(dexFile, debugInfoOffset, methodImpl);
82 @Nonnull private final DexBackedMethodImplementation methodImpl;
86 @Nonnull DexBackedMethodImplementation methodImpl) {
89 this.methodImpl = methodImpl;
103 int registerCount = methodImpl.getRegisterCount();
109 DexBackedMethod method = methodImpl.method;
122 if (!AccessFlags.STATIC.isSet(methodImpl.method.getAccessFlags())) {
126 @Override public String getType() { return methodImpl.method.getDefiningClass();
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
MethodDefinition.java 65 @Nonnull public final MethodImplementation methodImpl;
77 @Nonnull MethodImplementation methodImpl) {
80 this.methodImpl = methodImpl;
85 instructions = ImmutableList.copyOf(methodImpl.getInstructions());
181 writer.printSignedIntAsDec(methodImpl.getRegisterCount() - parameterRegisterCount);
184 writer.printSignedIntAsDec(methodImpl.getRegisterCount());
190 registerFormatter = new RegisterFormatter(classDef.options, methodImpl.getRegisterCount(),
320 for (Instruction instruction: methodImpl.getInstructions()) {
452 List<? extends TryBlock<? extends ExceptionHandler>> tryBlocks = methodImpl.getTryBlocks()
    [all...]
ClassDefinition.java 272 MethodImplementation methodImpl = method.getImplementation();
273 if (methodImpl == null) {
276 MethodDefinition methodDefinition = new MethodDefinition(this, method, methodImpl);
317 MethodImplementation methodImpl = method.getImplementation();
318 if (methodImpl == null) {
321 MethodDefinition methodDefinition = new MethodDefinition(this, method, methodImpl);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
ClassPool.java 141 MethodImplementation methodImpl = method.getImplementation();
142 if (methodImpl != null) {
143 for (Instruction instruction: methodImpl.getInstructions()) {
167 List<? extends TryBlock> tryBlocks = methodImpl.getTryBlocks();
173 for (TryBlock<? extends ExceptionHandler> tryBlock: methodImpl.getTryBlocks()) {
189 MethodImplementation methodImpl = method.getImplementation();
190 if (methodImpl != null) {
191 for (DebugItem debugItem: methodImpl.getDebugItems()) {
  /external/smali/dexlib2/src/accessorTest/java/org/jf/dexlib2/
AccessorTest.java 110 MethodImplementation methodImpl = method.getImplementation();
111 Assert.assertNotNull(methodImpl);
113 for (Instruction instruction: methodImpl.getInstructions()) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
SyntheticAccessorResolver.java 106 MethodImplementation methodImpl = method.getImplementation();
107 if (methodImpl != null) {
110 matchedMethodImpl = methodImpl;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdimodel.jar 
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DexBackedMethod.java 151 DexBackedMethodImplementation methodImpl = getImplementation();
152 if (methodImpl != null) {
153 return methodImpl.getParameterNames(null);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
MethodAnalyzer.java 73 @Nonnull private final MethodImplementation methodImpl;
102 MethodImplementation methodImpl = method.getImplementation();
103 if (methodImpl == null) {
107 this.methodImpl = methodImpl;
111 startOfMethod = new AnalyzedInstruction(null, -1, methodImpl.getRegisterCount()) {
142 MethodImplementation methodImpl = this.methodImpl;
144 int totalRegisters = methodImpl.getRegisterCount();
385 int registerCount = methodImpl.getRegisterCount()
    [all...]
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
JumboStringConversionTest.java 153 MethodImplementation methodImpl = new MethodImplementation() {
187 methodImpl)));
  /external/clang/lib/Sema/
SemaDeclObjC.cpp     [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp     [all...]

Completed in 383 milliseconds