Searched refs:spaceIndex (Results 1 – 2 of 2) sorted by relevance
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()
172 int spaceIndex = LINE_LENGTH - 1; in print_indented() local173 while (spaceIndex > 0 && currLine[spaceIndex] != ' ') { in print_indented()174 spaceIndex--; in print_indented()177 if (0 == spaceIndex) { in print_indented()179 spaceIndex = LINE_LENGTH; in print_indented()185 SkDebugf(" %.*s\n", spaceIndex, currLine); in print_indented()186 currLine += spaceIndex + gap; in print_indented()