Home
last modified time | relevance | path

Searched refs:spaceIndex (Results 1 – 3 of 3) sorted by relevance

/external/proguard/src/proguard/obfuscate/
DMappingReader.java150 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/
DCommandLineFlags.cpp163 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/
DSkCommandLineFlags.cpp165 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()