/external/clang/lib/Sema/ |
SemaDeclAttr.cpp | 367 static bool checkRecordTypeForCapability(Sema &S, QualType Ty) { 368 const RecordType *RT = getRecordType(Ty); 400 static bool checkTypedefTypeForCapability(QualType Ty) { 401 const auto *TD = Ty->getAs<TypedefType>(); 412 static bool typeHasCapability(Sema &S, QualType Ty) { 413 if (checkTypedefTypeForCapability(Ty)) 416 if (checkRecordTypeForCapability(S, Ty)) [all...] |
SemaExprObjC.cpp | 92 QualType Ty = Context.getObjCConstantStringInterface(); 93 if (!Ty.isNull()) { 94 Ty = Context.getObjCObjectPointerType(Ty); 108 Ty = Context.getObjCConstantStringInterface(); 109 Ty = Context.getObjCObjectPointerType(Ty); 115 Ty = Context.getObjCIdType(); 123 Ty = Context.getObjCConstantStringInterface(); 124 Ty = Context.getObjCObjectPointerType(Ty) [all...] |
/external/llvm/lib/Transforms/Vectorize/ |
SLPVectorizer.cpp | 246 Type *Ty = VL[0]->getType(); 248 if (VL[i]->getType() != Ty) 251 return Ty; 455 int getGatherCost(Type *Ty); 481 Value *Gather(ArrayRef<Value *> VL, VectorType *Ty); 896 Type *Ty = cast<Instruction>(VL[i])->getOperand(0)->getType(); 897 if (Ty != SrcTy || Ty->isAggregateType() || Ty->isVectorTy()) { [all...] |
/external/valgrind/main/mpi/ |
libmpiwrap.c | 259 static void showTy ( FILE* f, MPI_Datatype ty ) 261 if (ty == MPI_DATATYPE_NULL) fprintf(f,"DATATYPE_NULL"); 262 else if (ty == MPI_BYTE) fprintf(f,"BYTE"); 263 else if (ty == MPI_PACKED) fprintf(f,"PACKED"); 264 else if (ty == MPI_CHAR) fprintf(f,"CHAR"); 265 else if (ty == MPI_SHORT) fprintf(f,"SHORT"); 266 else if (ty == MPI_INT) fprintf(f,"INT"); 267 else if (ty == MPI_LONG) fprintf(f,"LONG"); 268 else if (ty == MPI_FLOAT) fprintf(f,"FLOAT"); 269 else if (ty == MPI_DOUBLE) fprintf(f,"DOUBLE") [all...] |
/external/clang/lib/CodeGen/ |
CGRecordLayoutBuilder.cpp | 611 llvm::Type *Ty = Types.ConvertTypeForMem(FD->getType()); 613 CharUnits::fromQuantity(Types.getDataLayout().getTypeAllocSize(Ty)); 643 llvm::StructType *Ty) { 651 BaseTy = Ty; 664 Ty->setBody(Builder.FieldTypes, Builder.Packed); 667 new CGRecordLayout(Ty, BaseTy, Builder.IsZeroInitializable, 693 assert(TypeSizeInBits == getDataLayout().getTypeAllocSizeInBits(Ty) && [all...] |
CGExprAgg.cpp | 585 QualType Ty = E->getSubExpr()->getType(); 586 QualType PtrTy = CGF.getContext().getPointerType(Ty); 590 CGF.MakeAddrLValue(CastPtr, Ty)); [all...] |
CodeGenTBAA.h | 85 QualType Ty,
|
CGCXXABI.cpp | 94 llvm::Type *Ty = CGF.ConvertType(MPT->getPointeeType())->getPointerTo(); 95 return llvm::Constant::getNullValue(Ty);
|
CGCXXABI.h | 210 virtual llvm::Constant *getAddrOfRTTIDescriptor(QualType Ty) = 0; 368 llvm::Type *Ty) = 0;
|
/external/llvm/lib/IR/ |
Type.cpp | 63 // 'Ty' without any reinterpretation of bits. For example, i8* to i32*. 65 bool Type::canLosslesslyBitCastTo(Type *Ty) const { 67 if (this == Ty) 71 if (!this->isFirstClassType() || !Ty->isFirstClassType()) 78 if (const VectorType *thatPTy = dyn_cast<VectorType>(Ty)) 80 if (Ty->getTypeID() == Type::X86_MMXTyID && 86 if (const VectorType *thatPTy = dyn_cast<VectorType>(Ty)) 94 return Ty->isPointerTy();
|
LLVMContextImpl.h | 51 KeyTy(const APInt& V, Type* Ty) : val(V), type(Ty) {}
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
DIE.h | 220 /// Ty - Type of data stored in the value. 222 Type Ty; 224 explicit DIEValue(Type T) : Ty(T) {} 229 Type getType() const { return Ty; }
|
/external/llvm/lib/Target/AArch64/ |
AArch64ISelLowering.h | 295 bool isLegalAddressingMode(const AddrMode &AM, Type *Ty) const override; 302 int getScalingFactorCost(const AddrMode &AM, Type *Ty) const override; 318 Type *Ty) const override;
|
/external/clang/lib/AST/ |
Type.cpp | 47 const Type* ty = getTypePtr(); local 49 if (ty->isPointerType() || ty->isReferenceType()) 50 return ty->getPointeeType().getBaseTypeIdentifier(); 51 else if (ty->isRecordType()) 52 ND = ty->getAs<RecordType>()->getDecl(); 53 else if (ty->isEnumeralType()) 54 ND = ty->getAs<EnumType>()->getDecl(); 55 else if (ty->getTypeClass() == Type::Typedef) 56 ND = ty->getAs<TypedefType>()->getDecl() 1247 const Type *ty = getTypePtr(); local [all...] |
/external/clang/lib/Driver/ |
Driver.cpp | [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
RegionStore.cpp | 516 QualType Ty); 538 QualType Ty); [all...] |
/external/llvm/lib/Target/ARM/ |
ARMFastISel.cpp | 169 bool isTypeLegal(Type *Ty, MVT &VT); 170 bool isLoadTypeLegal(Type *Ty, MVT &VT); 729 bool ARMFastISel::isTypeLegal(Type *Ty, MVT &VT) { 730 EVT evt = TLI.getValueType(Ty, true); 741 bool ARMFastISel::isLoadTypeLegal(Type *Ty, MVT &VT) { 742 if (isTypeLegal(Ty, VT)) return true; 770 if (PointerType *Ty = dyn_cast<PointerType>(Obj->getType())) 771 if (Ty->getAddressSpace() > 255) [all...] |
/external/llvm/lib/Target/Hexagon/ |
HexagonISelLowering.h | 166 bool isLegalAddressingMode(const AddrMode &AM, Type *Ty) const override;
|
/external/llvm/lib/Target/Mips/ |
MipsSEISelDAGToDAG.h | 38 EVT Ty, bool HasLo, bool HasHi);
|
/external/llvm/lib/Transforms/Scalar/ |
ConstantHoisting.cpp | 388 Type *Ty = ConstInfo.BaseConstant->getType(); 394 Constant *Offset = Diff == 0 ? nullptr : ConstantInt::get(Ty, Diff); 542 IntegerType *Ty = ConstInfo.BaseConstant->getType(); 544 new BitCastInst(ConstInfo.BaseConstant, Ty, "const", IP);
|
/external/clang/include/clang/CodeGen/ |
CGFunctionInfo.h | 444 void setArgStruct(llvm::StructType *Ty) { ArgStruct = Ty; }
|
/external/llvm/include/llvm/ExecutionEngine/ |
ExecutionEngine.h | 421 /// StoreValueToMemory - Stores the data in Val of type Ty at address Ptr. 426 Type *Ty); 555 Type *Ty);
|
/external/llvm/include/llvm/IR/ |
Attributes.h | 214 template <typename Ty> friend struct DenseMapInfo; 504 AttributeSet typeIncompatible(Type *Ty, uint64_t Index);
|
/external/llvm/lib/Target/NVPTX/ |
NVPTXAsmPrinter.h | 232 bool isImageType(const Type *Ty); 275 std::string getPTXFundamentalTypeStr(const Type *Ty, bool = true) const;
|
/external/llvm/utils/FileCheck/ |
FileCheck.cpp | 102 Pattern(Check::CheckType Ty) 103 : CheckTy(Ty) { } 601 Check::CheckType Ty) 602 : Pat(P), Prefix(S), Loc(L), CheckTy(Ty) {} 666 static size_t CheckTypeSize(Check::CheckType Ty) { 667 switch (Ty) { [all...] |