Searched refs:in (Results 26 - 44 of 44) sorted by relevance

12

/dalvik/tools/dexdeps/src/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
/dalvik/dx/tests/098-dex-jsr-ret-throw/
H A DViewDebug$ViewServer.class ... run () String[] params String command java.io.BufferedReader in java.io.IOException e java.io. ...
/dalvik/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
46 # generate the debug .dex files, with a copy in ./dalvik/DEBUG-FILES.
/dalvik/dexdump/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
16 # dexdump, similar in purpose to objdump.
/dalvik/dx/src/com/android/dx/cf/direct/
H A DClassPathOpener.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
33 * Opens all the class files found in a class path element. Path elements
45 * classes and "package-info" occurs before all other classes in that
110 * classes and "package-info" occurs before all other classes in that
123 * classes and "package-info" occurs before all other classes in that
182 * classes and "package-info" preceeds all other classes in its package.
270 InputStream in = zip.getInputStream(one);
274 while ((read = in.read(buf)) != -1) {
278 in
[all...]
H A DStdAttributeFactory.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
601 ByteArray.MyDataInputStream in = bytes.makeDataInputStream();
606 int startPc = in.readUnsignedShort();
607 int length = in.readUnsignedShort();
608 int nameIdx = in.readUnsignedShort();
609 int typeIdx = in.readUnsignedShort();
610 int index = in.readUnsignedShort();
/dalvik/dx/src/com/android/dex/
H A DTableOfContents.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
123 private void readMap(Dex.Section in) throws IOException { argument
124 int mapSize = in.readInt();
127 short type = in.readShort();
128 in.readShort(); // unused
130 int size = in.readInt();
131 int offset = in.readInt();
H A DDex.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
49 * The bytes of a dex file in memory for reading and writing. All int offsets
94 * Creates a new dex buffer of the dex in {@code in}, and closes {@code in}.
96 public Dex(InputStream in) throws IOException { argument
98 loadFrom(in);
100 in.close();
117 throw new DexException("Expected " + DexFormat.DEX_IN_JAR_NAME + " in "
131 loadFrom(InputStream in) argument
779 private final Dex.Section in = open(tableOfContents.classDefs.off); field in class:Dex.ClassDefIterator
[all...]
/dalvik/dx/etc/
H A Ddx.bat5 REM you may not use this file except in compliance with the License.
10 REM Unless required by applicable law or agreed to in writing, software
19 REM Locate dx.jar in the directory where dx.bat was found and start it.
25 rem Check we have a valid Java.exe in the path.
H A DmainDexClasses.bat5 REM you may not use this file except in compliance with the License.
10 REM Unless required by applicable law or agreed to in writing, software
19 rem Check we have a valid Java.exe in the path.
28 REM Locate dx.jar in the directory where dx.bat was found.
/dalvik/dx/junit-tests/com/android/dx/merge/
H A DDexMergerTest.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
67 try (InputStream in = getClass().getClassLoader().getResourceAsStream(path);
72 zip.write(readEntireStream(in));
/dalvik/dx/tests/119-merge-conflict/
H A Drun6 # you may not use this file except in compliance with the License.
11 # Unless required by applicable law or agreed to in writing, software
17 # Find dx.jar from dx in the android dev tree
24 for i in "$dxjar" "$junitjar" "$junitdex"; do
/dalvik/libdex/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
/dalvik/tools/dexdeps/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
/dalvik/dx/tests/115-merge/
H A Drun6 # you may not use this file except in compliance with the License.
11 # Unless required by applicable law or agreed to in writing, software
17 # Find dx.jar from dx in the android dev tree
24 for i in "$dxjar" "$junitjar" "$junitdex"; do
/dalvik/dx/tests/135-invoke-custom/
H A Drun6 # you may not use this file except in compliance with the License.
11 # Unless required by applicable law or agreed to in writing, software
29 for SDK_VERSION in ${UNSUPPORTED_SDK_VERSION} ${SUPPORTED_SDK_VERSION}; do
/dalvik/dx/src/com/android/dx/ssa/
H A DDominators.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
27 * See A Fast Algorithm for Finding Dominators in a Flowgraph
30 * This implementation runs in time O(n log n). The time bound
33 * overheads are high enough that the current method is faster in all but the
80 * to avoid calling a large amount of code in the constructor.)
113 * @param in Basic block whose DFS info we are path compressing.
115 private void compress(SsaBasicBlock in) { argument
116 DFSInfo bbInfo = info[in.getIndex()];
122 worklist.add(in);
[all...]
/dalvik/dx/tests/115-merge/com/android/dx/merge/
H A DDexMergeTest.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
129 * Merging dex files uses pessimistic sizes that naturally leave gaps in the
190 private void copy(InputStream in, OutputStream out) throws IOException { argument
193 while ((count = in.read(buffer)) != -1) {
196 in.close();
/dalvik/opcode-gen/
H A Dopcode-gen.awk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
233 # Helper to print out an element in a multi-column fashion. It returns
235 # in.
375 # Given an opcode by index, find the next opcode in the same family
399 # values are in the range 0-0x1ff, whereas the unpacked opcodes sparsely
425 # Note: This must be the inverse of the corresponding code in
437 # definition in cases
448 # That is, this is the name to use for a constant definition in cases
499 flagValues["optimized"] = "0"; # Not represented in
[all...]

Completed in 708 milliseconds

12