Searched refs:FromId (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DRefactoringCallbacks.cpp85 ReplaceStmtWithText::ReplaceStmtWithText(StringRef FromId, StringRef ToText) argument
86 : FromId(FromId), ToText(ToText) {}
90 if (const Stmt *FromMatch = Result.Nodes.getNodeAs<Stmt>(FromId)) {
103 ReplaceStmtWithStmt::ReplaceStmtWithStmt(StringRef FromId, StringRef ToId) argument
104 : FromId(FromId), ToId(ToId) {}
108 const Stmt *FromMatch = Result.Nodes.getNodeAs<Stmt>(FromId);
155 llvm::StringRef FromId, std::vector<TemplateElement> Template)
156 : FromId(FromI
154 ReplaceNodeWithTemplate( llvm::StringRef FromId, std::vector<TemplateElement> Template) argument
159 create(StringRef FromId, StringRef ToTemplate) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/
H A DRefactoringCallbacks.h76 /// Replace the text of the statement bound to \c FromId with the text in
80 ReplaceStmtWithText(StringRef FromId, StringRef ToText);
84 std::string FromId; member in class:clang::tooling::ReplaceStmtWithText
88 /// Replace the text of an AST node bound to \c FromId with the result of
97 create(StringRef FromId, StringRef ToTemplate);
105 ReplaceNodeWithTemplate(llvm::StringRef FromId,
107 std::string FromId; member in class:clang::tooling::ReplaceNodeWithTemplate
111 /// Replace the text of the statement bound to \c FromId with the text of
115 ReplaceStmtWithStmt(StringRef FromId, StringRef ToId);
119 std::string FromId; member in class:clang::tooling::ReplaceStmtWithStmt
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DDFAEmitter.cpp58 auto FromId = DfaStates.idFor(DS); local
83 DfaTransitions.emplace(std::make_pair(FromId, A), std::make_pair(ToId, TI));
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DASTImporter.h470 /// returns nullptr only if the FromId was nullptr.
471 IdentifierInfo *Import(const IdentifierInfo *FromId);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.cpp637 auto FromId = getTableId(From); local
640 if (FromId != ToId)
641 ReplacedValues[FromId] = ToId;
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DASTImporter.cpp8931 IdentifierInfo *ASTImporter::Import(const IdentifierInfo *FromId) { argument
8932 if (!FromId)
8935 IdentifierInfo *ToId = &ToContext.Idents.get(FromId->getName());
8937 if (!ToId->getBuiltinID() && FromId->getBuiltinID())
8938 ToId->setBuiltinID(FromId->getBuiltinID());

Completed in 133 milliseconds