Lines Matching refs:forLoop
145 struct ForLoop *forLoop; member
431 && entries[n - 1].forLoop == NULL) in GetStackTrace()
445 if (entry->forLoop != NULL) { in GetStackTrace()
446 char *details = ForLoop_Details(entry->forLoop); in GetStackTrace()
455 } else if (i + 1 < n && entries[i + 1].forLoop != NULL) { in GetStackTrace()
2133 if (incs[i - 1].forLoop == NULL) in GetActuallyIncludingFile()
2212 Buffer buf, struct ForLoop *forLoop) in Parse_PushInput() argument
2216 if (forLoop != NULL) in Parse_PushInput()
2222 forLoop != NULL ? ".for loop in ": "", name, lineno); in Parse_PushInput()
2232 curFile->guardState = forLoop == NULL ? GS_START : GS_NO; in Parse_PushInput()
2234 curFile->forLoop = forLoop; in Parse_PushInput()
2236 if (forLoop != NULL && !For_NextIteration(forLoop, &curFile->buf)) in Parse_PushInput()
2361 if (curFile->forLoop != NULL && in ParseEOF()
2362 For_NextIteration(curFile->forLoop, &curFile->buf)) { in ParseEOF()
2386 if (curFile->forLoop != NULL) in ParseEOF()
2387 ForLoop_Free(curFile->forLoop); in ParseEOF()
2785 if (curFile->forLoop != NULL) { in HandleBreak()
2787 For_Break(curFile->forLoop); in HandleBreak()