Home | History | Annotate | Download | only in FileCheck

Lines Matching defs:it

10 // FileCheck does a line-by line check of a file that validates whether it
14 // the file matched the expected contents, and exit status of 1 if it did not
167 /// \return offset of the closing sequence within Str, or npos if it was not
193 // Check to see if this is a fixed string, or if it has regex pieces.
235 // (or some other regex) and assigns it to the FileCheck variable 'foo'. The
238 // it. This is to catch some common errors.
380 // If this is the EOF pattern, match it immediately.
386 // If this is a fixed string pattern, just match it now.
409 StringMap<StringRef>::iterator it =
412 if (it == VariableTable.end())
415 // Look up the value and escape it so that we can put it into the regex.
416 Value += Regex::escape(it->second);
419 // Plop it into the regex at the adjusted offset.
488 StringMap<StringRef>::const_iterator it = VariableTable.find(Var);
491 if (it == VariableTable.end()) {
497 OS.write_escaped(it->second) << "\"";
543 // failed, as it can be hard to spot simple one character differences.
657 // whitespace canonicalization is disabled, dump it to output as is.
790 // it. This should also prevent matching the wrong prefix when one is a
801 // If the first prefix is invalid, we should continue the search after it.
1207 // Re-calc it as the offset relative to the start of the original string.
1304 // Open the file to check and add it to SourceMgr.