Searched defs:dex (Results 1 - 25 of 117) sorted by last modified time

12345

/external/vogar/src/vogar/android/
H A DAndroidSdk.java183 this.dexCache = new Md5Cache(log, "dex", hostFileCache);
188 * Converts all the .class files on 'classpath' into a dex file written to 'output'.
190 public void dex(File output, Classpath classpath) { method in class:AndroidSdk
197 log.verbose("dex cache hit for " + classpath);
211 * handle large dx input when building dex for APK.
217 .args("--dex")
233 public void addToApk(File apk, File dex) { argument
234 new Command(log, "aapt", "add", "-k", apk.getPath(), dex.getPath()).execute();
H A DInstallApkTask.java45 // We can't put multiple dex files in one apk.
46 // We can't just give dex multiple jars with conflicting class names
49 // 1. dx to create a dex
50 // 2. aapt the dex to create apk
53 File dex = createDex(action, jar);
54 File apk = createApk(action, dex);
65 File dex = run.localFile(action, "classes.dex");
68 run.androidSdk.dex(dex, classesToDe
72 createApk(Action action, File dex) argument
[all...]
/external/toybox/lib/
H A Dargs.c99 unsigned dex[3]; // which bits to disable/enable/exclude in toys.optflags member in struct:opts
141 if (toys.optflags & opt->dex[0]) {
147 if (clr->arg && (i & toys.optflags & opt->dex[0])) *clr->arg = 0;
148 toys.optflags &= ~opt->dex[0];
152 toys.optflags |= opt->dex[1];
153 gof->excludes |= opt->dex[2];
162 if (toys.optflags & bad->dex[2]) break;
330 new->dex[1] = u;
359 if (bits&(1<<i)) opt->dex[idx] |= bits&~(1<<i);
/external/dexmaker/src/dx/java/com/android/dx/dex/
H A DDexFormat.java17 package com.android.dx.dex;
20 * Constants that show up in and are otherwise related to {@code .dex}
36 * file name of the primary {@code .dex} file inside an
39 public static final String DEX_IN_JAR_NAME = "classes.dex";
41 /** common prefix for all dex file "magic numbers" */
42 public static final String MAGIC_PREFIX = "dex\n";
44 /** common suffix for all dex file "magic numbers" */
47 /** dex file version number for the current format variant */
50 /** dex file version number for API level 13 and earlier */
60 * or {@code -1} if the given array is not a well-formed dex fil
[all...]
H A DDexOptions.java17 package com.android.dx.dex;
20 * Container for options used to control details of dex file generation.
27 * Gets the dex file magic number corresponding to this instance.
H A DSizeOf.java17 package com.android.dx.dex;
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DArrayData.java17 package com.android.dx.dex.code;
H A DBlockAddresses.java17 package com.android.dx.dex.code;
H A DCatchBuilder.java17 package com.android.dx.dex.code;
H A DCatchHandlerList.java17 package com.android.dx.dex.code;
H A DCatchTable.java17 package com.android.dx.dex.code;
H A DCodeAddress.java17 package com.android.dx.dex.code;
H A DCstInsn.java17 package com.android.dx.dex.code;
H A DDalvCode.java17 package com.android.dx.dex.code;
26 * corresponds to a {@code code} structure in a {@code .dex} file.
H A DDalvInsn.java17 package com.android.dx.dex.code;
H A DDalvInsnList.java17 package com.android.dx.dex.code;
H A DDop.java17 package com.android.dx.dex.code;
H A DDops.java17 package com.android.dx.dex.code;
19 import com.android.dx.dex.DexOptions;
20 import com.android.dx.dex.code.form.Form10t;
21 import com.android.dx.dex.code.form.Form10x;
22 import com.android.dx.dex.code.form.Form11n;
23 import com.android.dx.dex.code.form.Form11x;
24 import com.android.dx.dex.code.form.Form12x;
25 import com.android.dx.dex.code.form.Form20t;
26 import com.android.dx.dex.code.form.Form21c;
27 import com.android.dx.dex
[all...]
H A DFixedSizeInsn.java17 package com.android.dx.dex.code;
H A DHighRegisterPrefix.java17 package com.android.dx.dex.code;
H A DInsnFormat.java17 package com.android.dx.dex.code;
H A DLocalEnd.java17 package com.android.dx.dex.code;
H A DLocalList.java17 package com.android.dx.dex.code;
H A DLocalSnapshot.java17 package com.android.dx.dex.code;
H A DLocalStart.java17 package com.android.dx.dex.code;

Completed in 290 milliseconds

12345