Lines Matching refs:forLoop
145 struct ForLoop *forLoop; member
410 if (!includingInnermost && entries[n - 1].forLoop == NULL) in PrintStackTrace()
424 if (entry->forLoop != NULL) { in PrintStackTrace()
425 char *details = ForLoop_Details(entry->forLoop); in PrintStackTrace()
429 } else if (i + 1 < n && entries[i + 1].forLoop != NULL) { in PrintStackTrace()
2076 if (incs[i - 1].forLoop == NULL) in GetActuallyIncludingFile()
2155 Buffer buf, struct ForLoop *forLoop) in Parse_PushInput() argument
2159 if (forLoop != NULL) in Parse_PushInput()
2165 forLoop != NULL ? ".for loop in": "file", name, lineno); in Parse_PushInput()
2175 curFile->guardState = forLoop == NULL ? GS_START : GS_NO; in Parse_PushInput()
2177 curFile->forLoop = forLoop; in Parse_PushInput()
2179 if (forLoop != NULL && !For_NextIteration(forLoop, &curFile->buf)) in Parse_PushInput()
2304 if (curFile->forLoop != NULL && in ParseEOF()
2305 For_NextIteration(curFile->forLoop, &curFile->buf)) { in ParseEOF()
2329 if (curFile->forLoop != NULL) in ParseEOF()
2330 ForLoop_Free(curFile->forLoop); in ParseEOF()
2728 if (curFile->forLoop != NULL) { in HandleBreak()
2730 For_Break(curFile->forLoop); in HandleBreak()