Searched refs:CheckPrefix (Results 1 - 2 of 2) sorted by relevance

/external/swiftshader/third_party/LLVM/utils/FileCheck/
H A DFileCheck.cpp41 CheckPrefix("check-prefix", cl::init("CHECK"),
121 CheckPrefix+":'", "error");
513 // Find all instances of CheckPrefix followed by : in the file.
520 Buffer = Buffer.substr(Buffer.find(CheckPrefix));
533 if (Buffer[CheckPrefix.size()] == ':') {
534 Buffer = Buffer.substr(CheckPrefix.size()+1);
535 } else if (Buffer.size() > CheckPrefix.size()+6 &&
536 memcmp(Buffer.data()+CheckPrefix.size(), "-NEXT:", 6) == 0) {
537 Buffer = Buffer.substr(CheckPrefix.size()+7);
539 } else if (Buffer.size() > CheckPrefix
570 CheckPrefix+ ": line", "error"); local
[all...]
/external/llvm/utils/FileCheck/
H A DFileCheck.cpp881 // Find all instances of CheckPrefix followed by : in the file.
907 // LineNumber keeps track of the line on which CheckPrefix instances are
1276 static bool ValidateCheckPrefix(StringRef CheckPrefix) { argument
1278 return Validator.match(CheckPrefix);

Completed in 142 milliseconds