Searched defs:str (Results 1 - 7 of 7) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/util/
H A DExceptionWithContext.java37 * @param str {@code non-null;} context to add
40 public static ExceptionWithContext withContext(Throwable ex, String str) { argument
49 ewc.addContext(str);
108 * @param str {@code non-null;} new context
110 public void addContext(String str) { argument
111 if (str == null) {
112 throw new NullPointerException("str == null");
115 context.append(str);
116 if (!str.endsWith("\n")) {
H A DIndentingWriter.java151 public void write(String str, int off, int len) throws IOException { argument
154 write(str.charAt(off));
/dalvik/dx/src/com/android/dx/util/
H A DIndentingWriter.java151 public void write(String str, int off, int len) throws IOException { argument
154 write(str.charAt(off));
/dalvik/dexlist/
H A DDexList.cpp55 static char* descriptorToDot(const char* str) argument
57 size_t at = strlen(str);
60 if (str[0] == 'L') {
61 assert(str[at - 1] == ';');
63 str++; /* Skip the 'L'. */
71 newStr[at] = (str[at] == '/') ? '.' : str[at];
/dalvik/libdex/
H A DDexFile.cpp163 static u4 classDescriptorHash(const char* str) argument
167 while (*str != '\0')
168 hash = hash * 31 + *str++;
463 const char* str; local
465 str = (const char*) (pDexFile->baseAddr + offset);
466 if (strcmp(str, descriptor) == 0) {
/dalvik/dexdump/
H A DDexDump.cpp126 static char* descriptorToDot(const char* str) argument
128 int targetLen = strlen(str);
134 while (targetLen > 1 && str[offset] == '[') {
142 str = primitiveTypeLabel(str[offset]);
144 targetLen = strlen(str);
147 if (targetLen >= 2 && str[offset] == 'L' &&
148 str[offset+targetLen-1] == ';')
160 char ch = str[offset + i];
181 static char* descriptorClassToDot(const char* str) argument
325 char* str; local
[all...]
/dalvik/dx/etc/
H A Djasmin.jarMETA-INF/ META-INF/MANIFEST.MF jas/ jas/AnnotDefAttr.class AnnotDefAttr.java package jas ...

Completed in 1024 milliseconds