Searched defs:FD (Results 1 - 25 of 126) sorted by path

123456

/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Ddescriptor_unittest.cc1576 typedef FieldDescriptor FD; // avoid ugly line wrapping typedef
1578 EXPECT_STREQ("double" , GetTypeNameForFieldType(FD::TYPE_DOUBLE ));
1579 EXPECT_STREQ("float" , GetTypeNameForFieldType(FD::TYPE_FLOAT ));
1580 EXPECT_STREQ("int64" , GetTypeNameForFieldType(FD::TYPE_INT64 ));
1581 EXPECT_STREQ("uint64" , GetTypeNameForFieldType(FD::TYPE_UINT64 ));
1582 EXPECT_STREQ("int32" , GetTypeNameForFieldType(FD::TYPE_INT32 ));
1583 EXPECT_STREQ("fixed64" , GetTypeNameForFieldType(FD::TYPE_FIXED64 ));
1584 EXPECT_STREQ("fixed32" , GetTypeNameForFieldType(FD::TYPE_FIXED32 ));
1585 EXPECT_STREQ("bool" , GetTypeNameForFieldType(FD::TYPE_BOOL ));
1586 EXPECT_STREQ("string" , GetTypeNameForFieldType(FD
1601 typedef FieldDescriptor FD; // avoid ugly line wrapping typedef
1626 typedef FieldDescriptor FD; // avoid ugly line wrapping typedef
1659 typedef FieldDescriptorProto FD; // avoid ugly line wrapping typedef
[all...]
H A Ddynamic_message.cc95 typedef FieldDescriptor FD; // avoid line wrapping typedef
96 if (field->label() == FD::LABEL_REPEATED) {
98 case FD::CPPTYPE_INT32 : return sizeof(RepeatedField<int32 >);
99 case FD::CPPTYPE_INT64 : return sizeof(RepeatedField<int64 >);
100 case FD::CPPTYPE_UINT32 : return sizeof(RepeatedField<uint32 >);
101 case FD::CPPTYPE_UINT64 : return sizeof(RepeatedField<uint64 >);
102 case FD::CPPTYPE_DOUBLE : return sizeof(RepeatedField<double >);
103 case FD::CPPTYPE_FLOAT : return sizeof(RepeatedField<float >);
104 case FD::CPPTYPE_BOOL : return sizeof(RepeatedField<bool >);
105 case FD
[all...]
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfCIDFontDescriptorDictionary_autogen.cpp35 SkPdfDictionary* SkPdfCIDFontDescriptorDictionary::FD(SkPdfNativeDoc* doc) { function in class:SkPdfCIDFontDescriptorDictionary
36 SkPdfNativeObject* ret = get("FD", "");
44 return get("FD", "") != NULL;
/external/clang/examples/analyzer-plugin/
H A DMainCallChecker.cpp22 const FunctionDecl *FD = state->getSVal(Callee, LC).getAsFunctionDecl(); local
24 if (!FD)
28 IdentifierInfo *II = FD->getIdentifier();
/external/clang/include/clang/AST/
H A DASTContext.h689 FunctionDecl *getClassScopeSpecializationPattern(const FunctionDecl *FD);
691 void setClassScopeSpecializationPattern(FunctionDecl *FD,
913 void adjustDeducedFunctionResultType(FunctionDecl *FD, QualType ResultType);
961 void setcudaConfigureCallDecl(FunctionDecl *FD) { argument
962 cudaConfigureCallDecl = FD;
1738 uint64_t getFieldOffset(const ValueDecl *FD) const;
2167 GVALinkage GetGVALinkageForFunction(const FunctionDecl *FD) const;
H A DASTMutationListener.h70 virtual void ResolvedExceptionSpec(const FunctionDecl *FD) {} argument
73 virtual void DeducedReturnType(const FunctionDecl *FD, QualType ReturnType);
H A DDeclCXX.h54 AnyFunctionDecl(FunctionDecl *FD) : Function(FD) { } argument
785 void pushFriendDecl(FriendDecl *FD);
H A DDeclFriend.h235 inline void CXXRecordDecl::pushFriendDecl(FriendDecl *FD) { argument
236 assert(!FD->NextFriend && "friend already has next friend?");
237 FD->NextFriend = data().FirstFriend;
238 data().FirstFriend = FD;
H A DDeclTemplate.h290 FunctionTemplateSpecializationInfo(FunctionDecl *FD, argument
296 : Function(FD),
304 Create(ASTContext &C, FunctionDecl *FD, FunctionTemplateDecl *Template,
2191 CXXMethodDecl *FD, bool Args,
2194 Specialization(FD), HasExplicitTemplateArgs(Args),
2212 CXXMethodDecl *FD,
2216 DC, Loc, FD, HasExplicitTemplateArgs, TemplateArgs);
2190 ClassScopeFunctionSpecializationDecl(DeclContext *DC, SourceLocation Loc, CXXMethodDecl *FD, bool Args, TemplateArgumentListInfo TemplArgs) argument
2209 Create(ASTContext &C, DeclContext *DC, SourceLocation Loc, CXXMethodDecl *FD, bool HasExplicitTemplateArgs, TemplateArgumentListInfo TemplateArgs) argument
H A DExpr.h507 static bool isPotentialConstantExpr(const FunctionDecl *FD,
513 /// it were in function FD marked constexpr. Return false if the function can
517 const FunctionDecl *FD,
3858 void setInitializedFieldInUnion(FieldDecl *FD) { argument
3859 assert((FD == nullptr
3861 || getInitializedFieldInUnion() == FD)
3863 ArrayFillerOrUnionFieldInit = FD;
4091 void setField(FieldDecl *FD) { argument
4093 Field.NameOrField = reinterpret_cast<uintptr_t>(FD);
/external/clang/include/clang/Analysis/
H A DCFG.h675 void appendMemberDtor(FieldDecl *FD, BumpVectorContext &C) { argument
676 Elements.push_back(CFGMemberDtor(FD), C);
H A DCallGraph.h97 bool VisitFunctionDecl(FunctionDecl *FD) { argument
100 if (includeInGraph(FD)) {
102 addNodesForBlocks(FD);
106 addNodeForDecl(FD, FD->isGlobal());
139 Decl *FD; member in class:clang::CallGraphNode
145 CallGraphNode(Decl *D) : FD(D) {}
163 Decl *getDecl() const { return FD; }
/external/clang/include/clang/Parse/
H A DParser.h1021 LateParsedMemberInitializer(Parser *P, Decl *FD) argument
1022 : Self(P), Field(FD) { }
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h223 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
224 return FD->isOverloadedOperator() && FD->isImplicit() && FD->isGlobal();
398 const FunctionDecl *FD = getDecl(); variable
401 if (FD) {
404 getManager()->getContext(FD);
H A DMemRegion.h546 const NamedDecl *FD; member in class:clang::ento::FunctionTextRegion
549 : CodeTextRegion(sreg, FunctionTextRegionKind), FD(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,
943 static void ProfileRegion(llvm::FoldingSetNodeID& ID, const FieldDecl *FD, argument
945 DeclRegion::ProfileRegion(ID, FD, superRegion, FieldRegionKind);
1264 const FunctionTextRegion *getFunctionTextRegion(const NamedDecl *FD);
/external/clang/lib/ARCMigrate/
H A DObjCMT.cpp1772 else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(*D)) {
1774 canModify(FD))
1775 migrateCFAnnotation(Ctx, FD);
2068 int FD; local
2070 path::extension(FE->getName()), FD,
2076 llvm::raw_fd_ostream TmpOut(FD, /*shouldClose=*/true);
/external/clang/lib/AST/
H A DAPValue.cpp521 if (const FieldDecl *FD = getUnionField()) {
522 Out << "." << *FD << " = "; local
523 getUnionValue().printPretty(Out, Ctx, FD->getType());
H A DASTContext.cpp83 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
84 if (FD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
264 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
266 if (const FunctionTemplateDecl *FTD = FD->getDescribedFunctionTemplate())
270 if (FD->getTemplateSpecializationKind() != TSK_ImplicitInstantiation)
274 if (const FunctionTemplateDecl *FTD = FD->getPrimaryTemplate())
279 FD->getInstantiatedFromMemberFunction())
1120 const FunctionDecl *FD){
1121 assert(FD && "Specialization is 0");
1123 = ClassScopeSpecializationPattern.find(FD);
1119 getClassScopeSpecializationPattern( const FunctionDecl *FD) argument
1130 setClassScopeSpecializationPattern(FunctionDecl *FD, FunctionDecl *Pattern) argument
2097 adjustDeducedFunctionResultType(FunctionDecl *FD, QualType ResultType) argument
5178 EncodeBitField(const ASTContext *Ctx, std::string& S, QualType T, const FieldDecl *FD) argument
5212 getObjCEncodingForTypeImpl(QualType T, std::string& S, bool ExpandPointedToStructures, bool ExpandStructures, const FieldDecl *FD, bool OutermostType, bool EncodingProperty, bool StructField, bool EncodeBlockParameters, bool EncodeClassNames, bool EncodePointerToObjCTypedef) const argument
5491 ExpandStructures, FD); local
5582 getObjCEncodingForStructureImpl(RecordDecl *RDecl, std::string &S, const FieldDecl *FD, bool includeVBases) const argument
7437 DeducedReturnType(const FunctionDecl *FD, QualType ReturnType) argument
7757 basicGVALinkageForFunction(const ASTContext &Context, const FunctionDecl *FD) argument
[all...]
H A DComment.cpp158 const FunctionDecl *FD = cast<FunctionDecl>(CommentDecl); local
160 ParamVars = ArrayRef<const ParmVarDecl *>(FD->param_begin(),
161 FD->getNumParams());
162 ReturnType = FD->getReturnType();
163 unsigned NumLists = FD->getNumTemplateParameterLists();
167 FD->getTemplateParameterList(NumLists - 1);
193 const FunctionDecl *FD = FTD->getTemplatedDecl(); local
194 ParamVars = ArrayRef<const ParmVarDecl *>(FD->param_begin(),
195 FD->getNumParams());
196 ReturnType = FD
[all...]
H A DDecl.cpp532 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D); local
533 if (!FD)
538 = FD->getTemplateSpecializationInfo()) {
541 FD->getMemberSpecializationInfo()) {
551 FD->hasBody(Def) && Def->isInlined() && !Def->hasAttr<GNUInlineAttr>();
1169 const FunctionDecl *FD = cast<FunctionDecl>(OuterD); local
1170 if (!FD->isInlined() &&
1171 FD->getTemplateSpecializationKind() == TSK_Undeclared)
1174 LV = getLVForDecl(FD, computation);
1382 } else if (const FunctionDecl *FD
1387 OS << *FD << '('; local
2879 setInstantiationOfMemberFunction(ASTContext &C, FunctionDecl *FD, TemplateSpecializationKind TSK) argument
[all...]
H A DDeclFriend.cpp50 FriendDecl *FD = new (C, DC, Extra) FriendDecl(DC, L, Friend, FriendL, local
52 cast<CXXRecordDecl>(DC)->pushFriendDecl(FD);
53 return FD;
H A DDeclPrinter.cpp506 FieldDecl *FD = BMInitializer->getAnyMember(); local
507 Out << *FD; local
604 else if (FunctionDecl *FD =
607 VisitFunctionDecl(FD);
H A DDeclTemplate.cpp663 FunctionTemplateSpecializationInfo::Create(ASTContext &C, FunctionDecl *FD, argument
674 return new (C) FunctionTemplateSpecializationInfo(FD, Template, TSK,
H A DExprConstant.cpp132 } else if (const FieldDecl *FD = getAsField(Path[I])) {
133 Type = FD->getType();
242 if (const FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
243 MostDerivedType = FD->getType();
1282 if (const auto *FD = dyn_cast<const FunctionDecl>(VD)) {
1293 if (Info.getLangOpts().CPlusPlus && FD->hasAttr<DLLImportAttr>())
1535 APValue &Value, const FieldDecl *FD) {
1536 assert(FD->isBitField() && "truncateBitfieldValue on non-bitfield");
1549 unsigned NewBitWidth = FD->getBitWidthValue(Info.Ctx);
1837 const FieldDecl *FD,
1534 truncateBitfieldValue(EvalInfo &Info, const Expr *E, APValue &Value, const FieldDecl *FD) argument
1836 HandleLValueMember(EvalInfo &Info, const Expr *E, LValue &LVal, const FieldDecl *FD, const ASTRecordLayout *RL = nullptr) argument
[all...]
H A DInheritViz.cpp140 int FD; local
143 sys::fs::createTemporaryFile(Self.getAsString(), "dot", FD, Filename);
151 llvm::raw_fd_ostream O(FD, true);

Completed in 635 milliseconds

123456