Home | History | Annotate | Download | only in network

Lines Matching refs:startIndex

46 static void skipSpaces(const String& input, unsigned& startIndex)
48 while (startIndex < input.length() && input[startIndex] == ' ')
49 ++startIndex;
57 static SubstringRange parseToken(const String& input, unsigned& startIndex)
60 unsigned tokenStart = startIndex;
61 unsigned& tokenEnd = startIndex;
75 static SubstringRange parseQuotedString(const String& input, unsigned& startIndex)
78 unsigned quotedStringStart = startIndex + 1;
79 unsigned& quotedStringEnd = startIndex;