HomeSort by relevance Sort by last modified time
    Searched defs:FD (Results 76 - 100 of 122) sorted by null

1 2 34 5

  /system/core/libpixelflinger/codeflinger/
ARMAssemblerInterface.h 46 ED, FD, EA, FA,
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 546 const NamedDecl *FD;
548 FunctionTextRegion(const NamedDecl *fd, const MemRegion* sreg)
549 : CodeTextRegion(sreg, FunctionTextRegionKind), FD(fd) {
550 assert(isa<ObjCMethodDecl>(fd) || isa<FunctionDecl>(fd));
555 if (const FunctionDecl *D = dyn_cast<FunctionDecl>(FD)) {
559 assert(isa<ObjCMethodDecl>(FD));
568 return FD;
575 static void ProfileRegion(llvm::FoldingSetNodeID& ID, const NamedDecl *FD,
    [all...]
  /external/clang/lib/AST/
Expr.cpp 525 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurrentDecl)) {
527 return FD->getNameAsString();
532 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
543 const FunctionDecl *Decl = FD;
544 if (const FunctionDecl* Pattern = FD->getTemplateInstantiationPattern())
548 if (FD->hasWrittenPrototype())
563 FD->printQualifiedName(POut, Policy);
573 if (FD->getNumParams()) POut << ", ";
579 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
594 const DeclContext *Ctx = FD->getDeclContext()
    [all...]
ItaniumMangle.cpp 76 if (const auto *FD = dyn_cast<FunctionDecl>(D))
77 if (FD->isExternC())
78 return FD->getASTContext().getTranslationUnitDecl();
304 void mangleFunctionEncoding(const FunctionDecl *FD);
381 const FunctionDecl *FD = nullptr);
412 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
413 if (FD) {
414 LanguageLinkage L = FD->getLanguageLinkage();
416 if (FD->hasAttr<OverloadableAttr>())
420 if (FD->isMain()
    [all...]
MicrosoftMangle.cpp 75 const auto *FD = cast<FunctionDecl>(ND);
76 if (const auto *FTD = FD->getPrimaryTemplate())
79 return FD;
257 void mangleFunctionEncoding(const FunctionDecl *FD, bool ShouldMangle);
308 void mangleFunctionClass(const FunctionDecl *FD);
323 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
324 LanguageLinkage L = FD->getLanguageLinkage();
326 if (FD->hasAttr<OverloadableAttr>())
338 if (FD->isMSVCRTEntryPoint())
343 if (!FD->getDeclName().isIdentifier() || L == CXXLanguageLinkage
    [all...]
Decl.cpp 543 const auto *FD = dyn_cast<FunctionDecl>(D);
544 if (!FD)
549 = FD->getTemplateSpecializationInfo()) {
552 FD->getMemberSpecializationInfo()) {
562 FD->hasBody(Def) && Def->isInlined() && !Def->hasAttr<GNUInlineAttr>();
    [all...]
  /external/clang/lib/Basic/
VirtualFileSystem.cpp 121 int FD;
124 RealFile(int FD, StringRef NewName)
125 : FD(FD), S(NewName, {}, {}, {}, {}, {},
127 assert(FD >= 0 && "Invalid or inactive file descriptor");
143 assert(FD != -1 && "cannot stat closed file");
146 if (std::error_code EC = sys::fs::status(FD, RealStatus))
156 assert(FD != -1 && "cannot get buffer for closed file");
157 return MemoryBuffer::getOpenFile(FD, Name, FileSize, RequiresNullTerminator,
172 if (::close(FD))
    [all...]
  /external/clang/lib/CodeGen/
CGBlocks.cpp     [all...]
CGDecl.cpp 164 if (const auto *FD = dyn_cast<FunctionDecl>(DC))
165 ContextName = CGM.getMangledName(FD);
257 else if (const auto *FD = dyn_cast<FunctionDecl>(DC))
258 GD = GlobalDecl(FD);
    [all...]
CGException.cpp 190 const FunctionDecl *FD) {
195 if (FD && FD->usesSEHTry())
306 const EHPersonality &ObjCXX = EHPersonality::get(*this, /*FD=*/nullptr);
428 const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(D);
429 if (!FD) {
437 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>();
507 const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(D);
508 if (!FD) {
516 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>()
    [all...]
CGStmt.cpp     [all...]
CodeGenFunction.cpp 434 static void GenOpenCLArgMetadata(const FunctionDecl *FD, llvm::Function *Fn,
469 for (unsigned i = 0, e = FD->getNumParams(); i != e; ++i) {
470 const ParmVarDecl *parm = FD->getParamDecl(i);
574 void CodeGenFunction::EmitOpenCLKernelMetadata(const FunctionDecl *FD,
577 if (!FD->hasAttr<OpenCLKernelAttr>())
585 GenOpenCLArgMetadata(FD, Fn, CGM, Context, kernelMDArgs, Builder,
588 if (const VecTypeHintAttr *A = FD->getAttr<VecTypeHintAttr>()) {
604 if (const WorkGroupSizeHintAttr *A = FD->getAttr<WorkGroupSizeHintAttr>()) {
613 if (const ReqdWorkGroupSizeAttr *A = FD->getAttr<ReqdWorkGroupSizeAttr>()) {
631 if (auto *FD = dyn_cast_or_null<FunctionDecl>(F)
    [all...]
CodeGenFunction.h     [all...]
CGClass.cpp     [all...]
CGDebugInfo.cpp 181 StringRef CGDebugInfo::getFunctionName(const FunctionDecl *FD) {
182 assert(FD && "Invalid FunctionDecl!");
183 IdentifierInfo *FII = FD->getIdentifier();
185 FD->getTemplateSpecializationInfo();
198 FD->printQualifiedName(OS, Policy);
202 FD->printName(OS);
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiate.cpp 431 } else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
434 << FD << Active->InstantiationRange;
498 FunctionDecl *FD = cast<FunctionDecl>(Param->getDeclContext());
502 FD->printName(OS);
    [all...]
SemaDeclObjC.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp     [all...]
MallocChecker.cpp 262 bool isMemFunction(const FunctionDecl *FD, ASTContext &C) const;
263 bool isCMemFunction(const FunctionDecl *FD,
267 bool isStandardNewDelete(const FunctionDecl *FD, ASTContext &C) const;
548 bool MallocChecker::isMemFunction(const FunctionDecl *FD, ASTContext &C) const {
549 if (isCMemFunction(FD, C, AF_Malloc, MemoryOperationKind::MOK_Any))
552 if (isCMemFunction(FD, C, AF_IfNameIndex, MemoryOperationKind::MOK_Any))
555 if (isCMemFunction(FD, C, AF_Alloca, MemoryOperationKind::MOK_Any))
558 if (isStandardNewDelete(FD, C))
564 bool MallocChecker::isCMemFunction(const FunctionDecl *FD,
568 if (!FD)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp 113 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
116 const IdentifierInfo *II = FD->getIdentifier();
117 if (!II || !(II->getName() == "main" && FD->getNumParams() > 0))
120 const ParmVarDecl *PD = FD->getParamDecl(0);
    [all...]
  /external/pcre/dist/sljit/
sljitNativeMIPS_common.c 88 #define FD(d) ((d) << 6)
    [all...]
sljitNativePPC_common.c 116 #define FD(fd) ((fd) << 21)
718 ((inst) | (((flags) & MEM_MASK) <= GPR_REG ? D(reg) : FD(reg)))
722 (((inst) & ~(INT_ALIGNED | UPDATE_REQ)) | (((flags) & MEM_MASK) <= GPR_REG ? D(reg) : FD(reg)))
    [all...]
  /external/protobuf/src/google/protobuf/
descriptor_unittest.cc     [all...]
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp     [all...]
  /external/clang/lib/Analysis/
CFG.cpp 612 void appendMemberDtor(CFGBlock *B, FieldDecl *FD) {
613 B->appendMemberDtor(FD, cfg->getBumpVectorContext());
    [all...]

Completed in 2026 milliseconds

1 2 34 5