/external/clang/lib/Index/ |
CodegenNameGenerator.cpp | 40 if (auto *FD = dyn_cast<FunctionDecl>(D)) { 41 if (FD->isDependentContext()) 43 if (writeFuncOrVarName(FD, FrontendBufOS))
|
IndexDecl.cpp | 59 if (auto *FD = dyn_cast<FunctionDecl>(DC)) { 60 if (FD->isThisDeclarationADefinition()) 68 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 69 if (FD->isThisDeclarationADefinition()) { 70 for (auto PI : FD->parameters()) {
|
/external/clang/lib/Sema/ |
ScopeInfo.cpp | 114 for (auto *FD : RD->fields()) { 115 if (FD->hasCapturedVLAType() && FD->getCapturedVLAType() == VAT)
|
SemaStmt.cpp | 252 if (const Decl *FD = CE->getCalleeDecl()) { 253 if (const Attr *A = isa<FunctionDecl>(FD) 254 ? cast<FunctionDecl>(FD)->getUnusedResultAttr() 255 : FD->getAttr<WarnUnusedResultAttr>()) { 261 if (FD->hasAttr<PureAttr>()) { 265 if (FD->hasAttr<ConstAttr>()) { [all...] |
SemaDeclAttr.cpp | 103 if (const auto *FD = dyn_cast<FunctionDecl>(D)) 104 return FD->getParamDecl(Idx)->getSourceRange(); 119 if (const auto *FD = dyn_cast<FunctionDecl>(D)) 120 return FD->getReturnTypeSourceRange(); 567 FunctionDecl *FD = dyn_cast<FunctionDecl>(D); 569 if(FD && IL) { 570 unsigned int NumParams = FD->getNumParams(); 579 ArgTy = FD->getParamDecl(ParamIdxFromZero)->getType(); [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
MallocSizeofChecker.cpp | 93 const FunctionDecl *FD = E->getDirectCallee(); 94 if (FD) { 95 IdentifierInfo *II = FD->getIdentifier();
|
NonNullParamChecker.cpp | 49 const Decl *FD = Call.getDecl(); 50 if (!FD) 56 for (const auto *NonNull : FD->specific_attrs<NonNullAttr>()) {
|
DeadStoresChecker.cpp | 435 const FieldDecl *FD = CaptureFields[VD]; 436 if (!FD) 440 if (FD->getType()->isReferenceType()) 462 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) 463 if (FD->isTemplateInstantiation())
|
CallAndMessageChecker.cpp | 392 const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(D); 393 if (FD) { 396 unsigned Params = FD->getNumParams(); 430 if(FD && i < FD->getNumParams()) 431 ParamDecl = FD->getParamDecl(i);
|
MallocOverflowSecurityChecker.cpp | 311 const FunctionDecl *FD = TheCall->getDirectCallee(); 313 if (!FD) 317 IdentifierInfo *FnInfo = FD->getIdentifier();
|
/external/llvm/lib/Support/ |
GraphWriter.cpp | 67 std::string llvm::createGraphFilename(const Twine &Name, int &FD) { 68 FD = -1; 70 std::error_code EC = sys::fs::createTemporaryFile(Name, "dot", FD, Filename);
|
/external/llvm/tools/dsymutil/ |
dsymutil.cpp | 185 int FD; 187 if (auto EC = getUniqueFile(TmpFile + ".tmp%%%%%.dwarf", FD, UniqueFile)) { 196 llvm::raw_fd_ostream CloseImmediately(FD, true /* shouldClose */, true);
|
/external/llvm/unittests/Support/ |
MemoryBufferTest.cpp | 138 // immediately visible through the fd. 182 int FD; 184 sys::fs::createTemporaryFile("MemoryBufferTest_Slice", "temp", FD, TestPath); 185 raw_fd_ostream OF(FD, true, /*unbuffered=*/true);
|
/external/swiftshader/third_party/subzero/src/ |
IceBrowserCompileServer.cpp | 129 StrBuf << "Invalid FD given for onInitCallback " << ObjFileFD << "\n"; 177 std::unique_ptr<llvm::raw_fd_ostream> getOutputStream(int FD) { 178 if (FD <= 0) 179 llvm::report_fatal_error("Invalid output FD"); 183 new llvm::raw_fd_ostream(FD, CloseOnDtor, Unbuffered));
|
/art/test/ |
run-test | 421 # output (fd 2). 427 FD=3 428 while [ -e /dev/fd/$FD ]; do FD=$((FD + 1)); done 429 real_stderr=$FD [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
ExprEngineCallAndReturn.cpp | 707 const FunctionDecl *FD) { 708 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) 715 static bool isCXXSharedPtrDtor(const FunctionDecl *FD) { 716 const CXXDestructorDecl *Dtor = dyn_cast<CXXDestructorDecl>(FD); 742 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CalleeADC->getDecl())) { 745 if (FD->getTemplatedKind() != FunctionDecl::TK_NonTemplate) 750 if (Ctx.getSourceManager().isInSystemHeader(FD->getLocation())) 751 if (AnalysisDeclContext::isInStdNamespace(FD)) 757 if (!Ctx.getSourceManager().isInMainFile(FD->getLocation())) 758 if (isContainerMethod(Ctx, FD)) [all...] |
/external/clang/lib/Analysis/ |
AnalysisDeclContext.cpp | 95 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 96 Stmt *Body = FD->getBody(); 99 getBodyFarm(getASTContext(), Manager->Injector.get()).getBody(FD); 303 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 304 // Calling 'hasBody' replaces 'FD' in place with the FunctionDecl 306 FD->hasBody(FD); 307 D = FD;
|
/external/clang/lib/CodeGen/ |
CGCall.cpp | 108 const FunctionDecl *FD) { 119 if (FD == nullptr) { 129 assert(FD->getNumParams() == FPT->getNumParams()); 132 if (FD->getParamDecl(I)->hasAttr<PassObjectSizeAttr>()) 143 const FunctionDecl *FD) { 146 RequiredArgs::forPrototypePlus(FTP, prefix.size(), FD); 148 appendParameterTypes(CGT, prefix, paramInfos, FTP, FD); 161 const FunctionDecl *FD) { 164 FTP, FD); 380 CodeGenTypes::arrangeFunctionDeclaration(const FunctionDecl *FD) { [all...] |
CodeGenModule.cpp | 781 const auto *FD = cast<FunctionDecl>(GD.getDecl()); 783 if (const auto *Dtor = dyn_cast_or_null<CXXDestructorDecl>(FD)) { 791 if (FD->hasAttr<DLLImportAttr>()) 793 else if (FD->hasAttr<DLLExportAttr>()) [all...] |
/frameworks/compile/slang/ |
slang_rs_export_type.cpp | 323 const clang::FieldDecl *FD = *FI; 324 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); 335 if (FD->isBitField()) { 337 FD->getLocation(), 339 << RD->getName() << FD->getName(); 558 const clang::FieldDecl *FD = *FI; 559 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD); [all...] |
/external/clang/lib/Parse/ |
ParseCXXInlineMethods.cpp | 127 FunctionDecl *FD = FnD->getAsFunction(); 128 Actions.CheckForFunctionRedefinition(FD); 129 Actions.MarkAsLateParsedTemplate(FD, FnD, Toks); 179 FunctionDecl *FD = FnD->getAsFunction(); 180 Actions.CheckForFunctionRedefinition(FD); 181 FD->setLateTemplateParsed(true); 573 if (auto *FD = dyn_cast_or_null<FunctionDecl>(LM.D)) 574 if (isa<CXXMethodDecl>(FD) || 575 FD->isInIdentifierNamespace(Decl::IDNS_OrdinaryFriend)) 576 Actions.ActOnFinishInlineFunctionDef(FD); [all...] |
/external/clang/lib/AST/ |
DeclBase.cpp | 189 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(this)) 190 return FD; 201 if (auto *FD = dyn_cast<FunctionDecl>(this)) 202 return FD->getDescribedFunctionTemplate(); 555 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(this)) { 556 if (FD->hasBody()) { 767 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(this)) { 769 if (FD->hasBody(Definition)) 840 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 841 return FD; [all...] |
/device/linaro/bootloader/OpenPlatformPkg/Platforms/TexasInstruments/BeagleBoard/ |
build.sh | 93 FLASH_BOOT=$BUILD_ROOT/FV/BeagleBoard_EFI_flashboot.fd 136 echo Patching FD to work with BeagleBoard ROM 146 $GENERATE_IMAGE -D $WORKSPACE/OpenPlatformPkg/Platforms/TexasInstruments/BeagleBoard/ConfigurationHeader.dat -E 0x80008000 -I $BUILD_ROOT/FV/BEAGLEBOARD_EFI.fd -O $FLASH_BOOT
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
MemRegion.h | 542 const NamedDecl *FD; 544 FunctionCodeRegion(const NamedDecl *fd, const MemRegion* sreg) 545 : CodeTextRegion(sreg, FunctionCodeRegionKind), FD(fd) { 546 assert(isa<ObjCMethodDecl>(fd) || isa<FunctionDecl>(fd)); 551 if (const FunctionDecl *D = dyn_cast<FunctionDecl>(FD)) { 555 assert(isa<ObjCMethodDecl>(FD)); 564 return FD; 571 static void ProfileRegion(llvm::FoldingSetNodeID& ID, const NamedDecl *FD, [all...] |
/external/v8/src/x64/ |
sse-instr.h | 13 V(paddw, 66, 0F, FD) \
|