/external/clang/test/Modules/Inputs/declare-use/ |
module.map | 12 // Intentionally doesn't use XB to show that -fdecl-use isn't transitive. 18 // Intentionally doesn't use XB to show that -fdecl-use isn't transitive.
|
/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, 233 if ( (BId = FDecl->getMemoryFunctionKind()) ) 252 if (C.isCLibraryFunction(FDecl, "snprintf") || 253 C.isCLibraryFunction(FDecl, "sprintf")) 255 else if (C.isCLibraryFunction(FDecl, "strcpy") || 256 C.isCLibraryFunction(FDecl, "stpcpy") || 257 C.isCLibraryFunction(FDecl, "strcat")) 259 else if (C.isCLibraryFunction(FDecl, "bcopy") [all...] |
CStringChecker.cpp | [all...] |
/external/qemu/scripts/ |
qapi-types.py | 334 fdecl = maybe_open(do_h, h_file, 'w') variable 359 fdecl.write(mcgen(''' 387 fdecl.write(guardstart("QAPI_TYPES_BUILTIN_STRUCT_DECL")) 389 fdecl.write(generate_fwd_struct(typename, None, builtin_type=True)) 390 fdecl.write(guardend("QAPI_TYPES_BUILTIN_STRUCT_DECL")) 408 fdecl.write(ret) 412 fdecl.write(guardstart("QAPI_TYPES_BUILTIN_CLEANUP_DECL")) 414 fdecl.write(generate_type_cleanup_decl(typename + "List")) 415 fdecl.write(guardend("QAPI_TYPES_BUILTIN_CLEANUP_DECL")) 445 fdecl.write(ret [all...] |
qapi-visit.py | 435 fdecl = maybe_open(do_h, h_file, 'w') variable 458 fdecl.write(mcgen(''' 487 fdecl.write(guardstart("QAPI_VISIT_BUILTIN_VISITOR_DECL")) 489 fdecl.write(generate_declaration(typename, None, genlist=True, 491 fdecl.write(guardend("QAPI_VISIT_BUILTIN_VISITOR_DECL")) 509 fdecl.write(ret) 517 fdecl.write(ret) 525 fdecl.write(ret) 527 fdecl.write(''' 531 fdecl.flush( [all...] |
qapi-commands.py | 448 fdecl = maybe_open(do_h, h_file, 'w') 451 fdecl.write(ret) 463 fdecl.write(ret) 469 fdecl.write('%s;\n' % gen_marshal_input_decl(cmd['command'], arglist, ret_type, middle_mode)) 474 fdecl.write("\n#endif\n"); 482 fdecl.flush() 483 fdecl.close()
|
/external/clang/lib/Sema/ |
SemaChecking.cpp | 729 const NamedDecl *FDecl, 733 for (const auto *NonNull : FDecl->specific_attrs<NonNullAttr>()) { 740 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(FDecl)) 742 else if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(FDecl)) 756 void Sema::checkCall(NamedDecl *FDecl, ArrayRef<const Expr *> Args, 766 if (FDecl) { 767 for (const auto *I : FDecl->specific_attrs<FormatAttr>()) { 788 if (FDecl) { 789 CheckNonNullArguments(*this, FDecl, Args.data(), Loc); 792 for (const auto *I : FDecl->specific_attrs<ArgumentWithTypeTagAttr>() [all...] |
SemaExpr.cpp | [all...] |
SemaCodeComplete.cpp | [all...] |
SemaOverload.cpp | [all...] |
SemaLookup.cpp | [all...] |
/external/clang/include/clang/Sema/ |
Sema.h | [all...] |
/external/clang/lib/AST/ |
Expr.cpp | [all...] |
/external/clang/lib/Rewrite/Frontend/ |
RewriteModernObjC.cpp | 208 if (FunctionDecl *FDecl = dyn_cast<FunctionDecl>(*I)) { 213 if (FDecl->isThisDeclarationADefinition() && 215 !FDecl->isTopLevelDeclInObjCContainer()) { 216 FunctionDefinitionsSeen.push_back(FDecl); [all...] |