Searched defs:FD (Results 1 - 25 of 100) sorted by relevance

1234

/external/opencv/cvaux/src/
H A Dcvfindface.cpp50 FaceDetection FD; local
51 FD.SetBoosting(false);
52 FD.FindFace(Image);
54 FD.CreateResults(lpSeq);
60 FaceDetection FD; local
61 FD.SetBoosting(true);
62 FD.FindFace(Image);
64 FD.CreateResults(lpSeq);
/external/llvm/bindings/ocaml/bitwriter/
H A Dbitwriter_ocaml.c33 CAMLprim value llvm_write_bitcode_to_fd(value U, value M, value FD) { argument
43 res = LLVMWriteBitcodeToFD((LLVMModuleRef) M, Int_val(FD), 0, Unbuffered);
/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/lib/AST/
H A DDeclFriend.cpp46 FriendDecl *FD = new (C) FriendDecl(DC, L, Friend, FriendL); local
47 cast<CXXRecordDecl>(DC)->pushFriendDecl(FD);
48 return FD;
H A DComment.cpp170 const FunctionDecl *FD = cast<FunctionDecl>(ThisDecl); local
172 ParamVars = ArrayRef<const ParmVarDecl *>(FD->param_begin(),
173 FD->getNumParams());
174 ResultType = FD->getResultType();
175 unsigned NumLists = FD->getNumTemplateParameterLists();
179 FD->getTemplateParameterList(NumLists - 1);
205 const FunctionDecl *FD = FTD->getTemplatedDecl(); local
206 ParamVars = ArrayRef<const ParmVarDecl *>(FD->param_begin(),
207 FD->getNumParams());
208 ResultType = FD
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DCheckerContext.cpp39 bool CheckerContext::isCLibraryFunction(const FunctionDecl *FD, argument
41 return isCLibraryFunction(FD, Name, getASTContext());
44 bool CheckerContext::isCLibraryFunction(const FunctionDecl *FD, argument
49 unsigned BId = FD->getBuiltinID();
56 const IdentifierInfo *II = FD->getIdentifier();
/external/llvm/lib/Bitcode/Writer/
H A DBitWriter.cpp30 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose, argument
32 raw_fd_ostream OS(FD, ShouldClose, Unbuffered);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DAttrNonNullChecker.cpp37 const Decl *FD = Call.getDecl(); local
38 if (!FD)
41 const NonNullAttr *Att = FD->getAttr<NonNullAttr>();
H A DBuiltinFunctionChecker.cpp35 const FunctionDecl *FD = C.getCalleeDecl(CE); local
37 if (!FD)
40 unsigned id = FD->getBuiltinID();
H A DNoReturnFunctionChecker.cpp46 const FunctionDecl *FD = L.getAsFunctionDecl(); local
47 if (!FD)
50 if (FD->getAttr<AnalyzerNoReturnAttr>())
52 else if (const IdentifierInfo *II = FD->getIdentifier()) {
H A DChrootChecker.cpp65 const FunctionDecl *FD = C.getCalleeDecl(CE); local
66 if (!FD)
75 if (FD->getIdentifier() == II_chroot) {
79 if (FD->getIdentifier() == II_chdir) {
125 const FunctionDecl *FD = C.getCalleeDecl(CE); local
126 if (!FD)
136 if (FD->getIdentifier() == II_chroot || FD->getIdentifier() == II_chdir)
H A DCStringSyntaxChecker.cpp58 const FunctionDecl *FD = CE->getDirectCallee(); local
59 if (!FD)
61 return (CheckerContext::isCLibraryFunction(FD, "strlen", ASTC)
135 const FunctionDecl *FD = CE->getDirectCallee(); local
136 if (!FD)
139 if (CheckerContext::isCLibraryFunction(FD, "strncat", ASTC)) {
160 BR.EmitBasicReport(FD, "Anti-pattern in the argument", "C String API",
H A DObjCContainersASTChecker.cpp88 const FunctionDecl *FD = CE->getDirectCallee(); local
89 if (!FD)
92 IdentifierInfo *II = FD->getIdentifier();
H A DVirtualCallChecker.cpp70 const FunctionDecl *FD = WLUnit->getDirectCallee(); local
71 if (!FD || !FD->getBody())
73 Kind &K = VisitedFunctions[FD];
89 const FunctionDecl *FD = WLUnit->getDirectCallee(); local
90 assert(FD && FD->getBody());
92 if (VisitedFunctions[FD] == PreVisited) {
96 Visit(FD->getBody());
100 VisitedFunctions[FD]
176 const FunctionDecl *FD = (*(I-1))->getDirectCallee(); local
179 os << " <-- " << *FD; local
[all...]
H A DMallocOverflowSecurityChecker.cpp242 const FunctionDecl *FD = TheCall->getDirectCallee(); local
244 if (!FD)
248 IdentifierInfo *FnInfo = FD->getIdentifier();
H A DMallocSizeofChecker.cpp93 const FunctionDecl *FD = E->getDirectCallee(); local
94 if (FD) {
95 IdentifierInfo *II = FD->getIdentifier();
H A DUnixAPIChecker.cpp327 const FunctionDecl *FD = C.getCalleeDecl(CE); local
328 if (!FD || FD->getKind() != Decl::Function)
331 StringRef FName = C.getCalleeName(FD);
/external/clang/lib/Sema/
H A DTargetAttributesSema.cpp174 FunctionDecl *FD = dyn_cast<FunctionDecl>(D); local
175 if (!FD && !isa<VarDecl>(D)) {
187 if (FD && FD->isInlineSpecified()) {
217 FunctionDecl *FD = dyn_cast<FunctionDecl>(D); local
218 if (!FD && !isa<VarDecl>(D)) {
226 if (FD && FD->isInlineSpecified()) {
/external/llvm/lib/Support/
H A DFileOutputBuffer.cpp76 int FD; local
78 FD, TempFilePath, false, 0644);
86 raw_fd_ostream Dummy(FD, /*shouldClose=*/true);
/external/clang/unittests/Tooling/
H A DRewriterTestContext.h65 int FD; local
67 llvm::sys::fs::unique_file("rewriter-test-%%-%%-%%-%%/anchor", FD,
70 llvm::raw_fd_ostream Closer(FD, /*shouldClose=*/true);
/external/clang/include/clang/AST/
H A DDeclFriend.h192 inline void CXXRecordDecl::pushFriendDecl(FriendDecl *FD) { argument
193 assert(FD->NextFriend == 0 && "friend already has next friend?");
194 FD->NextFriend = data().FirstFriend;
195 data().FirstFriend = FD;
/external/clang/include/clang/Analysis/
H A DCallGraph.h107 bool VisitFunctionDecl(FunctionDecl *FD) { argument
110 if (includeInGraph(FD))
114 addNodeForDecl(FD, FD->isGlobal());
144 Decl *FD; member in class:clang::CallGraphNode
152 CallGraphNode(Decl *D) : FD(D) {}
171 Decl *getDecl() const { return FD; }
/external/clang/include/clang/Basic/
H A DFileManager.h57 /// If the 'FD' member is valid, then this FileEntry has an open file
69 /// FD - The file descriptor for the file entry if it is opened and owned
71 mutable int FD; member in class:clang::FileEntry
76 : Name(0), Device(device), Inode(inode), FileMode(m), FD(-1) {}
78 FileEntry() : Name(0), Device(0), Inode(0), FileMode(0), FD(-1) {}
82 assert(FD == -1 && "Cannot copy a file-owning FileEntry");
87 assert(FD == -1 && "Cannot assign a file-owning FileEntry");
/external/clang/lib/Frontend/
H A DASTConsumers.cpp247 const FunctionDecl* FD = cast<FunctionDecl>(DC); local
248 if (FD->doesThisDeclarationHaveABody())
252 Out << *FD; local
256 for (FunctionDecl::param_const_iterator I = FD->param_begin(),
257 E = FD->param_end(); I != E; ++I) {
406 FieldDecl *FD = cast<FieldDecl>(*I); local
407 Out << "<field> " << *FD << '\n'; local
/external/clang/lib/Parse/
H A DParseCXXInlineMethods.cpp120 FunctionDecl *FD = 0; local
122 FD = FunTmpl->getTemplatedDecl();
124 FD = cast<FunctionDecl>(FnD);
125 Actions.CheckForFunctionRedefinition(FD);
127 LateParsedTemplateMap[FD] = LPT;
128 Actions.MarkAsLateParsedTemplate(FD);

Completed in 424 milliseconds

1234