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

  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
InlineMethodResolver.java 52 public abstract DeodexUtil.InlineMethod resolveExecuteInline(AnalyzedInstruction instruction);
56 private final DeodexUtil.InlineMethod[] inlineMethods;
59 inlineMethods = new DeodexUtil.InlineMethod[] {
60 new DeodexUtil.InlineMethod(Static, "Lorg/apache/harmony/dalvik/NativeTestTarget;", "emptyInlineMethod", "", "V"),
61 new DeodexUtil.InlineMethod(Virtual, "Ljava/lang/String;", "charAt", "I", "C"),
62 new DeodexUtil.InlineMethod(Virtual, "Ljava/lang/String;", "compareTo", "Ljava/lang/String;", "I"),
63 new DeodexUtil.InlineMethod(Virtual, "Ljava/lang/String;", "equals", "Ljava/lang/Object;", "Z"),
64 new DeodexUtil.InlineMethod(Virtual, "Ljava/lang/String;", "length", "", "I"),
65 new DeodexUtil.InlineMethod(Static, "Ljava/lang/Math;", "abs", "I", "I"),
66 new DeodexUtil.InlineMethod(Static, "Ljava/lang/Math;", "abs", "J", "J")
    [all...]
CustomInlineMethodResolver.java 44 private DeodexUtil.InlineMethod[] inlineMethods;
72 inlineMethods = new DeodexUtil.InlineMethod[lines.size()];
80 public DeodexUtil.InlineMethod resolveExecuteInline(AnalyzedInstruction analyzedInstruction) {
94 private DeodexUtil.InlineMethod parseAndResolveInlineMethod(String inlineMethod) {
95 Matcher m = longMethodPattern.matcher(inlineMethod);
98 throw new RuntimeException("Invalid method descriptor: " + inlineMethod);
110 throw new RuntimeException("Cannot resolve inline method: " + inlineMethod);
113 return new DeodexUtil.InlineMethod(methodType, className, methodName, methodParams, methodRet);
DeodexUtil.java 63 public InlineMethod lookupInlineMethod(AnalyzedInstruction instruction) {
281 public static class InlineMethod {
290 InlineMethod(int methodType, String classType, String methodName, String parameters,
MethodAnalyzer.java     [all...]
  /art/compiler/dex/
frontend.cc 181 cu.mir_graph->InlineMethod(code_item, access_flags, invoke_type, class_def_idx, method_idx,
mir_graph.h 359 void InlineMethod(const DexFile::CodeItem* code_item, uint32_t access_flags,
mir_graph.cc 505 void MIRGraph::InlineMethod(const DexFile::CodeItem* code_item, uint32_t access_flags,
    [all...]

Completed in 3042 milliseconds