Home
last modified time | relevance | path

Searched refs:FromStr (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheckImpl.h357 StringRef FromStr; variable
365 : Context(Context), FromStr(VarName), InsertIdx(InsertIdx) {} in Substitution()
370 StringRef getFromString() const { return FromStr; } in getFromString()
H A DFileCheck.cpp290 Expected<StringRef> VarVal = Context->getPatternVarValue(FromStr); in getResultRegex()
297 Expected<StringRef> VarVal = Context->getPatternVarValue(FromStr); in getResultForDiagnostics()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTImporter.cpp499 StringRef ImportASTStringRef(StringRef FromStr);
1057 StringRef ASTNodeImporter::ImportASTStringRef(StringRef FromStr) { in ImportASTStringRef() argument
1058 char *ToStore = new (Importer.getToContext()) char[FromStr.size()]; in ImportASTStringRef()
1059 std::copy(FromStr.begin(), FromStr.end(), ToStore); in ImportASTStringRef()
1060 return StringRef(ToStore, FromStr.size()); in ImportASTStringRef()