HomeSort by relevance Sort by last modified time
    Searched refs:PointeeType (Results 1 - 25 of 48) sorted by null

1 2

  /external/llvm/tools/llvm-pdbdump/
TypedefDumper.cpp 57 auto PointeeType = Symbol.getSession().getSymbolById(PointeeId);
58 if (!PointeeType)
60 if (auto FuncSig = dyn_cast<PDBSymbolTypeFunctionSig>(PointeeType.get())) {
67 PointeeType->dump(*this);
VariableDumper.cpp 100 auto PointeeType = Symbol.getPointeeType();
101 if (!PointeeType)
104 if (auto Func = dyn_cast<PDBSymbolFunc>(PointeeType.get())) {
115 PointeeType->dump(*this);
158 auto PointeeType = PointerType->getPointeeType();
160 dyn_cast<PDBSymbolTypeFunctionSig>(PointeeType.get())) {
FunctionDumper.cpp 236 auto PointeeType = Symbol.getSession().getSymbolById(PointeeId);
237 if (!PointeeType)
240 if (auto FuncSig = dyn_cast<PDBSymbolTypeFunctionSig>(PointeeType.get())) {
250 PointeeType->dump(*this);
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
SmallSet.h 113 template <typename PointeeType, unsigned N>
114 class SmallSet<PointeeType*, N> : public SmallPtrSet<PointeeType*, N> {};
  /external/llvm/include/llvm/ADT/
SmallSet.h 131 template <typename PointeeType, unsigned N>
132 class SmallSet<PointeeType*, N> : public SmallPtrSet<PointeeType*, N> {};
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocSizeofChecker.cpp 187 QualType PointeeType = CastedType->getAs<PointerType>()->getPointeeType();
188 if (PointeeType->isVoidType())
203 if (typesCompatible(BR.getContext(), PointeeType, SizeofType))
208 if (compatibleWithArrayType(BR.getContext(), PointeeType, SizeofType))
229 << PointeeType.getAsString() << "', which is incompatible with "
MallocChecker.cpp     [all...]
  /frameworks/native/services/sensorservice/
traits.h 96 typedef NullType PointeeType;
100 typedef U PointeeType;
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 500 llvm::Type *PointeeType = ConvertTypeForMem(ETy);
502 ResultType = llvm::PointerType::get(PointeeType, AS);
508 llvm::Type *PointeeType = ConvertTypeForMem(ETy);
509 if (PointeeType->isVoidTy())
510 PointeeType = llvm::Type::getInt8Ty(getLLVMContext());
512 ResultType = llvm::PointerType::get(PointeeType, AS);
602 llvm::Type *PointeeType = ConvertTypeForMem(FTy);
604 ResultType = llvm::PointerType::get(PointeeType, AS);
MicrosoftCXXABI.cpp     [all...]
  /external/clang/lib/AST/
MicrosoftMangle.cpp 325 void manglePointerExtQualifiers(Qualifiers Quals, QualType PointeeType);
    [all...]
  /external/llvm/include/llvm/Analysis/
TargetTransformInfoImpl.h 105 int getGEPCost(Type *PointeeType, const Value *Ptr,
436 int getGEPCost(Type *PointeeType, const Value *Ptr,
442 PointeeType &&
453 auto GTI = gep_type_begin(PointeeType, AS, Operands);
TargetTransformInfo.h 144 int getGEPCost(Type *PointeeType, const Value *Ptr,
633 virtual int getGEPCost(Type *PointeeType, const Value *Ptr,
    [all...]
  /frameworks/compile/slang/
slang_rs_export_type.cpp 362 const clang::Type *PointeeType = GetPointeeType(PT);
364 if (PointeeType->getTypeClass() == clang::Type::Pointer) {
372 if (PointeeType->isVoidType() && EK != LegacyKernelArgument) {
379 if (PointeeType->isArrayType()) {
386 if (TypeExportableHelper(PointeeType, SPS, Context, VD,
631 const clang::Type *PointeeType = GetPointeeType(PT);
633 return ValidateTypeHelper(Context, C, PointeeType, ND, Loc, SPS,
    [all...]
slang_rs_export_type.h 459 const RSExportType *PointeeType)
461 mPointeeType(PointeeType) {
slang_rs_reflection.cpp 197 const RSExportType *PointeeType =
200 if (PointeeType->getClass() != RSExportType::ExportClassRecord)
203 return PointeeType->getElementName();
    [all...]
slang_rs_reflection_cpp.cpp 78 const RSExportType *PointeeType =
81 if (PointeeType->getClass() != RSExportType::ExportClassRecord)
84 return PointeeType->getElementName();
    [all...]
  /external/llvm/bindings/go/llvm/
DIBuilderBindings.h 78 LLVMMetadataRef PointeeType,
DIBuilderBindings.cpp 117 LLVMMetadataRef PointeeType,
122 return wrap(D->createPointerType(unwrap<DIType>(PointeeType), SizeInBits,
  /external/llvm/include/llvm/IR/
Instructions.h 842 inline GetElementPtrInst(Type *PointeeType, Value *Ptr,
845 inline GetElementPtrInst(Type *PointeeType, Value *Ptr,
855 static GetElementPtrInst *Create(Type *PointeeType, Value *Ptr,
860 if (!PointeeType)
861 PointeeType =
865 PointeeType ==
867 return new (Values) GetElementPtrInst(PointeeType, Ptr, IdxList, Values,
    [all...]
  /external/clang/include/clang/AST/
Type.h     [all...]
  /external/llvm/lib/Analysis/
TargetTransformInfo.cpp 74 int TargetTransformInfo::getGEPCost(Type *PointeeType, const Value *Ptr,
76 return TTIImpl->getGEPCost(PointeeType, Ptr, Operands);
  /external/clang/lib/Sema/
TreeTransform.h 674 QualType RebuildPointerType(QualType PointeeType, SourceLocation Sigil);
680 QualType RebuildBlockPointerType(QualType PointeeType, SourceLocation Sigil);
699 QualType RebuildMemberPointerType(QualType PointeeType, QualType ClassType,
720 QualType RebuildObjCObjectPointerType(QualType PointeeType,
    [all...]
  /external/llvm/include/llvm/CodeGen/
BasicTTIImpl.h 160 int getGEPCost(Type *PointeeType, const Value *Ptr,
162 return BaseT::getGEPCost(PointeeType, Ptr, Operands);
    [all...]
  /external/llvm/lib/DebugInfo/CodeView/
TypeRecord.cpp 100 return PointerRecord(L->PointeeType, PtrKind, Mode, Options, Size, *E);
103 return PointerRecord(L->PointeeType, PtrKind, Mode, Options, Size);

Completed in 1371 milliseconds

1 2