Home
last modified time | relevance | path

Searched refs:function_ (Results 1 – 25 of 59) sorted by relevance

123

/external/chromium_org/base/
Dbind_internal_win.h34 : function_(function) { in RunnableAdapter()
38 return function_(); in Run()
42 R (__stdcall *function_)();
52 : function_(function) { in RunnableAdapter()
56 return function_(); in Run()
60 R (__fastcall *function_)();
70 : function_(function) { in RunnableAdapter()
74 return function_(a1); in Run()
78 R (__stdcall *function_)(A1);
88 : function_(function) { in RunnableAdapter()
[all …]
Dbind_internal_win.h.pump44 : function_(function) {
48 return function_($for ARG , [[a$(ARG)]]);
52 R (__stdcall *function_)($for ARG , [[A$(ARG)]]);
63 : function_(function) {
67 return function_($for ARG , [[a$(ARG)]]);
71 R (__fastcall *function_)($for ARG , [[A$(ARG)]]);
/external/chromium/chrome/browser/extensions/
Dextension_test_message_listener.cc36 function_->Reply(message); in Reply()
37 function_ = NULL; in Reply()
47 function_ = Source<ExtensionTestSendMessageFunction>(source).ptr(); in Observe()
51 function_->Reply(""); in Observe()
52 function_ = NULL; in Observe()
Dextension_file_browser_private_api.cc230 : function_(function), in LocalFileSystemCallbackDispatcher()
234 DCHECK(function_); in LocalFileSystemCallbackDispatcher()
272 NewRunnableMethod(function_, in DidOpenFileSystem()
281 NewRunnableMethod(function_, in DidFail()
328 RequestLocalFileSystemFunction* function_; member in LocalFileSystemCallbackDispatcher
438 : function_(function), in ExecuteTasksFileSystemCallbackDispatcher()
444 DCHECK(function_); in ExecuteTasksFileSystemCallbackDispatcher()
489 NewRunnableMethod(function_, in DidOpenFileSystem()
496 NewRunnableMethod(function_, in DidOpenFileSystem()
508 NewRunnableMethod(function_, in DidFail()
[all …]
Dextension_test_message_listener.h86 ExtensionTestSendMessageFunction* function_; variable
/external/chromium_org/chrome/browser/extensions/
Dextension_test_message_listener.cc39 function_->Reply(message); in Reply()
40 function_ = NULL; in Reply()
57 function_ = content::Source<extensions::TestSendMessageFunction>( in Observe()
62 function_->Reply(std::string()); in Observe()
63 function_ = NULL; in Observe()
Dextension_test_message_listener.h102 scoped_refptr<extensions::TestSendMessageFunction> function_; variable
/external/chromium_org/chrome/browser/chromeos/extensions/
Dwallpaper_function_base.cc45 : function_(function) { in UnsafeWallpaperDecoder()
75 function_->OnCancel(); in OnImageDecoded()
79 function_->OnWallpaperDecoded(final_image); in OnImageDecoded()
84 function_->OnFailure( in OnDecodeImageFailed()
90 scoped_refptr<WallpaperFunctionBase> function_; member in WallpaperFunctionBase::UnsafeWallpaperDecoder
/external/ceres-solver/internal/ceres/
Druntime_numeric_diff_cost_function.cc137 : function_(function), in RuntimeNumericDiffCostFunction()
150 bool success = function_->Evaluate(parameters, residuals, NULL); in Evaluate()
160 const vector<int16>& block_sizes = function_->parameter_block_sizes(); in Evaluate()
185 if (!EvaluateJacobianForParameterBlock(function_, in Evaluate()
200 const CostFunction* function_; member in ceres::internal::__anon4c862b500111::RuntimeNumericDiffCostFunction
Dgradient_checking_cost_function.cc86 : function_(function), in GradientCheckingCostFunction()
104 return function_->Evaluate(parameters, residuals, NULL); in Evaluate()
107 int num_residuals = function_->num_residuals(); in Evaluate()
110 const vector<int16>& block_sizes = function_->parameter_block_sizes(); in Evaluate()
124 if (!function_->Evaluate(parameters, in Evaluate()
210 const CostFunction* function_; member in ceres::internal::__anon5dbed62b0111::GradientCheckingCostFunction
/external/chromium_org/extensions/browser/
Dextension_function.cc40 function_(function) { in RenderViewHostTracker()
47 if (render_view_host != function_->render_view_host()) in RenderViewDeleted()
50 function_->SetRenderViewHost(NULL); in RenderViewDeleted()
54 return function_->OnMessageReceivedFromRenderView(message); in OnMessageReceived()
57 UIThreadExtensionFunction* function_; member in UIThreadExtensionFunction::RenderViewHostTracker
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
Dfile_browser_handler_api.cc156 scoped_refptr<FileBrowserHandlerInternalSelectFileFunction> function_; member in __anon8b29c0f90111::FileSelectorImpl
167 if (function_.get()) in ~FileSelectorImpl()
178 function_ = function; in SelectFile()
248 if (function_.get()) in SendResponse()
249 function_->OnFilePathSelected(success, selected_path); in SendResponse()
250 function_ = NULL; in SendResponse()
/external/v8/src/
Dcompiler.h61 FunctionLiteral* function() const { return function_; } in function()
98 ASSERT(function_ == NULL); in SetFunction()
99 function_ = literal; in SetFunction()
187 CompilationInfo() : function_(NULL) {} in CompilationInfo()
231 FunctionLiteral* function_; variable
Dscopes.cc178 function_ = NULL; in SetDefaults()
415 if (function_ != NULL && function_->name().is_identical_to(name)) { in LookupFunctionVar()
416 return function_->var(); in LookupFunctionVar()
812 if (function_ != NULL) { in Print()
814 PrintName(function_->name()); in Print()
846 if (function_ != NULL) { in Print()
847 PrintVar(n1, function_->var()); in Print()
1226 if (function_ != NULL) { in AllocateNonParameterLocals()
1227 AllocateNonParameterLocal(function_->var()); in AllocateNonParameterLocals()
1269 (function_ != NULL && function_->var()->IsStackLocal() ? 1 : 0); in StackLocalCount()
[all …]
Dscopes.h133 ASSERT(is_function_scope() && function_ == NULL); in DeclareFunctionVar()
136 function_ = factory->NewVariableProxy(function_var); in DeclareFunctionVar()
319 return function_; in function()
452 VariableProxy* function_; variable
Ddeoptimizer.h319 JSFunction* function_; variable
369 JSFunction* GetFunction() const { return function_; } in GetFunction()
485 JSFunction* function_; variable
733 return function_; in GetFunction()
771 JSFunction* function_; variable
/external/chromium/net/socket/
Dnss_ssl_util.cc221 : function_(function), param_(param), ssl_lib_error_(PR_GetError()) { in SSLFailedNSSFunctionParams()
226 dict->SetString("function", function_); in ToValue()
234 const std::string function_; member in net::SSLFailedNSSFunctionParams
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
Dcallback.h40 explicit FunctionCallback4(FunctionType* function) : function_(function) {} in FunctionCallback4()
44 return function_(a1, a2, a3, a4); in Run()
48 FunctionType* const function_;
/external/chromium_org/v8/src/
Dscopes.cc186 function_ = NULL; in SetDefaults()
427 if (function_ != NULL && function_->proxy()->name().is_identical_to(name)) { in LookupFunctionVar()
428 return function_->proxy()->var(); in LookupFunctionVar()
875 if (function_ != NULL) { in Print()
877 PrintName(function_->proxy()->name()); in Print()
908 if (function_ != NULL) { in Print()
910 PrintVar(n1, function_->proxy()->var()); in Print()
1342 if (function_ != NULL) { in AllocateNonParameterLocals()
1343 AllocateNonParameterLocal(function_->proxy()->var()); in AllocateNonParameterLocals()
1404 (function_ != NULL && function_->proxy()->var()->IsStackLocal() ? 1 : 0); in StackLocalCount()
[all …]
Dscopes.h144 function_ = declaration; in DeclareFunctionVar()
336 return function_; in function()
478 VariableDeclaration* function_; variable
Ddeoptimizer.h157 Handle<JSFunction> function() const { return Handle<JSFunction>(function_); } in function()
414 JSFunction* function_; variable
485 JSFunction* GetFunction() const { return function_; } in GetFunction()
601 JSFunction* function_; variable
887 return function_; in GetFunction()
925 JSFunction* function_; variable
/external/protobuf/src/google/protobuf/stubs/
Dcommon.h824 : function_(function), self_deleting_(self_deleting) {} in FunctionClosure0()
828 function_(); in Run()
833 FunctionType function_;
864 : function_(function), self_deleting_(self_deleting), in FunctionClosure1()
869 function_(arg1_); in Run()
874 FunctionType function_;
909 : function_(function), self_deleting_(self_deleting), in FunctionClosure2()
914 function_(arg1_, arg2_); in Run()
919 FunctionType function_;
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
Dcommon.h883 : function_(function), self_deleting_(self_deleting) {} in FunctionClosure0()
888 function_(); in Run()
893 FunctionType function_;
925 : function_(function), self_deleting_(self_deleting), in FunctionClosure1()
931 function_(arg1_); in Run()
936 FunctionType function_;
972 : function_(function), self_deleting_(self_deleting), in FunctionClosure2()
978 function_(arg1_, arg2_); in Run()
983 FunctionType function_;
/external/chromium/chrome/browser/sync/util/
Dextensions_activity_monitor_unittest.cc45 extension_(e), function_(t), repeats_(repeats), done_(done) {} in BookmarkAPIEventTask()
51 Details<const BookmarksFunction>(function_.get())); in Run()
57 scoped_refptr<FunctionType> function_; member in __anon3571449d0111::BookmarkAPIEventTask
/external/chromium_org/tools/gn/
Dparse_tree.cc285 return function_.range().Union(block_->GetRange()); in GetRange()
286 return function_.range().Union(args_->GetRange()); in GetRange()
291 return Err(function_, msg, help); in MakeErrorDescribing()
295 out << IndentFor(indent) << "FUNCTION(" << function_.value() << ")\n"; in Print()

123