HomeSort by relevance Sort by last modified time
    Searched refs:CallFunction (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/chrome/browser/extensions/api/power/
power_api_unittest.cc 29 // Args commonly passed to PowerSaveBlockerStubManager::CallFunction().
160 bool CallFunction(FunctionType type,
187 ASSERT_TRUE(CallFunction(REQUEST, kDisplayArgs, extension_.get()));
190 ASSERT_TRUE(CallFunction(RELEASE, kEmptyArgs, extension_.get()));
194 ASSERT_TRUE(CallFunction(REQUEST, kSystemArgs, extension_.get()));
197 ASSERT_TRUE(CallFunction(RELEASE, kEmptyArgs, extension_.get()));
206 ASSERT_TRUE(CallFunction(REQUEST, kDisplayArgs, extension_.get()));
218 ASSERT_TRUE(CallFunction(RELEASE, kEmptyArgs, extension_.get()));
227 ASSERT_TRUE(CallFunction(REQUEST, kSystemArgs, extension_.get()));
231 ASSERT_TRUE(CallFunction(REQUEST, kDisplayArgs, extension_.get()))
    [all...]
  /external/chromium_org/extensions/renderer/
user_gestures_native_handler.cc 40 context()->CallFunction(v8::Handle<v8::Function>::Cast(args[0]), 0, &no_args);
49 context()->CallFunction(v8::Handle<v8::Function>::Cast(args[0]), 0, &no_args);
render_view_observer_natives.cc 41 context_->CallFunction(callback_.NewHandle(isolate), 1, args);
script_context.h 79 v8::Local<v8::Value> CallFunction(v8::Handle<v8::Function> function,
utils_native_handler.cc 79 result = context()->CallFunction(func, arraysize(func_args), func_args);
script_context.cc 73 v8::Local<v8::Value> ScriptContext::CallFunction(
module_system.cc 261 context_->CallFunction(func, arraysize(args), args);
329 result = context_->CallFunction(func, argc, argv);
  /external/clang/test/SemaCXX/
warn-tautological-compare.cpp 63 #define CallFunction(f) ((f != 0) ? f() : 0)
76 (void)CallFunction(fun2);
  /external/chromium_org/chrome/test/chromedriver/
element_commands.cc 71 status = web_view->CallFunction(
88 return web_view->CallFunction(
282 return web_view->CallFunction(
349 return web_view->CallFunction(
364 return web_view->CallFunction(
379 return web_view->CallFunction(
394 return web_view->CallFunction(
409 return web_view->CallFunction(
424 return web_view->CallFunction(
439 return web_view->CallFunction(
    [all...]
window_commands.cc 49 Status status = web_view->CallFunction(
134 Status status = web_view->CallFunction(
269 return web_view->CallFunction(session->GetCurrentFrameId(),
337 status = web_view->CallFunction(
354 status = web_view->CallFunction(
384 return web_view->CallFunction(std::string(), kGetTitleScript, args, value);
397 return web_view->CallFunction(
657 return web_view->CallFunction(
697 return web_view->CallFunction(
715 return web_view->CallFunction(
    [all...]
element_util.cc 84 return web_view->CallFunction(
133 Status status = web_view->CallFunction(
164 Status status = web_view->CallFunction(
248 Status status = web_view->CallFunction(
288 return web_view->CallFunction(
374 status = web_view->CallFunction(
434 Status status = web_view->CallFunction(
453 Status status = web_view->CallFunction(
546 Status status = web_view->CallFunction(
624 status = web_view->CallFunction(
    [all...]
commands_unittest.cc 294 virtual Status CallFunction(const std::string& frame,
506 virtual Status CallFunction(const std::string& frame,
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_shared_library.cpp 74 void CallFunction(linker_function_t func, const char* func_type) {
388 CallFunction(init_func_, "DT_INIT");
390 CallFunction(init_array_[n], "DT_INIT_ARRAY");
395 CallFunction(fini_array_[n - 1], "DT_FINI_ARRAY");
397 CallFunction(fini_func_, "DT_FINI");
  /ndk/sources/android/crazy_linker/src/
crazy_linker_shared_library.cpp 74 void CallFunction(linker_function_t func, const char* func_type) {
388 CallFunction(init_func_, "DT_INIT");
390 CallFunction(init_array_[n], "DT_INIT_ARRAY");
395 CallFunction(fini_array_[n - 1], "DT_FINI_ARRAY");
397 CallFunction(fini_func_, "DT_FINI");
  /external/chromium_org/v8/test/mjsunit/
debug-step-stub-callfunction.js 47 // Use 'eval' to ensure that the call to print is through CodeStub CallFunction.
60 // CallFunction see Ia32CodeGenerator::VisitCall and
74 // CallFunction.
  /external/chromium_org/chrome/test/chromedriver/chrome/
stub_web_view.h 30 virtual Status CallFunction(const std::string& frame,
web_view.h 67 virtual Status CallFunction(const std::string& frame,
stub_web_view.cc 45 Status StubWebView::CallFunction(const std::string& frame,
web_view_impl.cc 180 Status WebViewImpl::CallFunction(const std::string& frame,
259 status = CallFunction(
506 Status status = CallFunction(
529 Status status = CallFunction(frame, kQueryResult, no_args, &query_value);
web_view_impl.h 57 virtual Status CallFunction(const std::string& frame,
  /bionic/linker/
linker.h 214 void CallFunction(const char* function_name, linker_function_t function);
linker.cpp     [all...]
  /external/chromium_org/chrome/renderer/extensions/
cast_streaming_native_handler.cc 256 context()->CallFunction(create_callback_.NewHandle(isolate),
516 context()->CallFunction(it->second->NewHandle(isolate), 1, callback_args);
534 context()->CallFunction(it->second->NewHandle(isolate), 1, callback_args);
  /external/chromium_org/v8/src/
disassembler.cc 243 case CodeStub::CallFunction: {
debug.cc 87 return major_key == CodeStub::CallFunction;
95 return major_key == CodeStub::CallFunction;
376 return target_code->major_key() == CodeStub::CallFunction;
388 // construct call or CallFunction stub call.
401 maybe_call_function_stub->major_key() == CodeStub::CallFunction);
407 // Step in through CallFunction stub should also be prepared by caller of
478 ASSERT(code->major_key() == CodeStub::CallFunction);
    [all...]

Completed in 2558 milliseconds

1 2