Home
last modified time | relevance | path

Searched refs:str (Results 1 – 8 of 8) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/util/
DExceptionWithContext.java40 public static ExceptionWithContext withContext(Throwable ex, String str) { in withContext() argument
49 ewc.addContext(str); in withContext()
110 public void addContext(String str) { in addContext() argument
111 if (str == null) { in addContext()
115 context.append(str); in addContext()
116 if (!str.endsWith("\n")) { in addContext()
DIndentingWriter.java151 public void write(String str, int off, int len) throws IOException { in write() argument
154 write(str.charAt(off)); in write()
/dalvik/dexlist/
DDexList.cpp55 static char* descriptorToDot(const char* str) in descriptorToDot() argument
57 size_t at = strlen(str); in descriptorToDot()
60 if (str[0] == 'L') { in descriptorToDot()
61 assert(str[at - 1] == ';'); in descriptorToDot()
63 str++; /* Skip the 'L'. */ in descriptorToDot()
71 newStr[at] = (str[at] == '/') ? '.' : str[at]; in descriptorToDot()
/dalvik/docs/
Dprettify.css3 .str { color: #080; }
17 .str { color: #060; }
Dprettify.js258 function attribToHtml(str) { argument
259 return str.replace(pr_amp, '&')
266 function textToHtml(str) { argument
267 return str.replace(pr_amp, '&')
/dalvik/dx/src/com/android/dx/util/
DIndentingWriter.java151 public void write(String str, int off, int len) throws IOException { in write() argument
154 write(str.charAt(off)); in write()
/dalvik/libdex/
DDexFile.cpp163 static u4 classDescriptorHash(const char* str) in classDescriptorHash() argument
167 while (*str != '\0') in classDescriptorHash()
168 hash = hash * 31 + *str++; in classDescriptorHash()
463 const char* str; in dexFindClass() local
465 str = (const char*) (pDexFile->baseAddr + offset); in dexFindClass()
466 if (strcmp(str, descriptor) == 0) { in dexFindClass()
/dalvik/dexdump/
DDexDump.cpp126 static char* descriptorToDot(const char* str) in descriptorToDot() argument
128 int targetLen = strlen(str); in descriptorToDot()
134 while (targetLen > 1 && str[offset] == '[') { in descriptorToDot()
142 str = primitiveTypeLabel(str[offset]); in descriptorToDot()
144 targetLen = strlen(str); in descriptorToDot()
147 if (targetLen >= 2 && str[offset] == 'L' && in descriptorToDot()
148 str[offset+targetLen-1] == ';') in descriptorToDot()
160 char ch = str[offset + i]; in descriptorToDot()
181 static char* descriptorClassToDot(const char* str) in descriptorClassToDot() argument
188 lastSlash = strrchr(str, '/'); in descriptorClassToDot()
[all …]