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

1 2

  /external/llvm/tools/llvm-pdbdump/
TypedefDumper.cpp 56 auto PointeeType = Symbol.getSession().getSymbolById(PointeeId);
57 if (!PointeeType)
59 if (auto FuncSig = dyn_cast<PDBSymbolTypeFunctionSig>(PointeeType.get())) {
66 PointeeType->dump(*this);
VariableDumper.cpp 99 auto PointeeType = Symbol.getPointeeType();
100 if (!PointeeType)
103 if (auto Func = dyn_cast<PDBSymbolFunc>(PointeeType.get())) {
114 PointeeType->dump(*this);
157 auto PointeeType = PointerType->getPointeeType();
159 dyn_cast<PDBSymbolTypeFunctionSig>(PointeeType.get())) {
FunctionDumper.cpp 233 auto PointeeType = Symbol.getSession().getSymbolById(PointeeId);
234 if (!PointeeType)
237 if (auto FuncSig = dyn_cast<PDBSymbolTypeFunctionSig>(PointeeType.get())) {
247 PointeeType->dump(*this);
  /external/llvm/include/llvm/ADT/
SmallSet.h 126 template <typename PointeeType, unsigned N>
127 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/opencv3/modules/core/include/opencv2/core/cuda/
type_traits.hpp 67 typedef typename type_traits_detail::PointerTraits<UnqualifiedType>::type PointeeType;
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 497 llvm::Type *PointeeType = ConvertTypeForMem(ETy);
499 ResultType = llvm::PointerType::get(PointeeType, AS);
505 llvm::Type *PointeeType = ConvertTypeForMem(ETy);
506 if (PointeeType->isVoidTy())
507 PointeeType = llvm::Type::getInt8Ty(getLLVMContext());
509 ResultType = llvm::PointerType::get(PointeeType, AS);
599 llvm::Type *PointeeType = ConvertTypeForMem(FTy);
601 ResultType = llvm::PointerType::get(PointeeType, AS);
MicrosoftCXXABI.cpp     [all...]
  /external/clang/lib/AST/
MicrosoftMangle.cpp 284 void manglePointerExtQualifiers(Qualifiers Quals, QualType PointeeType);
    [all...]
DeclCXX.cpp     [all...]
ExprConstant.cpp     [all...]
  /external/llvm/include/llvm/Analysis/
TargetTransformInfoImpl.h 105 unsigned getGEPCost(Type *PointeeType, const Value *Ptr,
400 unsigned getGEPCost(Type *PointeeType, const Value *Ptr,
406 PointeeType &&
417 auto GTI = gep_type_begin(PointerType::get(PointeeType, AS), Operands);
TargetTransformInfo.h 143 int getGEPCost(Type *PointeeType, const Value *Ptr,
552 virtual int getGEPCost(Type *PointeeType, const Value *Ptr,
654 int getGEPCost(Type *PointeeType, const Value *Ptr,
656 return Impl.getGEPCost(PointeeType, Ptr, Operands);
    [all...]
  /frameworks/compile/slang/
slang_rs_export_type.cpp 361 const clang::Type *PointeeType = GetPointeeType(PT);
363 if (PointeeType->getTypeClass() == clang::Type::Pointer) {
371 if (PointeeType->isVoidType() && EK != LegacyKernelArgument) {
379 if (PointeeType->isArrayType() ||
380 (TypeExportableHelper(PointeeType, SPS, Context, VD,
625 const clang::Type *PointeeType = GetPointeeType(PT);
627 return ValidateTypeHelper(Context, C, PointeeType, ND, Loc, SPS,
    [all...]
slang_rs_export_type.h 406 const RSExportType *PointeeType)
408 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 851 inline GetElementPtrInst(Type *PointeeType, Value *Ptr,
854 inline GetElementPtrInst(Type *PointeeType, Value *Ptr,
864 static GetElementPtrInst *Create(Type *PointeeType, Value *Ptr,
869 if (!PointeeType)
870 PointeeType =
874 PointeeType ==
876 return new (Values) GetElementPtrInst(PointeeType, Ptr, IdxList, Values,
879 static GetElementPtrInst *Create(Type *PointeeType, Value *Ptr,
    [all...]
  /external/clang/include/clang/AST/
Type.h     [all...]
  /external/clang/lib/Sema/
TreeTransform.h 665 QualType RebuildPointerType(QualType PointeeType, SourceLocation Sigil);
671 QualType RebuildBlockPointerType(QualType PointeeType, SourceLocation Sigil);
690 QualType RebuildMemberPointerType(QualType PointeeType, QualType ClassType,
711 QualType RebuildObjCObjectPointerType(QualType PointeeType,
    [all...]
  /external/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp     [all...]

Completed in 439 milliseconds

1 2