HomeSort by: relevance | last modified time | path
    Searched refs:ReferenceType (Results 1 - 25 of 67) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/llvm/lib/MC/MCDisassembler/
MCExternalSymbolizer.cpp 62 uint64_t ReferenceType;
64 ReferenceType = LLVMDisassembler_ReferenceType_In_Branch;
66 ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
68 const char *Name = SymbolLookUp(DisInfo, Value, &ReferenceType, Address,
74 if(ReferenceType == LLVMDisassembler_ReferenceType_DeMangled_Name)
81 if(ReferenceType == LLVMDisassembler_ReferenceType_Out_SymbolStub)
83 else if(ReferenceType == LLVMDisassembler_ReferenceType_Out_Objc_Message)
160 uint64_t ReferenceType = LLVMDisassembler_ReferenceType_In_PCrel_Load;
162 (void)SymbolLookUp(DisInfo, Value, &ReferenceType, Address, &ReferenceName);
163 if(ReferenceType == LLVMDisassembler_ReferenceType_Out_LitPool_SymAddr
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/Disassembler/
AArch64ExternalSymbolizer.cpp 72 uint64_t ReferenceType;
77 ReferenceType = LLVMDisassembler_ReferenceType_In_Branch;
78 const char *Name = SymbolLookUp(DisInfo, Address + Value, &ReferenceType,
87 if (ReferenceType == LLVMDisassembler_ReferenceType_Out_SymbolStub)
89 else if (ReferenceType ==
93 ReferenceType = LLVMDisassembler_ReferenceType_In_ARM64_ADRP;
101 SymbolLookUp(DisInfo, EncodedInst, &ReferenceType, Address,
110 ReferenceType = LLVMDisassembler_ReferenceType_In_ARM64_ADDXri;
112 ReferenceType = LLVMDisassembler_ReferenceType_In_ARM64_LDRXui;
114 ReferenceType = LLVMDisassembler_ReferenceType_In_ARM64_LDRXl
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/
ASTSelection.h 63 using ReferenceType = std::reference_wrapper<const SelectedASTNode>;
101 ArrayRef<SelectedASTNode::ReferenceType> getParents() { return Parents; }
137 CodeRangeASTSelection(SelectedASTNode::ReferenceType SelectedNode,
138 ArrayRef<SelectedASTNode::ReferenceType> Parents,
145 SelectedASTNode::ReferenceType SelectedNode;
147 llvm::SmallVector<SelectedASTNode::ReferenceType, 8> Parents;
  /src/external/apache2/llvm/dist/llvm/include/llvm-c/
DisassemblerTypes.h 106 * for the ReferenceValue NULL is returned. The ReferenceType of the
109 * indirectly in ReferenceType along with ReferenceName if any, or that is set
114 uint64_t *ReferenceType,
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/
ASTSelection.cpp 251 SelectedASTNode::ReferenceType Node;
252 llvm::SmallVector<SelectedASTNode::ReferenceType, 8> Parents;
344 llvm::SmallVectorImpl<SelectedASTNode::ReferenceType> &ParentStack) {
374 llvm::SmallVector<SelectedASTNode::ReferenceType, 16> ParentStack;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExceptionSpec.cpp 31 else if (const ReferenceType *RefTy = T->getAs<ReferenceType>())
138 } else if (const ReferenceType *RT = T->getAs<ReferenceType>()) {
679 const ReferenceType *RefTy = HandlerType->getAs<ReferenceType>();
835 if (const ReferenceType *RefTy = SubI->getAs<ReferenceType>())
1039 else if (const ReferenceType *RT = T->getAs<ReferenceType>())
    [all...]
SemaTemplateDeduction.cpp 1369 const ReferenceType *ParamRef = Param->getAs<ReferenceType>();
1374 const ReferenceType *ArgRef = Arg->getAs<ReferenceType>();
3427 if (const ReferenceType *DeducedARef = DeducedA->getAs<ReferenceType>())
3429 if (const ReferenceType *ARef = A->getAs<ReferenceType>())
3437 if (const ReferenceType *OriginalParamRef
3438 = OriginalParamType->getAs<ReferenceType>()) {
    [all...]
SemaCast.cpp 765 const ReferenceType *DestReference = nullptr;
768 } else if ((DestReference = DestType->getAs<ReferenceType>())) {
1528 const ReferenceType *DestReference = DestType->getAs<ReferenceType>();
1879 if (const ReferenceType *DestTypeTmp =DestType->getAs<ReferenceType>()) {
1993 if (!DestType->getAs<ReferenceType>()) {
2207 if (const ReferenceType *DestTypeTmp = DestType->getAs<ReferenceType>()) {
SemaDeclCXX.cpp 1559 if (const ReferenceType *R = NewType->getAs<ReferenceType>()) {
1561 OldType = OldType->castAs<ReferenceType>()->getPointeeType();
8718 if (const ReferenceType *RT =
8719 MD->getParamDecl(0)->getType()->getAs<ReferenceType>())
9591 const ReferenceType *RT = Param0->getType()->getAs<ReferenceType>();
10708 if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>())
11373 if (const ReferenceType *RT = ArgType->getAs<ReferenceType>()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Function.cpp 1473 auto *ReferenceType = dyn_cast<VectorType>(ArgTys[D.getArgumentNumber()]);
1476 if ((ReferenceType != nullptr) != (ThisArgType != nullptr))
1480 if (ReferenceType->getElementCount() !=
1491 Type * ReferenceType = ArgTys[D.getArgumentNumber()];
1493 return (!ThisArgType || ThisArgType->getElementType() != ReferenceType);
1498 VectorType * ReferenceType =
1502 return (!ThisArgType || !ReferenceType ||
1503 ThisArgType->getElementType() != ReferenceType->getElementType());
1525 auto *ReferenceType = dyn_cast<VectorType>(ArgTys[RefArgNumber]);
1527 if (!ThisArgVecTy || !ReferenceType ||
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
CanonicalType.h 61 /// converted to @c CanQual<ReferenceType>. Note that any @c CanQual type can
435 struct CanProxyAdaptor<ReferenceType> : public CanProxyBase<ReferenceType> {
626 if (CanQual<ReferenceType> RefType = getAs<ReferenceType>())
Type.h 1635 friend class ReferenceType;
2745 class ReferenceType : public Type, public llvm::FoldingSetNode {
2749 ReferenceType(TypeClass tc, QualType Referencee, QualType CanonicalRef,
2765 const ReferenceType *T = this;
2767 T = T->PointeeType->castAs<ReferenceType>();
2789 class LValueReferenceType : public ReferenceType {
2794 : ReferenceType(LValueReference, Referencee, CanonicalRef,
2807 class RValueReferenceType : public ReferenceType {
2811 : ReferenceType(RValueReference, Referencee, CanonicalRef, false) {}
6624 if (const auto *RefType = (*this)->getAs<ReferenceType>())
    [all...]
JSONNodeDumper.h 212 void VisitRValueReferenceType(const ReferenceType *RT);
TextNodeDumper.h 299 void VisitRValueReferenceType(const ReferenceType *T);
ASTNodeTraverser.h 325 void VisitReferenceType(const ReferenceType *T) {
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 276 if (VD->getType()->getAs<ReferenceType>())
387 if (V->getType()->getAs<ReferenceType>())
GTestChecker.cpp 229 auto *RefTy = CtorDecl->getParamDecl(0)->getType()->getAs<ReferenceType>();
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
Transforms.cpp 371 else if (const ReferenceType *RT = T->getAs<ReferenceType>())
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
MachODump.cpp 3134 // string is set into ReferenceName and ReferenceType is set to
3136 // then both ReferenceType and ReferenceName are left unchanged.
3138 uint64_t *ReferenceType,
3155 *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_Message;
3171 *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_Message;
3191 *ReferenceType = LLVMDisassembler_ReferenceType_Out_Objc_Message;
6851 // indirectly through ReferenceType.
6854 // cstring is returned and ReferenceType is set to
6858 // Class ref that name is returned and the ReferenceType is set accordingly.
6861 // and if found the symbol name is returned and ReferenceType is set t
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
QualTypeNames.cpp 397 if (isa<ReferenceType>(QT.getTypePtr())) {
Type.cpp 632 if (const auto *RT = getAs<ReferenceType>())
1742 else if (const auto *RT = getAs<ReferenceType>())
1817 Type *VisitReferenceType(const ReferenceType *T) {
3112 if (const auto *RefType = getTypePtr()->getAs<ReferenceType>())
3872 return Cache::get(cast<ReferenceType>(T)->getPointeeType());
3959 return computeTypeLinkageInfo(cast<ReferenceType>(T)->getPointeeType());
4282 if (const auto *Ref = getAs<ReferenceType>())
4333 if (const auto *ref = getAs<ReferenceType>())
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenTypes.cpp 632 const ReferenceType *RTy = cast<ReferenceType>(Ty);
CGVTables.cpp 65 (isa<ReferenceType>(typeL) && isa<ReferenceType>(typeR))));
  /src/external/apache2/llvm/dist/clang/lib/Index/
USRGeneration.cpp 803 if (const ReferenceType *RT = T->getAs<ReferenceType>()) {
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 1036 const AstTypeMatcher<ReferenceType> referenceType;
1058 PointerType, ReferenceType));

Completed in 61 milliseconds

1 2 3