Home
last modified time | relevance | path

Searched refs:PrefixLoc (Results 1 – 2 of 2) sorted by relevance

/external/llvm/utils/FileCheck/
DFileCheck.cpp793 size_t PrefixLoc = Buffer.find(Prefix); in FindFirstCandidateMatch() local
795 if (PrefixLoc == StringRef::npos) in FindFirstCandidateMatch()
803 if (PrefixLoc < SearchLoc) in FindFirstCandidateMatch()
804 SearchLoc = SkipWord(Buffer, PrefixLoc); in FindFirstCandidateMatch()
807 if (PrefixLoc > FirstLoc) in FindFirstCandidateMatch()
811 if (PrefixLoc == FirstLoc && Prefix.size() < FirstPrefix.size()) in FindFirstCandidateMatch()
814 StringRef Rest = Buffer.drop_front(PrefixLoc); in FindFirstCandidateMatch()
818 if (PrefixLoc != 0 && IsPartOfWord(Buffer[PrefixLoc - 1])) in FindFirstCandidateMatch()
823 FirstLoc = PrefixLoc; in FindFirstCandidateMatch()
913 size_t PrefixLoc; in ReadCheckFile() local
[all …]
/external/llvm/lib/MC/MCParser/
DAsmParser.cpp2470 SMLoc PrefixLoc = getLexer().getLoc(); in parseIdentifier() local
2478 if (PrefixLoc.getPointer() + 1 != getTok().getLoc().getPointer()) in parseIdentifier()
2483 StringRef(PrefixLoc.getPointer(), getTok().getIdentifier().size() + 1); in parseIdentifier()