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

1 2 3 4 5 6

  /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/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
SmallSet.h 136 template <typename PointeeType, unsigned N>
137 class SmallSet<PointeeType*, N> : public SmallPtrSet<PointeeType*, N> {};
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
SmallSet.h 136 template <typename PointeeType, unsigned N>
137 class SmallSet<PointeeType*, N> : public SmallPtrSet<PointeeType*, N> {};
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ADT/
SmallSet.h 137 template <typename PointeeType, unsigned N>
138 class SmallSet<PointeeType*, N> : public SmallPtrSet<PointeeType*, N> {};
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ADT/
SmallSet.h 137 template <typename PointeeType, unsigned N>
138 class SmallSet<PointeeType*, N> : public SmallPtrSet<PointeeType*, N> {};
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ADT/
SmallSet.h 137 template <typename PointeeType, unsigned N>
138 class SmallSet<PointeeType*, N> : public SmallPtrSet<PointeeType*, N> {};
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/ADT/
SmallSet.h 137 template <typename PointeeType, unsigned N>
138 class SmallSet<PointeeType*, N> : public SmallPtrSet<PointeeType*, N> {};
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/ADT/
SmallSet.h 137 template <typename PointeeType, unsigned N>
138 class SmallSet<PointeeType*, N> : public SmallPtrSet<PointeeType*, N> {};
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/ADT/
SmallSet.h 137 template <typename PointeeType, unsigned N>
138 class SmallSet<PointeeType*, N> : public SmallPtrSet<PointeeType*, N> {};
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
SmallSet.h 136 template <typename PointeeType, unsigned N>
137 class SmallSet<PointeeType*, N> : public SmallPtrSet<PointeeType*, N> {};
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ADT/
SmallSet.h 137 template <typename PointeeType, unsigned N>
138 class SmallSet<PointeeType*, N> : public SmallPtrSet<PointeeType*, N> {};
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ADT/
SmallSet.h 137 template <typename PointeeType, unsigned N>
138 class SmallSet<PointeeType*, N> : public SmallPtrSet<PointeeType*, N> {};
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/ADT/
SmallSet.h 137 template <typename PointeeType, unsigned N>
138 class SmallSet<PointeeType*, N> : public SmallPtrSet<PointeeType*, N> {};
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ADT/
SmallSet.h 137 template <typename PointeeType, unsigned N>
138 class SmallSet<PointeeType*, N> : public SmallPtrSet<PointeeType*, N> {};
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ADT/
SmallSet.h 137 template <typename PointeeType, unsigned N>
138 class SmallSet<PointeeType*, N> : public SmallPtrSet<PointeeType*, N> {};
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ADT/
SmallSet.h 137 template <typename PointeeType, unsigned N>
138 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 "
  /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);
  /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);

Completed in 765 milliseconds

1 2 3 4 5 6