HomeSort by relevance Sort by last modified time
    Searched refs:FunctionDecl (Results 51 - 75 of 264) sorted by null

1 23 4 5 6 7 8 91011

  /external/clang/lib/StaticAnalyzer/Checkers/
GenericTaintChecker.cpp 97 bool checkTaintedBufferSize(const CallExpr *CE, const FunctionDecl *FDecl,
144 getTaintPropagationRule(const FunctionDecl *FDecl,
199 const FunctionDecl *FDecl,
295 const FunctionDecl *FDecl = C.getCalleeDecl(CE);
372 const FunctionDecl *FDecl = C.getCalleeDecl(CE);
409 const FunctionDecl *FDecl = C.getCalleeDecl(CE);
612 const FunctionDecl *FDecl = C.getCalleeDecl(CE);
693 const FunctionDecl *FDecl,
BuiltinFunctionChecker.cpp 35 const FunctionDecl *FD = C.getCalleeDecl(CE);
NSErrorChecker.cpp 88 : public Checker< check::ASTDecl<FunctionDecl> > {
94 void checkASTDecl(const FunctionDecl *D,
99 void CFErrorFunctionChecker::checkASTDecl(const FunctionDecl *D,
RetainCountChecker.cpp 588 typedef llvm::DenseMap<const FunctionDecl*, const RetainSummary *>
653 const RetainSummary *getCFSummaryCreateRule(const FunctionDecl *FD);
654 const RetainSummary *getCFSummaryGetRule(const FunctionDecl *FD);
655 const RetainSummary *getCFCreateGetRuleSummary(const FunctionDecl *FD);
755 const RetainSummary *getFunctionSummary(const FunctionDecl *FD);
800 const FunctionDecl *FD);
885 static bool isRetain(const FunctionDecl *FD, StringRef FName) {
889 static bool isRelease(const FunctionDecl *FD, StringRef FName) {
893 static bool isAutorelease(const FunctionDecl *FD, StringRef FName) {
897 static bool isMakeCollectable(const FunctionDecl *FD, StringRef FName)
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 955 const internal::VariadicDynCastAllOfMatcher<Decl, FunctionDecl> functionDecl;
    [all...]
  /development/vndk/tools/header-checker/src/repr/protobuf/
ir_reader.h 78 FunctionIR FunctionProtobufToIR(const abi_dump::FunctionDecl &);
  /external/clang/include/clang/Sema/
ExternalSemaSource.h 193 llvm::MapVector<const FunctionDecl *, LateParsedTemplate *> &LPTMap) {}
Template.h 433 Decl *VisitFunctionDecl(FunctionDecl *D,
488 TypeSourceInfo *SubstFunctionType(FunctionDecl *D,
490 bool InitFunctionInstantiation(FunctionDecl *New, FunctionDecl *Tmpl);
Overload.h 35 class FunctionDecl;
274 FunctionDecl* ConversionFunction;
286 typedef SmallVector<std::pair<NamedDecl*, FunctionDecl*>, 4> ConversionSet;
309 void addConversion(NamedDecl *Found, FunctionDecl *D) {
598 FunctionDecl *Function;
  /external/clang/lib/AST/
DeclBase.cpp 188 FunctionDecl *Decl::getAsFunction() {
189 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(this))
201 if (auto *FD = dyn_cast<FunctionDecl>(this))
555 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(this)) {
765 // Special handling of FunctionDecl to avoid de-serializing the body from PCH.
766 // FunctionDecl stores EndRangeLoc for this purpose.
767 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(this))
    [all...]
  /external/clang/lib/Analysis/
CocoaConventions.cpp 91 bool coreFoundation::followsCreateRule(const FunctionDecl *fn) {
CallGraph.cpp 42 if (FunctionDecl *CalleeDecl = CE->getDirectCallee())
116 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
BodyFarm.cpp 168 typedef Stmt *(*FunctionFarmer)(ASTContext &C, const FunctionDecl *D);
171 static Stmt *create_dispatch_once(ASTContext &C, const FunctionDecl *D) {
248 static Stmt *create_dispatch_sync(ASTContext &C, const FunctionDecl *D) {
274 static Stmt *create_OSAtomicCompareAndSwap(ASTContext &C, const FunctionDecl *D)
352 Stmt *BodyFarm::getBody(const FunctionDecl *D) {
Consumed.cpp 184 static bool isTestingFunction(const FunctionDecl *FunDecl) {
264 static ConsumedState testsFor(const FunctionDecl *FunDecl) {
488 void propagateReturnType(const Expr *Call, const FunctionDecl *Fun);
492 const FunctionDecl *FunDecl,
495 const FunctionDecl *FunD);
581 const FunctionDecl *FunDecl,
615 const FunctionDecl *FunD) {
689 const FunctionDecl *Fun) {
749 const FunctionDecl *FunDecl = Call->getDirectCallee();
827 const FunctionDecl *FunDecl
    [all...]
  /external/deqp-deps/SPIRV-Tools/source/val/
function.cpp 43 declaration_type_(FunctionDecl::kFunctionDeclUnknown),
105 spv_result_t Function::RegisterSetFunctionDeclType(FunctionDecl type) {
106 assert(declaration_type_ == FunctionDecl::kFunctionDeclUnknown);
113 declaration_type_ == FunctionDecl::kFunctionDeclDefinition &&
  /external/swiftshader/third_party/SPIRV-Tools/source/val/
function.cpp 43 declaration_type_(FunctionDecl::kFunctionDeclUnknown),
105 spv_result_t Function::RegisterSetFunctionDeclType(FunctionDecl type) {
106 assert(declaration_type_ == FunctionDecl::kFunctionDeclUnknown);
113 declaration_type_ == FunctionDecl::kFunctionDeclDefinition &&
  /external/v8/tools/clang/blink_gc_plugin/
BadPatternFinder.cpp 35 callee(functionDecl(
46 auto* bad_function = result.Nodes.getNodeAs<clang::FunctionDecl>("badfunc");
CheckTraceVisitor.cpp 202 FunctionDecl* trace_decl =
203 dyn_cast<FunctionDecl>(callee->getMemberDecl());
328 if (FunctionDecl* callback =
329 dyn_cast<FunctionDecl>(args[1].getAsDecl())) {
Config.h 216 static TraceMethodType GetTraceMethodType(const clang::FunctionDecl* method) {
238 static bool IsTraceMethod(const clang::FunctionDecl* method) {
242 static bool IsTraceWrappersMethod(const clang::FunctionDecl* method);
BlinkGCPluginConsumer.cpp 29 std::set<FunctionDecl*> GetLateParsedFunctionDecls(TranslationUnitDecl* decl) {
31 bool VisitFunctionDecl(FunctionDecl* function_decl) {
37 std::set<FunctionDecl*> late_parsed_decls;
134 std::set<FunctionDecl*> late_parsed_decls = GetLateParsedFunctionDecls(decl);
137 for (const FunctionDecl* fd : late_parsed_decls) {
404 const FunctionDecl* defn;
  /external/clang/lib/CodeGen/
CodeGenTypes.h 191 const FunctionDecl *FD = nullptr);
261 const CGFunctionInfo &arrangeFunctionDeclaration(const FunctionDecl *FD);
266 const FunctionDecl *FD);
  /external/clang/lib/StaticAnalyzer/Core/
SVals.cpp 51 const FunctionDecl *SVal::getAsFunctionDecl() const {
55 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CTR->getDecl()))
  /external/clang/lib/ARCMigrate/
TransUnbridgedCasts.cpp 136 if (FunctionDecl *FD = callE->getDirectCallee()) {
420 if (FunctionDecl *
421 FD = dyn_cast_or_null<FunctionDecl>(callE->getCalleeDecl()))
433 if (FunctionDecl *
434 FD = dyn_cast_or_null<FunctionDecl>(callE->getCalleeDecl())) {
  /external/clang/lib/Frontend/Rewrite/
RewriteObjC.cpp 94 FunctionDecl *MsgSendFunctionDecl;
95 FunctionDecl *MsgSendSuperFunctionDecl;
96 FunctionDecl *MsgSendStretFunctionDecl;
97 FunctionDecl *MsgSendSuperStretFunctionDecl;
98 FunctionDecl *MsgSendFpretFunctionDecl;
99 FunctionDecl *GetClassFunctionDecl;
100 FunctionDecl *GetMetaClassFunctionDecl;
101 FunctionDecl *GetSuperClassFunctionDecl;
102 FunctionDecl *SelGetUidFunctionDecl;
103 FunctionDecl *CFStringFunctionDecl
    [all...]
  /external/clang/include/clang/Serialization/
ASTWriter.h 673 void ResolvedExceptionSpec(const FunctionDecl *FD) override;
674 void DeducedReturnType(const FunctionDecl *FD, QualType ReturnType) override;
676 const FunctionDecl *Delete) override;
677 void CompletedImplicitDefinition(const FunctionDecl *D) override;
680 void FunctionDefinitionInstantiated(const FunctionDecl *D) override;
790 void AddFunctionDefinition(const FunctionDecl *FD);
    [all...]

Completed in 2592 milliseconds

1 23 4 5 6 7 8 91011