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

/external/llvm/utils/FileCheck/
H A DFileCheck.cpp748 size_t PrefixLoc = Buffer.find(Prefix); local
750 if (PrefixLoc == StringRef::npos)
758 if (PrefixLoc < SearchLoc)
759 SearchLoc = SkipWord(Buffer, PrefixLoc);
762 if (PrefixLoc > FirstLoc)
766 if (PrefixLoc == FirstLoc && Prefix.size() < FirstPrefix.size())
769 StringRef Rest = Buffer.drop_front(PrefixLoc);
773 if (PrefixLoc != 0 && IsPartOfWord(Buffer[PrefixLoc - 1]))
778 FirstLoc = PrefixLoc;
848 size_t PrefixLoc; local
[all...]
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp2240 SMLoc PrefixLoc = getLexer().getLoc(); local
2248 if (PrefixLoc.getPointer() + 1 != getTok().getLoc().getPointer())
2253 StringRef(PrefixLoc.getPointer(), getTok().getIdentifier().size() + 1);

Completed in 177 milliseconds