Home
last modified time | relevance | path

Searched refs:FromId (Results 1 – 6 of 6) 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/v8/src/compiler/
Dfast-accessor-assembler.cc55 assembler_->Load(MachineType::Pointer(), FromId(value), in LoadInternalField()
75 MachineType::Pointer(), FromId(value), in LoadInternalField()
98 return FromRaw(assembler_->Load(MachineType::IntPtr(), FromId(value), in LoadValue()
108 assembler_->Load(MachineType::Pointer(), FromId(value), in LoadObject()
115 assembler_->Return(FromId(value)); in ReturnValue()
124 assembler_->Word32And(FromId(value), assembler_->Int32Constant(mask)), in CheckFlagSetOrReturnNull()
137 assembler_->IntPtrEqual(FromId(value), assembler_->IntPtrConstant(0)), in CheckNotZeroOrReturnNull()
155 assembler_->Bind(FromId(label_id)); in SetLabel()
164 assembler_->IntPtrEqual(FromId(value_id), assembler_->IntPtrConstant(0)), in CheckNotZeroOrJump()
165 &pass, FromId(label_id)); in CheckNotZeroOrJump()
[all …]
Dfast-accessor-assembler.h81 Node* FromId(ValueId value) const;
82 RawMachineLabel* FromId(LabelId value) const;
/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.h193 IdentifierInfo *Import(const IdentifierInfo *FromId);
/external/clang/lib/AST/
DASTImporter.cpp5842 IdentifierInfo *ASTImporter::Import(const IdentifierInfo *FromId) { in Import() argument
5843 if (!FromId) in Import()
5846 return &ToContext.Idents.get(FromId->getName()); in Import()