Lines Matching refs:nextEnd
458 const char* nextEnd = paren; in checkMethod() local
461 methodParser.fChar = nextEnd + 1; in checkMethod()
463 if (!this->nextMethodParam(&methodParser, &nextEnd, ¶mName)) { in checkMethod()
488 if (')' == nextEnd[0]) { in checkMethod()
491 } while (')' != nextEnd[0]); in checkMethod()
731 const char* nextEnd = delimiter ? delimiter : methodParser.fEnd; in formatFunction() local
733 while (nextStart < nextEnd && ' ' >= nextStart[0]) { in formatFunction()
737 while (nextEnd > nextStart && ' ' >= nextEnd[-1]) { in formatFunction()
738 --nextEnd; in formatFunction()
741 nextEnd += 1; in formatFunction()
751 lastEnd = nextEnd; in formatFunction()
764 const char* nextEnd = delimiter ? delimiter : methodParser.fEnd; in formatFunction() local
766 while (nextStart < nextEnd && ' ' >= nextStart[0]) { in formatFunction()
770 while (nextEnd > nextStart && ' ' >= nextEnd[-1]) { in formatFunction()
771 --nextEnd; in formatFunction()
774 nextEnd += 1; in formatFunction()
789 if (nextEnd - nextStart >= (ptrdiff_t) (limit - written)) { in formatFunction()
799 lastEnd = nextEnd; in formatFunction()
995 const char* nextEnd = *nextEndPtr; in nextMethodParam() local
996 const char* paramEnd = nextEnd; in nextMethodParam()
1028 if (')' != nextEnd[0]) { in nextMethodParam()