Searched refs:spaceIndex (Results 1 – 3 of 3) sorted by relevance
/external/proguard/src/proguard/obfuscate/ |
D | MappingReader.java | 150 int spaceIndex = line.indexOf(' ', colonIndex2 + 2); in processClassMemberMapping() 151 int argumentIndex1 = line.indexOf('(', spaceIndex + 1); in processClassMemberMapping() 153 …int arrowIndex = line.indexOf("->", Math.max(spaceIndex, argumentInd… in processClassMemberMapping() 155 if (spaceIndex < 0 || in processClassMemberMapping() 162 String type = line.substring(colonIndex2 + 1, spaceIndex).trim(); in processClassMemberMapping() 163 …String name = line.substring(spaceIndex + 1, argumentIndex1 >= 0 ? argumentIndex1 : arrowIndex)… in processClassMemberMapping()
|
/external/skia/tools/flags/ |
D | CommandLineFlags.cpp | 163 int spaceIndex = LINE_LENGTH - 1; in print_indented() local 164 while (spaceIndex > 0 && currLine[spaceIndex] != ' ') { in print_indented() 165 spaceIndex--; in print_indented() 168 if (0 == spaceIndex) { in print_indented() 170 spaceIndex = LINE_LENGTH; in print_indented() 176 SkDebugf(" %.*s\n", spaceIndex, currLine); in print_indented() 177 currLine += spaceIndex + gap; in print_indented()
|
/external/skqp/tools/flags/ |
D | SkCommandLineFlags.cpp | 165 int spaceIndex = LINE_LENGTH - 1; in print_indented() local 166 while (spaceIndex > 0 && currLine[spaceIndex] != ' ') { in print_indented() 167 spaceIndex--; in print_indented() 170 if (0 == spaceIndex) { in print_indented() 172 spaceIndex = LINE_LENGTH; in print_indented() 178 SkDebugf(" %.*s\n", spaceIndex, currLine); in print_indented() 179 currLine += spaceIndex + gap; in print_indented()
|