Searched refs:suffix (Results 1 - 8 of 8) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DOutputCollector.java24 * list and a suffix (generally consisting of adjunct data referred to
37 * {@code null-ok;} suffix for the output, or {@code null} if the suffix
40 private ArrayList<DalvInsn> suffix; field in class:OutputCollector
47 * suffix
53 this.suffix = new ArrayList<DalvInsn>(suffixInitialCapacity);
80 * Adds an instruction to the output suffix.
85 suffix.add(insn);
97 if (suffix == null) {
106 * Helper for {@link #getFinisher}, which appends the suffix t
[all...]
H A DOutputFinisher.java582 DalvInsn suffix;
587 suffix = null;
591 suffix = insn.hrSuffix();
612 if (suffix != null) {
613 result.add(suffix);
/dalvik/dx/src/com/android/dx/dex/code/
H A DOutputCollector.java25 * list and a suffix (generally consisting of adjunct data referred to
38 * {@code null-ok;} suffix for the output, or {@code null} if the suffix
41 private ArrayList<DalvInsn> suffix; field in class:OutputCollector
49 * suffix
55 this.suffix = new ArrayList<DalvInsn>(suffixInitialCapacity);
82 * Adds an instruction to the output suffix.
87 suffix.add(insn);
99 if (suffix == null) {
108 * Helper for {@link #getFinisher}, which appends the suffix t
[all...]
H A DOutputFinisher.java611 DalvInsn suffix;
616 suffix = null;
623 suffix = insn.expandedSuffix(compatRegs);
656 if (suffix != null) {
657 result.add(suffix);
/dalvik/dexgen/src/com/android/dexgen/util/
H A DFixedSizeList.java99 * @param suffix {@code null-ok;} suffix for the end of the result
102 public String toString(String prefix, String separator, String suffix) { argument
103 return toString0(prefix, separator, suffix, false);
113 * @param suffix {@code null-ok;} suffix for the end of the result
116 public String toHuman(String prefix, String separator, String suffix) { argument
117 return toString0(prefix, separator, suffix, true);
244 * @param suffix {@code null-ok;} suffix fo
248 toString0(String prefix, String separator, String suffix, boolean human) argument
[all...]
/dalvik/dx/src/com/android/dx/util/
H A DFixedSizeList.java99 * @param suffix {@code null-ok;} suffix for the end of the result
102 public String toString(String prefix, String separator, String suffix) { argument
103 return toString0(prefix, separator, suffix, false);
113 * @param suffix {@code null-ok;} suffix for the end of the result
116 public String toHuman(String prefix, String separator, String suffix) { argument
117 return toString0(prefix, separator, suffix, true);
244 * @param suffix {@code null-ok;} suffix fo
248 toString0(String prefix, String separator, String suffix, boolean human) argument
[all...]
/dalvik/vm/
H A DJarFile.cpp38 * but with the supplied suffix. E.g.,
45 static int openAlternateSuffix(const char *fileName, const char *suffix, argument
50 size_t suffixLen = strlen(suffix);
61 * the last dot, and copy the suffix to just after it.
69 memcpy(c + 1, suffix, suffixLen + 1);
/dalvik/vm/oo/
H A DClass.cpp586 * Get the filename suffix of the given file (everything after the
587 * last "." if any, or "<none>" if there's no apparent suffix). The
616 char suffix[10]; local
617 getFileNameSuffix(cpe->fileName, suffix, sizeof(suffix));
619 if ((strcmp(suffix, "jar") == 0) || (strcmp(suffix, "zip") == 0) ||
620 (strcmp(suffix, "apk") == 0)) {
627 } else if (strcmp(suffix, "dex") == 0) {
635 ALOGE("Unknown type suffix '
[all...]

Completed in 1133 milliseconds