Home
last modified time | relevance | path

Searched refs:FromId (Results 1 – 7 of 7) 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/chromium_org/content/child/appcache/
Dweb_application_cache_host_impl.h23 static WebApplicationCacheHostImpl* FromId(int id); in NON_EXPORTED_BASE()
Dappcache_frontend_impl.cc18 return WebApplicationCacheHostImpl::FromId(id); in GetHost()
Dweb_application_cache_host_impl.cc52 WebApplicationCacheHostImpl* WebApplicationCacheHostImpl::FromId(int id) { in FromId() function in content::WebApplicationCacheHostImpl
/external/clang/include/clang/AST/
DASTImporter.h188 IdentifierInfo *Import(const IdentifierInfo *FromId);
/external/clang/lib/AST/
DASTImporter.cpp5033 IdentifierInfo *ASTImporter::Import(const IdentifierInfo *FromId) { in Import() argument
5034 if (!FromId) in Import()
5037 return &ToContext.Idents.get(FromId->getName()); in Import()