HomeSort by relevance Sort by last modified time
    Searched defs:FD (Results 51 - 75 of 102) sorted by null

1 23 4 5

  /external/clang/tools/libclang/
RecursiveASTVisitor.h     [all...]
  /external/linux-tools-perf/
builtin-record.c 33 #define FD(e, x, y) (*(int *)xyarray__entry(e->fd, x, y))
364 session->fd = output;
712 ioctl(FD(pos, i, thread),
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 322 int FD;
324 sys::fs::openFileForWrite(Storage.c_str(), FD, sys::fs::F_Binary, Mode),
328 raw_fd_ostream file(FD, false);
341 sys::fs::setLastModificationAndAccessTime(FD, I->getLastModified()));
343 if (close(FD))
778 int FD;
779 failIfError(sys::fs::openFileForRead(FileName, FD), FileName);
782 failIfError(sys::fs::status(FD, Status), FileName);
785 failIfError(MemoryBuffer::getOpenFile(FD, FileName, File,
  /frameworks/compile/slang/
slang_rs_export_type.cpp 232 const clang::FieldDecl *FD = *FI;
233 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD);
243 if (FD->isBitField()) {
246 clang::FullSourceLoc(FD->getLocation(),
252 << FD->getName();
440 const clang::FieldDecl *FD = *FI;
441 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD);
920 const clang::FieldDecl *FD = *FI;
921 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD);
    [all...]
slang_rs_object_ref_count.cpp 56 clang::FunctionDecl *FD = static_cast<clang::FunctionDecl*>(*I);
61 if (FD->getName() == "rsSetObject") {
62 slangAssert((FD->getNumParams() == 2) &&
65 } else if (FD->getName() == "rsClearObject") {
66 slangAssert((FD->getNumParams() == 1) &&
73 const clang::ParmVarDecl *PVD = FD->getParamDecl(0);
79 // The rs object type passed to the FD
86 RSObjectFD[(DT - RSExportPrimitiveType::FirstRSObjectType)] = FD;
636 const clang::FieldDecl *FD = *FI;
637 const clang::Type *FT = RSExportType::GetTypeOfDecl(FD);
    [all...]
  /system/core/libpixelflinger/codeflinger/
ARMAssemblerInterface.h 46 ED, FD, EA, FA,
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 549 const NamedDecl *FD;
551 FunctionTextRegion(const NamedDecl *fd, const MemRegion* sreg)
552 : CodeTextRegion(sreg, FunctionTextRegionKind), FD(fd) {
553 assert(isa<ObjCMethodDecl>(fd) || isa<FunctionDecl>(fd));
558 if (const FunctionDecl *D = dyn_cast<FunctionDecl>(FD)) {
562 assert(isa<ObjCMethodDecl>(FD));
571 return FD;
578 static void ProfileRegion(llvm::FoldingSetNodeID& ID, const NamedDecl *FD,
    [all...]
  /external/clang/lib/AST/
MicrosoftMangle.cpp 86 void mangleFunctionEncoding(const FunctionDecl *FD);
112 void mangleLocalName(const FunctionDecl *FD);
129 void mangleFunctionClass(const FunctionDecl *FD);
201 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
202 if (FD && (FD->hasAttr<OverloadableAttr>() || isa<CXXMethodDecl>(FD) ||
203 !FD->getDeclName().isIdentifier()))
211 if (!FD) {
218 if ((FD && FD->isMain()) || isInCLinkageSpecification(D)
    [all...]
Decl.cpp 484 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
485 if (!FD)
490 = FD->getTemplateSpecializationInfo()) {
493 FD->getMemberSpecializationInfo()) {
503 FD->hasBody(Def) && Def->isInlined() && !Def->hasAttr<GNUInlineAttr>();
    [all...]
ItaniumMangle.cpp 287 void mangleFunctionEncoding(const FunctionDecl *FD);
398 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
399 if (FD) {
400 LanguageLinkage L = FD->getLanguageLinkage();
402 if (FD->hasAttr<OverloadableAttr>())
406 if (FD->isMain())
411 if (!FD->getDeclName().isIdentifier() || L == CXXLanguageLinkage)
468 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
469 mangleFunctionEncoding(FD);
476 void CXXNameMangler::mangleFunctionEncoding(const FunctionDecl *FD) {
    [all...]
  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 229 const FieldDecl *FD,
233 llvm::Type *Ty = Types.ConvertTypeForMem(FD->getType());
238 bool IsSigned = FD->getType()->isSignedIntegerOrEnumerationType();
366 FieldDecl *FD = *BFI;
368 uint64_t FieldSize = FD->getBitWidthValue(Types.getContext());
369 Fields[FD] = FieldIndex;
370 BitFields[FD] = CGBitFieldInfo::MakeInfo(Types, FD, FieldOffset, FieldSize,
764 FieldDecl *FD = *FI;
769 if (FD->isBitField())
    [all...]
CodeGenFunction.cpp 325 static void GenOpenCLArgMetadata(const FunctionDecl *FD, llvm::Function *Fn,
353 for (unsigned i = 0, e = FD->getNumParams(); i != e; ++i) {
354 const ParmVarDecl *parm = FD->getParamDecl(i);
426 void CodeGenFunction::EmitOpenCLKernelMetadata(const FunctionDecl *FD,
429 if (!FD->hasAttr<OpenCLKernelAttr>())
438 GenOpenCLArgMetadata(FD, Fn, CGM, Context, kernelMDArgs,
441 if (FD->hasAttr<VecTypeHintAttr>()) {
442 VecTypeHintAttr *attr = FD->getAttr<VecTypeHintAttr>();
458 if (FD->hasAttr<WorkGroupSizeHintAttr>()) {
459 WorkGroupSizeHintAttr *attr = FD->getAttr<WorkGroupSizeHintAttr>()
    [all...]
TargetInfo.cpp 160 static bool isEmptyField(ASTContext &Context, const FieldDecl *FD,
162 if (FD->isUnnamedBitfield())
165 QualType FT = FD->getType();
257 const FieldDecl *FD = *i;
258 QualType FT = FD->getType();
261 if (isEmptyField(Context, FD, true))
335 const FieldDecl *FD = *i;
337 if (!is32Or64BitBasicType(FD->getType(), Context))
343 if (FD->isBitField())
346 Size += Context.getTypeSize(FD->getType())
    [all...]
CGBlocks.cpp     [all...]
CGBuiltin.cpp 31 llvm::Value *CodeGenModule::getBuiltinLibFunction(const FunctionDecl *FD,
37 GlobalDecl D(FD);
42 if (FD->hasAttr<AsmLabelAttr>())
48 cast<llvm::FunctionType>(getTypes().ConvertType(FD->getType()));
196 RValue CodeGenFunction::EmitBuiltinExpr(const FunctionDecl *FD,
    [all...]
CGCall.cpp 251 CodeGenTypes::arrangeFunctionDeclaration(const FunctionDecl *FD) {
252 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD))
256 CanQualType FTy = FD->getType()->getCanonicalTypeUnqualified();
316 const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl());
318 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(FD))
321 if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(FD))
324 return arrangeFunctionDeclaration(FD);
525 const FieldDecl *FD = *i;
526 assert(!FD->isBitField() &&
528 CharUnits FieldSize = getContext().getTypeSizeInChars(FD->getType())
    [all...]
CGDecl.cpp 174 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CGF.CurFuncDecl)) {
175 StringRef Name = CGM.getMangledName(FD);
    [all...]
CGException.cpp 492 const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(D);
493 if (FD == 0)
495 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>();
560 const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(D);
561 if (FD == 0)
563 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>();
    [all...]
CGStmt.cpp     [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp 546 int fd; local
548 llvm::sys::fs::createUniqueFile(TempPath.str(), fd, TempPath);
555 EC = llvm::sys::fs::createUniqueFile(TempPath.str(), fd, TempPath);
560 OS.reset(new llvm::raw_fd_ostream(fd, /*shouldClose=*/true));
857 int FD;
858 if (llvm::sys::fs::createTemporaryFile(Module->Name, "map", FD,
865 llvm::raw_fd_ostream OS(FD, /*shouldClose=*/true);
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
BasicObjCFoundationChecks.cpp 398 const FunctionDecl *FD = C.getCalleeDecl(CE);
399 if (!FD)
406 if (FD->getIdentifier() != II || CE->getNumArgs() != 3)
512 const FunctionDecl *FD = C.getCalleeDecl(CE);
513 if (!FD)
526 const IdentifierInfo *FuncII = FD->getIdentifier();
    [all...]
  /external/protobuf/src/google/protobuf/
descriptor_unittest.cc     [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
descriptor_unittest.cc     [all...]
  /external/clang/lib/Sema/
SemaDeclObjC.cpp     [all...]
SemaTemplateInstantiate.cpp 598 FunctionDecl *FD = cast<FunctionDecl>(Param->getDeclContext());
602 FD->printName(OS);
    [all...]

Completed in 1501 milliseconds

1 23 4 5