Searched refs:str (Results 1 – 8 of 8) sorted by relevance
40 public static ExceptionWithContext withContext(Throwable ex, String str) { in withContext() argument49 ewc.addContext(str); in withContext()110 public void addContext(String str) { in addContext() argument111 if (str == null) { in addContext()115 context.append(str); in addContext()116 if (!str.endsWith("\n")) { in addContext()
151 public void write(String str, int off, int len) throws IOException { in write() argument154 write(str.charAt(off)); in write()
55 static char* descriptorToDot(const char* str) in descriptorToDot() argument57 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()
3 .str { color: #080; }17 .str { color: #060; }
258 function attribToHtml(str) { argument259 return str.replace(pr_amp, '&')266 function textToHtml(str) { argument267 return str.replace(pr_amp, '&')
163 static u4 classDescriptorHash(const char* str) in classDescriptorHash() argument167 while (*str != '\0') in classDescriptorHash()168 hash = hash * 31 + *str++; in classDescriptorHash()463 const char* str; in dexFindClass() local465 str = (const char*) (pDexFile->baseAddr + offset); in dexFindClass()466 if (strcmp(str, descriptor) == 0) { in dexFindClass()
126 static char* descriptorToDot(const char* str) in descriptorToDot() argument128 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() argument188 lastSlash = strrchr(str, '/'); in descriptorClassToDot()[all …]