Lines Matching refs:str
126 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()
190 lastSlash = str + 1; /* start past 'L' */ in descriptorClassToDot()
325 char* str; in createAccessFlagStr() local
334 cp = str = (char*) malloc(count * (kLongest+1) +1); in createAccessFlagStr()
340 if (cp != str) in createAccessFlagStr()
350 return str; in createAccessFlagStr()