HomeSort by relevance Sort by last modified time
    Searched defs:PointeeType (Results 1 - 25 of 31) 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/opencv3/modules/core/include/opencv2/core/cuda/
type_traits.hpp 67 typedef typename type_traits_detail::PointerTraits<UnqualifiedType>::type PointeeType;
  /frameworks/native/services/sensorservice/
traits.h 96 typedef NullType PointeeType;
100 typedef U 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);
CGDebugInfo.cpp     [all...]
ItaniumCXXABI.cpp     [all...]
MicrosoftCXXABI.cpp     [all...]
  /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...]
  /external/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp     [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_reflection_cpp.cpp 78 const RSExportType *PointeeType =
81 if (PointeeType->getClass() != RSExportType::ExportClassRecord)
84 return PointeeType->getElementName();
    [all...]
slang_rs_object_ref_count.cpp     [all...]
slang_rs_reflection.cpp 197 const RSExportType *PointeeType =
200 if (PointeeType->getClass() != RSExportType::ExportClassRecord)
203 return PointeeType->getElementName();
    [all...]
  /external/clang/lib/AST/
ItaniumMangle.cpp     [all...]
MicrosoftMangle.cpp 284 void manglePointerExtQualifiers(Qualifiers Quals, QualType PointeeType);
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /external/clang/lib/Sema/
SemaExprObjC.cpp 518 QualType PointeeType = PT->getPointeeType();
519 if (Context.hasSameUnqualifiedType(PointeeType, Context.CharTy)) {
    [all...]
SemaTemplateDeduction.cpp     [all...]
SemaOverload.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]
  /external/clang/include/clang/AST/
Type.h     [all...]

Completed in 749 milliseconds

1 2