Home
last modified time | relevance | path

Searched refs:FromId (Results 1 – 5 of 5) sorted by relevance

/external/clang/lib/Tooling/
DRefactoringCallbacks.cpp37 ReplaceStmtWithText::ReplaceStmtWithText(StringRef FromId, StringRef ToText) in ReplaceStmtWithText() argument
38 : FromId(FromId), ToText(ToText) {} in ReplaceStmtWithText()
42 if (const Stmt *FromMatch = Result.Nodes.getStmtAs<Stmt>(FromId)) { in run()
50 ReplaceStmtWithStmt::ReplaceStmtWithStmt(StringRef FromId, StringRef ToId) in ReplaceStmtWithStmt() argument
51 : FromId(FromId), ToId(ToId) {} in ReplaceStmtWithStmt()
55 const Stmt *FromMatch = Result.Nodes.getStmtAs<Stmt>(FromId); in run()
/external/clang/include/clang/Tooling/
DRefactoringCallbacks.h54 ReplaceStmtWithText(StringRef FromId, StringRef ToText);
58 std::string FromId;
66 ReplaceStmtWithStmt(StringRef FromId, StringRef ToId);
70 std::string FromId;
/external/clang/include/clang/AST/
DASTImporter.h194 IdentifierInfo *Import(const IdentifierInfo *FromId);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DLegalizeTypes.cpp653 auto FromId = getTableId(From); in ReplaceValueWith() local
656 if (FromId != ToId) in ReplaceValueWith()
657 ReplacedValues[FromId] = ToId; in ReplaceValueWith()
/external/clang/lib/AST/
DASTImporter.cpp6606 IdentifierInfo *ASTImporter::Import(const IdentifierInfo *FromId) { in Import() argument
6607 if (!FromId) in Import()
6610 IdentifierInfo *ToId = &ToContext.Idents.get(FromId->getName()); in Import()
6612 if (!ToId->getBuiltinID() && FromId->getBuiltinID()) in Import()
6613 ToId->setBuiltinID(FromId->getBuiltinID()); in Import()