Lines Matching refs:forLoop
158 struct ForLoop *forLoop; member
408 if (!includingInnermost && entries[n - 1].forLoop == NULL) in PrintStackTrace()
422 if (entry->forLoop != NULL) { in PrintStackTrace()
423 char *details = ForLoop_Details(entry->forLoop); in PrintStackTrace()
427 } else if (i + 1 < n && entries[i + 1].forLoop != NULL) { in PrintStackTrace()
2128 if (incs[i - 1].forLoop == NULL) in GetActuallyIncludingFile()
2207 Buffer buf, struct ForLoop *forLoop) in Parse_PushInput() argument
2211 if (forLoop != NULL) in Parse_PushInput()
2217 forLoop != NULL ? ".for loop in": "file", name, lineno); in Parse_PushInput()
2227 curFile->guardState = forLoop == NULL ? GS_START : GS_NO; in Parse_PushInput()
2229 curFile->forLoop = forLoop; in Parse_PushInput()
2231 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()
2380 if (curFile->forLoop != NULL) in ParseEOF()
2381 ForLoop_Free(curFile->forLoop); in ParseEOF()
2786 if (curFile->forLoop != NULL) { in HandleBreak()
2788 For_Break(curFile->forLoop); in HandleBreak()