Searched refs:FromId (Results 1 – 6 of 6) sorted by relevance
/external/clang/lib/Tooling/ |
D | RefactoringCallbacks.cpp | 37 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/ |
D | fast-accessor-assembler.cc | 55 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 …]
|
D | fast-accessor-assembler.h | 81 Node* FromId(ValueId value) const; 82 RawMachineLabel* FromId(LabelId value) const;
|
/external/clang/include/clang/Tooling/ |
D | RefactoringCallbacks.h | 54 ReplaceStmtWithText(StringRef FromId, StringRef ToText); 58 std::string FromId; 66 ReplaceStmtWithStmt(StringRef FromId, StringRef ToId); 70 std::string FromId;
|
/external/clang/include/clang/AST/ |
D | ASTImporter.h | 193 IdentifierInfo *Import(const IdentifierInfo *FromId);
|
/external/clang/lib/AST/ |
D | ASTImporter.cpp | 5842 IdentifierInfo *ASTImporter::Import(const IdentifierInfo *FromId) { in Import() argument 5843 if (!FromId) in Import() 5846 return &ToContext.Idents.get(FromId->getName()); in Import()
|