Searched refs:Code (Results 1 – 20 of 20) sorted by relevance
/dalvik/dx/tests/017-method-attrib-Code/ |
D | small-class.txt | 19 01 0004 "Code" # 0007: utf8["Code"]
|
D | expected.txt | 15 0007: utf8{"Code"} 31 name: Code
|
D | info.txt | 6 method with a minimal but syntactically valid Code attribute.
|
/dalvik/dx/tests/002-minimal-valid/ |
D | small-class.txt | 18 01 0004 "Code" # 0006: utf8["Code"]
|
D | expected.txt | 14 0006: utf8{"Code"} 33 name: Code
|
/dalvik/dx/tests/021-code-attrib-LineNumberTable/ |
D | small-class.txt | 19 01 0004 "Code" # 0007: utf8["Code"]
|
D | expected.txt | 15 0007: utf8{"Code"} 32 name: Code
|
D | info.txt | 6 method with a simple Code attribute, which itself has a syntactically
|
/dalvik/dx/tests/022-code-attrib-LocalVariableTable/ |
D | small-class.txt | 19 01 0004 "Code" # 0007: utf8["Code"]
|
D | expected.txt | 15 0007: utf8{"Code"} 36 name: Code
|
D | info.txt | 6 method with a simple Code attribute, which itself has a syntactically
|
/dalvik/dx/src/com/android/dex/ |
D | Code.java | 19 public final class Code { class 28 public Code(int registersSize, int insSize, int outsSize, int debugInfoOffset, in Code() method in Code
|
D | Dex.java | 19 import com.android.dex.Code.CatchHandler; 20 import com.android.dex.Code.Try; 259 public Code readCode(ClassData.Method method) { in readCode() 471 private Code readCode() { in readCode() 499 return new Code(registersSize, insSize, outsSize, debugInfoOffset, instructions, in readCode()
|
/dalvik/dx/tests/023-code-exception-table/ |
D | small-class.txt | 19 01 0004 "Code" # 0007: utf8["Code"]
|
D | expected.txt | 15 0007: utf8{"Code"} 35 name: Code
|
D | info.txt | 6 method with a minimal but syntactically valid Code attribute, which
|
/dalvik/dx/tests/024-code-bytecode/ |
D | info.txt | 6 method with a Code attribute, and the code[] array of the attribute has
|
D | expected.txt | 15 0007: utf8{"Code"} 44 name: Code
|
D | small-class.txt | 19 01 0004 "Code" # 0007: utf8["Code"]
|
/dalvik/dx/src/com/android/dx/merge/ |
D | DexMerger.java | 23 import com.android.dex.Code; 885 private void transformCode(Dex in, Code code, IndexMap indexMap) { in transformCode() 893 Code.Try[] tries = code.getTries(); in transformCode() 894 Code.CatchHandler[] catchHandlers = code.getCatchHandlers(); in transformCode() 930 private int[] transformCatchHandlers(IndexMap indexMap, Code.CatchHandler[] catchHandlers) { in transformCatchHandlers() 941 private void transformTries(Dex.Section out, Code.Try[] tries, in transformTries() 943 for (Code.Try tryItem : tries) { in transformTries() 1032 private void transformEncodedCatchHandler(Code.CatchHandler catchHandler, IndexMap indexMap) { in transformEncodedCatchHandler()
|