Searched defs:FromId (Results 1 - 4 of 4) sorted by relevance

/external/clang/include/clang/Tooling/
H A DRefactoringCallbacks.h50 /// \brief Replace the text of the statement bound to \c FromId with the text in
54 ReplaceStmtWithText(StringRef FromId, StringRef ToText);
58 std::string FromId; member in class:clang::tooling::ReplaceStmtWithText
62 /// \brief Replace the text of the statement bound to \c FromId with the text of
66 ReplaceStmtWithStmt(StringRef FromId, StringRef ToId);
70 std::string FromId; member in class:clang::tooling::ReplaceStmtWithStmt
/external/clang/lib/Tooling/
H A DRefactoringCallbacks.cpp37 ReplaceStmtWithText::ReplaceStmtWithText(StringRef FromId, StringRef ToText) argument
38 : FromId(FromId), ToText(ToText) {}
42 if (const Stmt *FromMatch = Result.Nodes.getStmtAs<Stmt>(FromId)) {
50 ReplaceStmtWithStmt::ReplaceStmtWithStmt(StringRef FromId, StringRef ToId) argument
51 : FromId(FromId), ToId(ToId) {}
55 const Stmt *FromMatch = Result.Nodes.getStmtAs<Stmt>(FromId);
/external/chromium_org/content/child/appcache/
H A Dweb_application_cache_host_impl.cc52 WebApplicationCacheHostImpl* WebApplicationCacheHostImpl::FromId(int id) { function in class:content::WebApplicationCacheHostImpl
/external/clang/lib/AST/
H A DASTImporter.cpp5033 IdentifierInfo *ASTImporter::Import(const IdentifierInfo *FromId) { argument
5034 if (!FromId)
5037 return &ToContext.Idents.get(FromId->getName());

Completed in 149 milliseconds