/external/google-breakpad/src/common/ |
D | stabs_reader_unittest.cc | 222 MOCK_METHOD2(StartFunction, bool(const string &, uint64_t)); 297 EXPECT_CALL(mock_handler, StartFunction(StrEq("fun1"), 0xa049f4b1U)) in TEST_F() 307 EXPECT_CALL(mock_handler, StartFunction(StrEq("fun2"), 0xbf27cf93U)) in TEST_F() 360 EXPECT_CALL(mock_handler, StartFunction(StrEq("fun3_1"), 0xbbd4a145U)) in TEST_F() 378 EXPECT_CALL(mock_handler, StartFunction(_, _)) in TEST_F() 432 EXPECT_CALL(mock_handler, StartFunction(Eq("arsenic"), 0x7fbcccaeU)) in TEST_F() 441 EXPECT_CALL(mock_handler, StartFunction(Eq("selenium"), 0xa8e120b0U)) in TEST_F() 500 StartFunction(Eq("function 1"), 0xbb5ab70ecdd23bfeULL)) in TEST_F() 505 StartFunction(Eq("function 2"), 0xc954de9b8fb3e5e2ULL)) in TEST_F() 510 StartFunction(Eq("function 3"), 0xdff98c9a35386e1fULL)) in TEST_F() [all …]
|
D | stabs_to_module_unittest.cc | 51 EXPECT_TRUE(h.StartFunction("function", 0xfde4abbed390c394LL)); in TEST() 113 EXPECT_TRUE(h.StartFunction("funcfoo", in TEST() 116 EXPECT_TRUE(h.StartFunction("funcfoo", in TEST() 146 EXPECT_TRUE(h.StartFunction("function", 0xb4513962eff94e92LL)); in TEST() 196 EXPECT_TRUE(h.StartFunction("_ZNSt6vectorIySaIyEE9push_backERKy", in TEST() 236 EXPECT_TRUE(h.StartFunction("function", 0x2a133596)); in TEST()
|
D | stabs_to_module.h | 79 bool StartFunction(const string &name, uint64_t address);
|
D | stabs_reader.h | 296 virtual bool StartFunction(const string &name, uint64_t address) { in StartFunction() function
|
D | stabs_to_module.cc | 90 bool StabsToModule::StartFunction(const string &name, in StartFunction() function in google_breakpad::StabsToModule
|
D | stabs_reader.cc | 233 if (! handler_->StartFunction(name, function_address)) in ProcessFunction()
|
/external/clang/lib/CodeGen/ |
D | CGDeclCXX.cpp | 203 CGF.StartFunction(&VD, CGM.getContext().VoidTy, fn, in createAtExitStub() 476 StartFunction(GlobalDecl(D), getContext().VoidTy, Fn, in GenerateCXXGlobalVarDeclInitFunc() 499 StartFunction(GlobalDecl(), getContext().VoidTy, Fn, in GenerateCXXGlobalInitFunc() 550 StartFunction(GlobalDecl(), getContext().VoidTy, Fn, in GenerateCXXGlobalDtorsFunc() 587 StartFunction(VD, getContext().VoidTy, fn, FI, args); in generateDestroyHelper()
|
D | CGOpenMPRuntime.cpp | 850 CtorCGF.StartFunction(GlobalDecl(), CGM.getContext().VoidPtrTy, Fn, FI, in emitThreadPrivateVarDefinition() 884 DtorCGF.StartFunction(GlobalDecl(), CGM.getContext().VoidTy, Fn, FI, Args, in emitThreadPrivateVarDefinition() 925 InitCGF.StartFunction(GlobalDecl(), CGM.getContext().VoidTy, InitFunction, in emitThreadPrivateVarDefinition() 1130 CGF.StartFunction(GlobalDecl(), C.VoidTy, Fn, CGFI, Args); in emitCopyprivateCopyFunction() 1524 CGF.StartFunction(GlobalDecl(), KmpInt32Ty, TaskEntry, TaskEntryFnInfo, Args); in emitProxyTaskFunction() 1655 CGF.StartFunction(GlobalDecl(), C.VoidTy, Fn, CGFI, Args); in emitReductionFunction()
|
D | CGBlocks.cpp | 1161 StartFunction(blockDecl, fnType->getReturnType(), fn, fnInfo, args, in GenerateBlockFunction() 1335 StartFunction(FD, C.VoidTy, Fn, FI, args); in GenerateCopyHelperFunction() 1508 StartFunction(FD, C.VoidTy, Fn, FI, args); in GenerateDestroyHelperFunction() 1800 CGF.StartFunction(FD, R, Fn, FI, args); in generateByrefCopyHelper() 1872 CGF.StartFunction(FD, R, Fn, FI, args); in generateByrefDisposeHelper()
|
D | CodeGenFunction.cpp | 586 void CodeGenFunction::StartFunction(GlobalDecl GD, in StartFunction() function in CodeGenFunction 866 StartFunction(GD, ResTy, Fn, FnInfo, Args, Loc, BodyRange.getBegin()); in GenerateCode()
|
D | CGObjC.cpp | 477 StartFunction(OMD, OMD->getReturnType(), Fn, FI, args, in StartObjCMethod() 2908 StartFunction(FD, C.VoidTy, Fn, FI, args); in GenerateObjCAtomicSetterCopyHelperFunction() 2986 StartFunction(FD, C.VoidTy, Fn, FI, args); in GenerateObjCAtomicGetterCopyHelperFunction()
|
D | CGVTables.cpp | 216 StartFunction(GlobalDecl(), ResultType, Fn, FnInfo, FunctionArgs, in StartThunk()
|
D | CGException.cpp | 1467 StartFunction(GlobalDecl(), RetTy, Fn, FnInfo, Args, in startOutlinedSEHHelper()
|
D | CGStmt.cpp | 2199 StartFunction(CD, Ctx.VoidTy, F, FuncInfo, Args, in GenerateCapturedStmtFunction()
|
D | MicrosoftCXXABI.cpp | 1712 CGF.StartFunction(GlobalDecl(), FnInfo.getReturnType(), ThunkFn, FnInfo, in EmitVirtualMemPtrThunk() 3390 CGF.StartFunction(GlobalDecl(), FnInfo.getReturnType(), ThunkFn, FnInfo, in getAddrOfCXXCtorClosure()
|
D | CodeGenFunction.h | 1212 void StartFunction(GlobalDecl GD,
|