HomeSort by relevance Sort by last modified time
    Searched refs:FD (Results 101 - 125 of 163) sorted by null

1 2 3 45 6 7

  /external/clang/lib/Sema/
SemaTemplate.cpp     [all...]
SemaStmt.cpp 177 if (const Decl *FD = CE->getCalleeDecl()) {
178 if (FD->getAttr<WarnUnusedResultAttr>()) {
182 if (FD->getAttr<PureAttr>()) {
186 if (FD->getAttr<ConstAttr>()) {
    [all...]
SemaExprMember.cpp     [all...]
SemaTemplateInstantiateDecl.cpp 555 FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getFriendLoc(), InstTy);
556 if (!FD)
559 FD->setAccess(AS_public);
560 FD->setUnsupportedFriend(D->isUnsupportedFriend());
561 Owner->addDecl(FD);
562 return FD;
575 FriendDecl *FD =
578 FD->setAccess(AS_public);
579 FD->setUnsupportedFriend(D->isUnsupportedFriend());
580 Owner->addDecl(FD);
    [all...]
SemaDeclCXX.cpp 570 void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) {
571 unsigned NumParams = FD->getNumParams();
576 ParmVarDecl *Param = FD->getParamDecl(p);
589 ParmVarDecl *Param = FD->getParamDecl(p);
611 ParmVarDecl *Param = FD->getParamDecl(p);
622 static bool CheckConstexprParameterTypes(Sema &SemaRef, const FunctionDecl *FD,
625 const FunctionProtoType *FT = FD->getType()->getAs<FunctionProtoType>();
628 const ParmVarDecl *PD = FD->getParamDecl(ArgIndex);
634 << isa<CXXConstructorDecl>(FD) :
640 << isa<CXXConstructorDecl>(FD) << *i
    [all...]
SemaExpr.cpp 52 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
53 if (FD->isDeleted())
140 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
141 if (FD->isDeleted()) {
169 std::string Sema::getDeletedOrUnavailableSuffix(const FunctionDecl *FD) {
173 if (FD->isDeleted())
177 if (FD->getAvailability(&Message))
203 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
204 numFormalParams = FD->param_size();
    [all...]
SemaChecking.cpp     [all...]
  /external/clang/lib/AST/
Decl.cpp     [all...]
Expr.cpp 351 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurrentDecl)) {
353 return FD->getNameAsString();
358 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
367 std::string Proto = FD->getQualifiedNameAsString(Policy);
369 const FunctionType *AFT = FD->getType()->getAs<FunctionType>();
371 if (FD->hasWrittenPrototype())
377 for (unsigned i = 0, e = FD->getNumParams(); i != e; ++i) {
380 FD->getParamDecl(i)->getType().getAsStringInternal(Param, Policy);
385 if (FD->getNumParams()) POut << ", ";
391 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
    [all...]
DeclObjC.cpp 636 SourceLocation CLoc, bool FD, bool isInternal)
640 InitiallyForwardDecl(FD), ForwardDecl(FD),
    [all...]
  /external/clang/lib/Parse/
ParseObjc.cpp 283 Decl *invoke(FieldDeclarator &FD) {
284 if (FD.D.getIdentifier() == 0) {
286 << FD.D.getSourceRange();
289 if (FD.BitfieldSize) {
291 << FD.D.getSourceRange();
297 OCDS.getGetterName() ? OCDS.getGetterName() : FD.D.getIdentifier();
308 FD.D.getIdentifier());
311 P.Actions.ActOnProperty(P.getCurScope(), AtLoc, FD, OCDS,
    [all...]
  /external/clang/lib/CodeGen/
CGException.cpp 458 const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(D);
459 if (FD == 0)
461 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>();
526 const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(D);
527 if (FD == 0)
529 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>();
    [all...]
CGBlocks.cpp     [all...]
CGBuiltin.cpp 32 llvm::Value *CodeGenModule::getBuiltinLibFunction(const FunctionDecl *FD,
38 GlobalDecl D(FD);
43 if (FD->hasAttr<AsmLabelAttr>())
49 cast<llvm::FunctionType>(getTypes().ConvertType(FD->getType()));
175 RValue CodeGenFunction::EmitBuiltinExpr(const FunctionDecl *FD,
    [all...]
CGDecl.cpp 162 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CGF.CurFuncDecl)) {
163 StringRef Name = CGM.getMangledName(FD);
    [all...]
CGExpr.cpp     [all...]
  /external/clang/lib/Analysis/
AnalysisContext.cpp 76 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
77 return FD->getBody();
ThreadSafety.cpp 219 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(D)) {
220 for (unsigned i = 0, ni = FD->getNumParams(); i < ni && i < NumArgs; ++i) {
221 FunArgDecls.push_back(FD->getParamDecl(i));
    [all...]
CFG.cpp 411 void appendMemberDtor(CFGBlock *B, FieldDecl *FD) {
412 B->appendMemberDtor(FD, cfg->getBumpVectorContext());
615 if (FieldDecl *FD = I->getAnyMember())
616 IsReference = FD->getType()->isReferenceType();
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 298 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
299 if (Stmt *Body = FD->getBody())
  /external/clang/tools/libclang/
IndexingContext.h 108 void handleFunction(const FunctionDecl *FD);
  /external/llvm/include/llvm/Support/
PathV1.h 600 /// that is currently opened as FD into the current processes' address
603 /// 1) The pages must be valid after the FD is closed, until
611 static const char *MapInFilePages(int FD, size_t FileSize,
    [all...]
  /frameworks/compile/slang/
slang_rs_context.h 89 bool processExportFunc(const clang::FunctionDecl *FD);
  /external/clang/include/clang/Sema/
Sema.h 323 typedef void LateTemplateParserCB(void *P, const FunctionDecl *FD);
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 804 const FunctionDecl *FD = cast<FunctionTextRegion>(MR)->getDecl();
805 if (FD)
806 os << "the address of the function '" << *FD << '\'';
    [all...]

Completed in 877 milliseconds

1 2 3 45 6 7