HomeSort by relevance Sort by last modified time
    Searched defs:PVD (Results 1 - 10 of 10) sorted by null

  /frameworks/compile/slang/
slang_rs_special_func.cpp 65 const clang::ParmVarDecl *PVD = FD->getParamDecl(0);
66 clang::QualType QT = PVD->getType().getCanonicalType();
68 Context->ReportError(PVD->getLocation(),
71 << PVD->getType();
slang_rs_export_func.cpp 79 const clang::ParmVarDecl *PVD = FD->getParamDecl(i);
80 llvm::StringRef ParamName = PVD->getName();
82 if (PVD->hasDefaultArg())
93 PVD->getIdentifier(),
94 PVD->getOriginalType(),
slang_rs_check_ast.cpp 191 clang::ParmVarDecl *PVD = FD->getParamDecl(i);
192 clang::QualType QT = PVD->getType().getCanonicalType();
193 if (!RSExportType::ValidateType(Context, C, QT, PVD, PVD->getLocStart(),
slang_rs_export_foreach.cpp 112 const clang::ParmVarDecl *PVD = FD->getParamDecl(i);
113 clang::QualType QT = PVD->getType().getCanonicalType();
116 Context->ReportError(PVD->getLocation(),
121 << PVD->getName() << PVD->getType().getAsString();
129 mOut = PVD;
131 Context->ReportError(PVD->getLocation(),
135 << FD->getName() << mOut->getName() << PVD->getName();
140 mIns.push_back(PVD);
142 mUsrData = PVD;
    [all...]
slang_rs_special_kernel_param.cpp 115 const clang::ParmVarDecl *PVD = FD->getParamDecl(i);
116 const llvm::StringRef ParamName = PVD->getName();
117 const clang::QualType Type = PVD->getType();
130 PVD->getLocation(),
141 Context->ReportError(PVD->getLocation(),
156 Context->ReportError(PVD->getLocation(),
168 PVD->getLocation(),
182 Context->ReportError(PVD->getLocation(),
193 PVD->getLocation(),
209 Context->ReportError(PVD->getLocation()
    [all...]
slang_backend.cpp 419 const clang::ParmVarDecl *PVD = FD->getParamDecl(i);
420 clang::QualType QT = PVD->getOriginalType();
423 PVD->getTypeSpecStartLoc(),
slang_rs_object_ref_count.cpp 72 const clang::ParmVarDecl *PVD = FD->getParamDecl(0);
73 clang::QualType PVT = PVD->getOriginalType();
    [all...]
  /external/clang/lib/Frontend/
ASTConsumers.cpp 445 ParmVarDecl* PVD = cast<ParmVarDecl>(I);
446 Out << "<parameter> " << *PVD << '\n';
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
SemaDeclCXX.cpp 422 const ParmVarDecl *PVD = FD->getParamDecl(NumParams-1);
423 if (!PVD->hasDefaultArg())
425 if (!PVD->hasInheritedDefaultArg())
    [all...]

Completed in 83 milliseconds