args              101 android_webview/browser/aw_contents_io_thread_client.h                                const std::string& args) = 0;
args              335 android_webview/browser/renderer_host/aw_resource_dispatcher_host_delegate.cc             header_data.realm, header_data.account, header_data.args);
args              308 android_webview/java/src/org/chromium/android_webview/AwContents.java         public void newLoginRequest(String realm, String account, String args) {
args              309 android_webview/java/src/org/chromium/android_webview/AwContents.java             mContentsClient.getCallbackHelper().postOnReceivedLoginRequest(realm, account, args);
args              168 android_webview/java/src/org/chromium/android_webview/AwContentsClient.java     public abstract void onReceivedLoginRequest(String realm, String account, String args);
args               51 android_webview/java/src/org/chromium/android_webview/AwContentsClientCallbackHelper.java         LoginRequestInfo(String realm, String account, String args) {
args               54 android_webview/java/src/org/chromium/android_webview/AwContentsClientCallbackHelper.java             mArgs = args;
args              169 android_webview/java/src/org/chromium/android_webview/AwContentsClientCallbackHelper.java     public void postOnReceivedLoginRequest(String realm, String account, String args) {
args              170 android_webview/java/src/org/chromium/android_webview/AwContentsClientCallbackHelper.java         LoginRequestInfo info = new LoginRequestInfo(realm, account, args);
args               38 android_webview/java/src/org/chromium/android_webview/AwContentsIoThreadClient.java     public void newLoginRequest(String realm, String account, String args);
args               42 android_webview/javatests/src/org/chromium/android_webview/test/AwContentsClientAutoLoginTest.java         public void notifyCalled(String realm, String account, String args) {
args               45 android_webview/javatests/src/org/chromium/android_webview/test/AwContentsClientAutoLoginTest.java             mArgs = args;
args               64 android_webview/javatests/src/org/chromium/android_webview/test/AwContentsClientAutoLoginTest.java         public void onReceivedLoginRequest(String realm, String account, String args) {
args               65 android_webview/javatests/src/org/chromium/android_webview/test/AwContentsClientAutoLoginTest.java             getOnReceivedLoginRequestHelper().notifyCalled(realm, account, args);
args              318 android_webview/native/aw_contents_io_thread_client_impl.cc                                                    const std::string& args) {
args              325 android_webview/native/aw_contents_io_thread_client_impl.cc   ScopedJavaLocalRef<jstring> jargs = ConvertUTF8ToJavaString(env, args);
args               62 android_webview/native/aw_contents_io_thread_client_impl.h                                const std::string& args) OVERRIDE;
args               90 android_webview/test/shell/src/org/chromium/android_webview/test/NullContentsClient.java     public void onReceivedLoginRequest(String realm, String account, String args) {
args               79 apps/app_window_contents.cc   base::ListValue args;
args               81 apps/app_window_contents.cc   args.Append(dictionary);
args               89 apps/app_window_contents.cc                                            args,
args               37 apps/browser/api/app_runtime/app_runtime_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args               38 apps/browser/api/app_runtime/app_runtime_api.cc   args->Append(launch_data.release());
args               41 apps/browser/api/app_runtime/app_runtime_api.cc       new Event(app_runtime::OnLaunched::kEventName, args.Pass()));
args               43 ash/keyboard_overlay/keyboard_overlay_delegate.cc   void DidPaint(const base::ListValue* args);
args               56 ash/keyboard_overlay/keyboard_overlay_delegate.cc void PaintMessageHandler::DidPaint(const base::ListValue* args) {
args               12 base/allocator/unittest_utils.cc     va_list args;
args               13 base/allocator/unittest_utils.cc     va_start(args, format);
args               14 base/allocator/unittest_utils.cc     result = _vsnprintf(buffer, count, format, args);
args               15 base/allocator/unittest_utils.cc     va_end(args);
args              110 base/android/java/src/org/chromium/base/CommandLine.java     public static void init(String[] args) {
args              111 base/android/java/src/org/chromium/base/CommandLine.java         setInstance(new JavaCommandLine(args));
args              143 base/android/java/src/org/chromium/base/CommandLine.java         ArrayList<String> args = new ArrayList<String>();
args              161 base/android/java/src/org/chromium/base/CommandLine.java                     args.add(arg.toString());
args              173 base/android/java/src/org/chromium/base/CommandLine.java             args.add(arg.toString());
args              175 base/android/java/src/org/chromium/base/CommandLine.java         return args.toArray(new String[args.size()]);
args              257 base/android/java/src/org/chromium/base/CommandLine.java         JavaCommandLine(String[] args) {
args              258 base/android/java/src/org/chromium/base/CommandLine.java             if (args == null || args.length == 0 || args[0] == null) {
args              261 base/android/java/src/org/chromium/base/CommandLine.java                 mArgs.add(args[0]);
args              262 base/android/java/src/org/chromium/base/CommandLine.java                 appendSwitchesInternal(args, 1);
args              379 base/command_line.cc   StringVector args(argv_.begin() + begin_args_, argv_.end());
args              382 base/command_line.cc       std::find(args.begin(), args.end(), kSwitchTerminator);
args              383 base/command_line.cc   if (switch_terminator != args.end())
args              384 base/command_line.cc     args.erase(switch_terminator);
args              385 base/command_line.cc   return args;
args              432 base/command_line.cc   wchar_t** args = NULL;
args              433 base/command_line.cc   args = ::CommandLineToArgvW(command_line_string.c_str(), &num_args);
args              435 base/command_line.cc   DPLOG_IF(FATAL, !args) << "CommandLineToArgvW failed on command line: "
args              437 base/command_line.cc   InitFromArgv(num_args, args);
args              438 base/command_line.cc   LocalFree(args);
args               80 base/command_line_unittest.cc   const CommandLine::StringVector& args = cl.GetArgs();
args               81 base/command_line_unittest.cc   ASSERT_EQ(8U, args.size());
args               83 base/command_line_unittest.cc   std::vector<CommandLine::StringType>::const_iterator iter = args.begin();
args              100 base/command_line_unittest.cc   EXPECT_TRUE(iter == args.end());
args              145 base/command_line_unittest.cc   const CommandLine::StringVector& args = cl.GetArgs();
args              146 base/command_line_unittest.cc   ASSERT_EQ(5U, args.size());
args              148 base/command_line_unittest.cc   std::vector<CommandLine::StringType>::const_iterator iter = args.begin();
args              159 base/command_line_unittest.cc   EXPECT_TRUE(iter == args.end());
args              569 base/process/process_util_unittest.cc   std::vector<std::string> args;
args              572 base/process/process_util_unittest.cc   args.push_back(kPosixShell);
args              573 base/process/process_util_unittest.cc   args.push_back("-c");
args              574 base/process/process_util_unittest.cc   args.push_back("echo $BASE_TEST");
args              589 base/process/process_util_unittest.cc   EXPECT_TRUE(base::LaunchProcess(args, options, NULL));
args              427 base/strings/safe_sprintf.cc ssize_t SafeSNPrintf(char* buf, size_t sz, const char* fmt, const Arg* args,
args              501 base/strings/safe_sprintf.cc         const Arg& arg = args[cur_arg++];
args              528 base/strings/safe_sprintf.cc         const Arg& arg = args[cur_arg++];
args              587 base/strings/safe_sprintf.cc         const Arg& arg = args[cur_arg++];
args              179 base/strings/safe_sprintf.h                                  const Arg* args, size_t max_args);
args               20 base/test/gtest_xml_util.cc   va_list args;
args               21 base/test/gtest_xml_util.cc   va_start(args, message);
args               23 base/test/gtest_xml_util.cc   base::StringAppendV(error, message, args);
args               24 base/test/gtest_xml_util.cc   va_end(args);
args               39 base/test/trace_event_analyzer.cc   const base::DictionaryValue* args = NULL;
args               78 base/test/trace_event_analyzer.cc   if (!dictionary->GetDictionary("args", &args)) {
args               88 base/test/trace_event_analyzer.cc   for (base::DictionaryValue::Iterator it(*args); !it.IsAtEnd();
args               79 base/threading/worker_pool_posix_unittest.cc void BlockingIncrementingTask(const BlockingIncrementingTaskArgs& args) {
args               81 base/threading/worker_pool_posix_unittest.cc     base::AutoLock num_waiting_to_start_locked(*args.num_waiting_to_start_lock);
args               82 base/threading/worker_pool_posix_unittest.cc     (*args.num_waiting_to_start)++;
args               84 base/threading/worker_pool_posix_unittest.cc   args.num_waiting_to_start_cv->Signal();
args               85 base/threading/worker_pool_posix_unittest.cc   args.start->Wait();
args               86 base/threading/worker_pool_posix_unittest.cc   IncrementingTask(args.counter_lock, args.counter, args.unique_threads_lock,
args               87 base/threading/worker_pool_posix_unittest.cc                    args.unique_threads);
args              129 base/threading/worker_pool_posix_unittest.cc     BlockingIncrementingTaskArgs args = {
args              134 base/threading/worker_pool_posix_unittest.cc     return base::Bind(&BlockingIncrementingTask, args);
args              292 base/win/shortcut.cc                      string16* args) {
args              296 base/win/shortcut.cc   if (args)
args              306 base/win/shortcut.cc   if (args)
args              307 base/win/shortcut.cc     *args = properties.arguments;
args              149 base/win/shortcut.h                                  string16* args);
args              152 base/win/shortcut_unittest.cc   string16 args;
args              153 base/win/shortcut_unittest.cc   EXPECT_TRUE(ResolveShortcut(link_file_, &resolved_name, &args));
args              158 base/win/shortcut_unittest.cc   EXPECT_EQ(link_properties_.arguments, args);
args              133 cc/output/output_surface.cc                                             const BeginFrameArgs& args) {
args              136 cc/output/output_surface.cc     skipped_begin_impl_frame_args_ = args;
args              138 cc/output/output_surface.cc     BeginImplFrame(args);
args              160 cc/output/output_surface.cc void OutputSurface::BeginImplFrame(const BeginFrameArgs& args) {
args              168 cc/output/output_surface.cc     skipped_begin_impl_frame_args_ = args;
args              171 cc/output/output_surface.cc     client_->BeginImplFrame(args);
args              172 cc/output/output_surface.h                                        const BeginFrameArgs& args) OVERRIDE;
args              186 cc/output/output_surface.h   void BeginImplFrame(const BeginFrameArgs& args);
args               34 cc/output/output_surface_client.h   virtual void BeginImplFrame(const BeginFrameArgs& args) = 0;
args              126 cc/scheduler/frame_rate_controller.cc     BeginFrameArgs args = BeginFrameArgs::Create(
args              128 cc/scheduler/frame_rate_controller.cc     client_->FrameRateControllerTick(throttled, args);
args               29 cc/scheduler/frame_rate_controller.h                                        const BeginFrameArgs& args) = 0;
args               23 cc/scheduler/frame_rate_controller_unittest.cc       bool throttled, const BeginFrameArgs& args) OVERRIDE {
args              227 cc/scheduler/scheduler.cc void Scheduler::BeginImplFrame(const BeginFrameArgs& args) {
args              235 cc/scheduler/scheduler.cc   last_begin_impl_frame_args_ = args;
args              113 cc/scheduler/scheduler.h   void BeginImplFrame(const BeginFrameArgs& args);
args              938 cc/scheduler/scheduler_state_machine.cc void SchedulerStateMachine::OnBeginImplFrame(const BeginFrameArgs& args) {
args              940 cc/scheduler/scheduler_state_machine.cc   last_begin_impl_frame_args_ = args;
args              145 cc/scheduler/scheduler_state_machine.h   void OnBeginImplFrame(const BeginFrameArgs& args);
args               20 cc/test/fake_layer_tree_host_impl_client.h   virtual void BeginImplFrame(const BeginFrameArgs& args)
args               15 cc/test/fake_output_surface_client.cc void FakeOutputSurfaceClient::BeginImplFrame(const BeginFrameArgs& args) {
args               26 cc/test/fake_output_surface_client.h   virtual void BeginImplFrame(const BeginFrameArgs& args) OVERRIDE;
args               86 cc/test/layer_tree_test.cc   virtual void BeginImplFrame(const BeginFrameArgs& args) OVERRIDE {
args               87 cc/test/layer_tree_test.cc     test_hooks_->WillBeginImplFrameOnThread(this, args);
args               88 cc/test/layer_tree_test.cc     LayerTreeHostImpl::BeginImplFrame(args);
args               89 cc/test/layer_tree_test.cc     test_hooks_->DidBeginImplFrameOnThread(this, args);
args               38 cc/test/layer_tree_test.h                                           const BeginFrameArgs& args) {}
args               40 cc/test/layer_tree_test.h                                          const BeginFrameArgs& args) {}
args             1278 cc/trees/layer_tree_host_impl.cc void LayerTreeHostImpl::BeginImplFrame(const BeginFrameArgs& args) {
args             1279 cc/trees/layer_tree_host_impl.cc   client_->BeginImplFrame(args);
args               66 cc/trees/layer_tree_host_impl.h   virtual void BeginImplFrame(const BeginFrameArgs& args) = 0;
args              226 cc/trees/layer_tree_host_impl.h   virtual void BeginImplFrame(const BeginFrameArgs& args) OVERRIDE;
args              113 cc/trees/layer_tree_host_impl_unittest.cc   virtual void BeginImplFrame(const BeginFrameArgs& args) OVERRIDE {}
args             1106 cc/trees/layer_tree_host_unittest.cc                                           const BeginFrameArgs& args) OVERRIDE {
args             1115 cc/trees/layer_tree_host_unittest.cc                                          const BeginFrameArgs& args) OVERRIDE {
args               61 cc/trees/single_thread_proxy.h   virtual void BeginImplFrame(const BeginFrameArgs& args)
args              453 cc/trees/thread_proxy.cc void ThreadProxy::BeginImplFrame(const BeginFrameArgs& args) {
args              461 cc/trees/thread_proxy.cc   impl().scheduler->BeginImplFrame(args);
args               79 cc/trees/thread_proxy.h   virtual void BeginImplFrame(const BeginFrameArgs& args) OVERRIDE;
args              277 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProvider.java         Vector<String> args = new Vector<String>();
args              280 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProvider.java             args.add(like);
args              283 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProvider.java             args.add("http://" + like);
args              284 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProvider.java             args.add("https://" + like);
args              285 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProvider.java             args.add("http://www." + like);
args              286 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProvider.java             args.add("https://www." + like);
args              287 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProvider.java             args.add("file://" + like);
args              292 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProvider.java         urlWhere.append(buildSuggestWhere(selection, args.size()));
args              294 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProvider.java             args.add(like);
args              301 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProvider.java             args.add("1");
args              304 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProvider.java         selectionArgs = args.toArray(selectionArgs);
args              156 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProviderClient.java     private static Bundle argsToBundle(Object ... args) {
args              158 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProviderClient.java         for (int i = 0; i < args.length; ++i) {
args              159 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProviderClient.java             Class<? extends Object> argClass = args[i].getClass();
args              161 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProviderClient.java                 methodArgs.putParcelable(ChromeBrowserProvider.argKey(i), (Parcelable) args[i]);
args              163 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProviderClient.java                 methodArgs.putSerializable(ChromeBrowserProvider.argKey(i), (Serializable) args[i]);
args              174 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProviderClient.java             Context context, Bundle args) {
args              176 chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProviderClient.java                 name, null, args);
args               35 chrome/android/java/src/org/chromium/chrome/browser/infobar/AutoLoginDelegate.java     String initializeAccount(long nativeInfoBar, String realm, String account, String args) {
args               37 chrome/android/java/src/org/chromium/chrome/browser/infobar/AutoLoginDelegate.java                 new AutoLoginAccountDelegate(mActivity, mAutoLoginProcessor, realm, account, args);
args               40 chrome/browser/accessibility/accessibility_extension_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args               41 chrome/browser/accessibility/accessibility_extension_api.cc   args->Append(dict);
args               42 chrome/browser/accessibility/accessibility_extension_api.cc   return args.Pass();
args              131 chrome/browser/accessibility/accessibility_extension_api.cc   scoped_ptr<base::ListValue> args(ControlInfoToEventArguments(info));
args              134 chrome/browser/accessibility/accessibility_extension_api.cc                 args.Pass());
args              141 chrome/browser/accessibility/accessibility_extension_api.cc   scoped_ptr<base::ListValue> args(ControlInfoToEventArguments(info));
args              144 chrome/browser/accessibility/accessibility_extension_api.cc                 args.Pass());
args              149 chrome/browser/accessibility/accessibility_extension_api.cc   scoped_ptr<base::ListValue> args(ControlInfoToEventArguments(info));
args              152 chrome/browser/accessibility/accessibility_extension_api.cc                 args.Pass());
args              157 chrome/browser/accessibility/accessibility_extension_api.cc   scoped_ptr<base::ListValue> args(ControlInfoToEventArguments(info));
args              160 chrome/browser/accessibility/accessibility_extension_api.cc                 args.Pass());
args              165 chrome/browser/accessibility/accessibility_extension_api.cc   scoped_ptr<base::ListValue> args(ControlInfoToEventArguments(info));
args              168 chrome/browser/accessibility/accessibility_extension_api.cc                 args.Pass());
args              173 chrome/browser/accessibility/accessibility_extension_api.cc   scoped_ptr<base::ListValue> args(ControlInfoToEventArguments(info));
args              176 chrome/browser/accessibility/accessibility_extension_api.cc                 args.Pass());
args              173 chrome/browser/apps/app_browsertest_util.cc   CommandLine::StringVector args = command_line->GetArgs();
args              175 chrome/browser/apps/app_browsertest_util.cc   for (size_t i = 0; i < args.size(); i++)
args              181 chrome/browser/apps/ephemeral_app_browsertest.cc     scoped_ptr<base::ListValue> args(new base::ListValue());
args              182 chrome/browser/apps/ephemeral_app_browsertest.cc     args->Append(dummy_alarm.ToValue().release());
args              184 chrome/browser/apps/ephemeral_app_browsertest.cc                                       args.Pass()));
args               39 chrome/browser/chromeos/extensions/input_method_event_router.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args               43 chrome/browser/chromeos/extensions/input_method_event_router.cc   args->Append(input_method_name);
args               47 chrome/browser/chromeos/extensions/input_method_event_router.cc       extensions::InputMethodAPI::kOnInputMethodChanged, args.Pass()));
args               17 chrome/browser/chromeos/extensions/media_player_event_router.cc     scoped_ptr<base::ListValue> args(new base::ListValue());
args               19 chrome/browser/chromeos/extensions/media_player_event_router.cc         event_name, args.Pass()));
args              271 chrome/browser/chromeos/extensions/screenlock_private_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              273 chrome/browser/chromeos/extensions/screenlock_private_api.cc     args->Append(arg);
args              275 chrome/browser/chromeos/extensions/screenlock_private_api.cc       event_name, args.Pass()));
args              304 chrome/browser/chromeos/extensions/screenlock_private_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              305 chrome/browser/chromeos/extensions/screenlock_private_api.cc   args->AppendString(
args              307 chrome/browser/chromeos/extensions/screenlock_private_api.cc   args->AppendString(value);
args              310 chrome/browser/chromeos/extensions/screenlock_private_api.cc       screenlock::OnAuthAttempted::kEventName, args.Pass()));
args               66 chrome/browser/chromeos/net/cert_verify_proc_chromeos.cc   ChainVerifyArgs* args = static_cast<ChainVerifyArgs*>(is_chain_valid_arg);
args               80 chrome/browser/chromeos/net/cert_verify_proc_chromeos.cc            args->additional_trust_anchors.begin();
args               81 chrome/browser/chromeos/net/cert_verify_proc_chromeos.cc        i != args->additional_trust_anchors.end();
args               96 chrome/browser/chromeos/net/cert_verify_proc_chromeos.cc   *chain_ok = args->cert_verify_proc->profile_filter_.IsCertAllowed(cert)
args               37 chrome/browser/component_updater/update_response.cc   va_list args;
args               38 chrome/browser/component_updater/update_response.cc   va_start(args, details);
args               44 chrome/browser/component_updater/update_response.cc   base::StringAppendV(&errors_, details, args);
args               45 chrome/browser/component_updater/update_response.cc   va_end(args);
args               81 chrome/browser/component_updater/update_response.cc   va_list args;
args               82 chrome/browser/component_updater/update_response.cc   va_start(args, message);
args               84 chrome/browser/component_updater/update_response.cc   base::StringAppendV(error, message, args);
args               85 chrome/browser/component_updater/update_response.cc   va_end(args);
args               40 chrome/browser/drive/event_logger.cc   va_list args;
args               41 chrome/browser/drive/event_logger.cc   va_start(args, format);
args               42 chrome/browser/drive/event_logger.cc   base::StringAppendV(&what, format, args);
args               43 chrome/browser/drive/event_logger.cc   va_end(args);
args               69 chrome/browser/extensions/activity_log/activity_actions.cc   if (args())
args               70 chrome/browser/extensions/activity_log/activity_actions.cc     clone->set_args(make_scoped_ptr(args()->DeepCopy()));
args               81 chrome/browser/extensions/activity_log/activity_actions.cc void Action::set_args(scoped_ptr<base::ListValue> args) {
args               82 chrome/browser/extensions/activity_log/activity_actions.cc   args_.reset(args.release());
args              173 chrome/browser/extensions/activity_log/activity_actions.cc   result->args.reset(new std::string(Serialize(args())));
args              320 chrome/browser/extensions/activity_log/activity_actions.cc   if (!lhs->args() && rhs->args())
args              322 chrome/browser/extensions/activity_log/activity_actions.cc   if (lhs->args() && !rhs->args())
args              324 chrome/browser/extensions/activity_log/activity_actions.cc   if (lhs->args() && rhs->args()) {
args              325 chrome/browser/extensions/activity_log/activity_actions.cc     std::string lhs_args = ActivityLogPolicy::Util::Serialize(lhs->args());
args              326 chrome/browser/extensions/activity_log/activity_actions.cc     std::string rhs_args = ActivityLogPolicy::Util::Serialize(rhs->args());
args               76 chrome/browser/extensions/activity_log/activity_actions.h   const base::ListValue* args() const { return args_.get(); }
args               77 chrome/browser/extensions/activity_log/activity_actions.h   void set_args(scoped_ptr<base::ListValue> args);
args              250 chrome/browser/extensions/activity_log/activity_log.cc   if (!action->args() || url_index < 0 ||
args              251 chrome/browser/extensions/activity_log/activity_log.cc       static_cast<size_t>(url_index) >= action->args()->GetSize())
args              268 chrome/browser/extensions/activity_log/activity_log.cc       if (action->args()->GetString(url_index, &url_string) &&
args              298 chrome/browser/extensions/activity_log/activity_log.cc       if (action->args()->GetInteger(url_index, &tab_id)) {
args              631 chrome/browser/extensions/activity_log/activity_log.cc                                       scoped_ptr<base::ListValue> args) {
args              637 chrome/browser/extensions/activity_log/activity_log.cc   action->set_args(args.Pass());
args               50 chrome/browser/extensions/activity_log/activity_log_browsertest.cc               ActivityLogPolicy::Util::Serialize(last->args()));
args               74 chrome/browser/extensions/activity_log/activity_log_policy_unittest.cc   ASSERT_EQ("[\"woof\"]", ActivityLogPolicy::Util::Serialize(action->args()));
args               81 chrome/browser/extensions/activity_log/activity_log_policy_unittest.cc   ASSERT_EQ("", ActivityLogPolicy::Util::Serialize(action->args()));
args              116 chrome/browser/extensions/activity_log/activity_log_unittest.cc               ActivityLogPolicy::Util::Serialize(last->args()));
args              134 chrome/browser/extensions/activity_log/activity_log_unittest.cc               ActivityLogPolicy::Util::Serialize(action->args()));
args              148 chrome/browser/extensions/activity_log/activity_log_unittest.cc               ActivityLogPolicy::Util::Serialize(action->args()));
args              154 chrome/browser/extensions/activity_log/activity_log_unittest.cc               ActivityLogPolicy::Util::Serialize(action->args()));
args              160 chrome/browser/extensions/activity_log/activity_log_unittest.cc               ActivityLogPolicy::Util::Serialize(action->args()));
args              178 chrome/browser/extensions/activity_log/activity_log_unittest.cc                 ActivityLogPolicy::Util::Serialize(action->args()));
args              204 chrome/browser/extensions/activity_log/activity_log_unittest.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              280 chrome/browser/extensions/activity_log/activity_log_unittest.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              353 chrome/browser/extensions/activity_log/activity_log_unittest.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              382 chrome/browser/extensions/activity_log/activity_log_unittest.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              307 chrome/browser/extensions/activity_log/counting_policy.cc     if (action.args()) {
args              308 chrome/browser/extensions/activity_log/counting_policy.cc       std::string args = Util::Serialize(action.args());
args              313 chrome/browser/extensions/activity_log/counting_policy.cc       if (args.length() > 10000) {
args              314 chrome/browser/extensions/activity_log/counting_policy.cc         args = "[\"<too_large>\"]";
args              316 chrome/browser/extensions/activity_log/counting_policy.cc       if (!string_table_.StringToInt(db, args, &id))
args              291 chrome/browser/extensions/activity_log/counting_policy_unittest.cc               ActivityLogPolicy::Util::Serialize(action.args()));
args              440 chrome/browser/extensions/activity_log/counting_policy_unittest.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              445 chrome/browser/extensions/activity_log/counting_policy_unittest.cc   action->set_args(args.Pass());
args              462 chrome/browser/extensions/activity_log/counting_policy_unittest.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              463 chrome/browser/extensions/activity_log/counting_policy_unittest.cc   args->Set(0, new base::StringValue("hello"));
args              464 chrome/browser/extensions/activity_log/counting_policy_unittest.cc   args->Set(1, new base::StringValue("world"));
args              469 chrome/browser/extensions/activity_log/counting_policy_unittest.cc   action->set_args(args.Pass());
args               90 chrome/browser/extensions/activity_log/fullstream_ui_policy.cc     if (action.args()) {
args               91 chrome/browser/extensions/activity_log/fullstream_ui_policy.cc       statement.BindString(4, Util::Serialize(action.args()));
args              217 chrome/browser/extensions/activity_log/fullstream_ui_policy_unittest.cc               ActivityLogPolicy::Util::Serialize(action.args()));
args              397 chrome/browser/extensions/activity_log/fullstream_ui_policy_unittest.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              402 chrome/browser/extensions/activity_log/fullstream_ui_policy_unittest.cc   action->set_args(args.Pass());
args              555 chrome/browser/extensions/activity_log/fullstream_ui_policy_unittest.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              556 chrome/browser/extensions/activity_log/fullstream_ui_policy_unittest.cc   args->Set(0, new base::StringValue("hello"));
args              557 chrome/browser/extensions/activity_log/fullstream_ui_policy_unittest.cc   args->Set(1, new base::StringValue("world"));
args              562 chrome/browser/extensions/activity_log/fullstream_ui_policy_unittest.cc   action->set_args(args.Pass());
args              121 chrome/browser/extensions/activity_log/uma_policy.cc     action->args()->GetString(0, &arg);
args               75 chrome/browser/extensions/activity_log/uma_policy_unittest.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args               76 chrome/browser/extensions/activity_log/uma_policy_unittest.cc   args->Set(0, new base::StringValue("script"));
args               77 chrome/browser/extensions/activity_log/uma_policy_unittest.cc   action->set_args(args.Pass());
args               28 chrome/browser/extensions/api/activity_log_private/activity_log_private_api_unittest.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args               29 chrome/browser/extensions/api/activity_log_private/activity_log_private_api_unittest.cc   args->Set(0, new base::StringValue("hello"));
args               30 chrome/browser/extensions/api/activity_log_private/activity_log_private_api_unittest.cc   args->Set(1, new base::StringValue("world"));
args               35 chrome/browser/extensions/api/activity_log_private/activity_log_private_api_unittest.cc   action->set_args(args.Pass());
args               40 chrome/browser/extensions/api/activity_log_private/activity_log_private_api_unittest.cc   ASSERT_EQ(kArgs, *(result->args.get()));
args               45 chrome/browser/extensions/api/activity_log_private/activity_log_private_api_unittest.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args               46 chrome/browser/extensions/api/activity_log_private/activity_log_private_api_unittest.cc   args->Set(0, new base::StringValue("hello"));
args               47 chrome/browser/extensions/api/activity_log_private/activity_log_private_api_unittest.cc   args->Set(1, new base::StringValue("world"));
args               53 chrome/browser/extensions/api/activity_log_private/activity_log_private_api_unittest.cc   action->set_args(args.Pass());
args               65 chrome/browser/extensions/api/activity_log_private/activity_log_private_api_unittest.cc   ASSERT_EQ(kArgs, *(result->args.get()));
args               48 chrome/browser/extensions/api/alarms/alarm_manager.cc     scoped_ptr<base::ListValue> args(new base::ListValue());
args               49 chrome/browser/extensions/api/alarms/alarm_manager.cc     args->Append(alarm.js_alarm->ToValue().release());
args               51 chrome/browser/extensions/api/alarms/alarm_manager.cc                                       args.Pass()));
args               70 chrome/browser/extensions/api/alarms/alarms_api_unittest.cc   void CreateAlarm(const std::string& args) {
args               71 chrome/browser/extensions/api/alarms/alarms_api_unittest.cc     RunFunction(new AlarmsCreateFunction(test_clock_), args);
args               47 chrome/browser/extensions/api/automation_internal/automation_internal_api.cc                    scoped_ptr<base::ListValue> args) {
args               49 chrome/browser/extensions/api/automation_internal/automation_internal_api.cc     scoped_ptr<Event> event(new Event(event_name, args.Pass()));
args               76 chrome/browser/extensions/api/automation_internal/automation_internal_api.cc       scoped_ptr<base::ListValue> args(new base::ListValue());
args               95 chrome/browser/extensions/api/automation_internal/automation_internal_api.cc       args->Append(axTreeUpdate);
args               98 chrome/browser/extensions/api/automation_internal/automation_internal_api.cc                     args.Pass());
args              239 chrome/browser/extensions/api/automation_internal/automation_internal_api.cc       content::RenderWidgetHost::FromID(params->args.process_id,
args              240 chrome/browser/extensions/api/automation_internal/automation_internal_api.cc                                         params->args.routing_id);
args              242 chrome/browser/extensions/api/automation_internal/automation_internal_api.cc   switch (params->args.action_type) {
args              244 chrome/browser/extensions/api/automation_internal/automation_internal_api.cc       rwh->AccessibilityDoDefaultAction(params->args.automation_node_id);
args              247 chrome/browser/extensions/api/automation_internal/automation_internal_api.cc       rwh->AccessibilitySetFocus(params->args.automation_node_id);
args              250 chrome/browser/extensions/api/automation_internal/automation_internal_api.cc       rwh->AccessibilityScrollToMakeVisible(params->args.automation_node_id,
args              258 chrome/browser/extensions/api/automation_internal/automation_internal_api.cc       rwh->AccessibilitySetTextSelection(params->args.automation_node_id,
args              103 chrome/browser/extensions/api/bluetooth/bluetooth_api_pairing_delegate.cc   scoped_ptr<base::ListValue> args =
args              106 chrome/browser/extensions/api/bluetooth/bluetooth_api_pairing_delegate.cc       new Event(bt_private::OnPairing::kEventName, args.Pass()));
args              208 chrome/browser/extensions/api/bluetooth/bluetooth_event_router.cc   scoped_ptr<base::ListValue> args =
args              211 chrome/browser/extensions/api/bluetooth/bluetooth_event_router.cc       bluetooth::OnConnection::kEventName, args.Pass()));
args              378 chrome/browser/extensions/api/bluetooth/bluetooth_event_router.cc   scoped_ptr<base::ListValue> args =
args              382 chrome/browser/extensions/api/bluetooth/bluetooth_event_router.cc       args.Pass()));
args              393 chrome/browser/extensions/api/bluetooth/bluetooth_event_router.cc   scoped_ptr<base::ListValue> args =
args              395 chrome/browser/extensions/api/bluetooth/bluetooth_event_router.cc   scoped_ptr<Event> event(new Event(event_name, args.Pass()));
args              259 chrome/browser/extensions/api/bookmark_manager_private/bookmark_manager_private_api.cc     scoped_ptr<base::ListValue> args) {
args              263 chrome/browser/extensions/api/bookmark_manager_private/bookmark_manager_private_api.cc   scoped_ptr<Event> event(new Event(event_name, args.Pass()));
args              105 chrome/browser/extensions/api/bookmark_manager_private/bookmark_manager_private_api.h                      scoped_ptr<base::ListValue> args);
args              476 chrome/browser/extensions/api/bookmarks/bookmarks_api.cc bool BookmarksRemoveFunction::ExtractIds(const base::ListValue* args,
args              480 chrome/browser/extensions/api/bookmarks/bookmarks_api.cc   if (!args->GetString(0, &id_string))
args              585 chrome/browser/extensions/api/bookmarks/bookmarks_api.cc bool BookmarksMoveFunction::ExtractIds(const base::ListValue* args,
args              589 chrome/browser/extensions/api/bookmarks/bookmarks_api.cc   return BookmarksUpdateFunction::ExtractIds(args, ids, invalid_id);
args              652 chrome/browser/extensions/api/bookmarks/bookmarks_api.cc bool BookmarksUpdateFunction::ExtractIds(const base::ListValue* args,
args              656 chrome/browser/extensions/api/bookmarks/bookmarks_api.cc   return BookmarksRemoveFunction::ExtractIds(args, ids, invalid_id);
args              731 chrome/browser/extensions/api/bookmarks/bookmarks_api.cc   virtual void GetBucketsForArgs(const base::ListValue* args,
args              734 chrome/browser/extensions/api/bookmarks/bookmarks_api.cc     if (!args->GetDictionary(0, &json))
args              772 chrome/browser/extensions/api/bookmarks/bookmarks_api.cc   virtual void GetBucketsForArgs(const base::ListValue* args,
args              777 chrome/browser/extensions/api/bookmarks/bookmarks_api.cc     if (!BookmarksRemoveFunction::ExtractIds(args, &ids, &invalid_id) ||
args              808 chrome/browser/extensions/api/bookmarks/bookmarks_api.cc   virtual void GetBucketsForArgs(const base::ListValue* args,
args              812 chrome/browser/extensions/api/bookmarks/bookmarks_api.cc     if (!FunctionType::ExtractIds(args, &ids, &invalid_id) || invalid_id)
args              208 chrome/browser/extensions/api/bookmarks/bookmarks_api.h   static bool ExtractIds(const base::ListValue* args,
args              249 chrome/browser/extensions/api/bookmarks/bookmarks_api.h   static bool ExtractIds(const base::ListValue* args,
args              268 chrome/browser/extensions/api/bookmarks/bookmarks_api.h   static bool ExtractIds(const base::ListValue* args,
args              243 chrome/browser/extensions/api/browsing_data/browsing_data_test.cc     std::string args = "[{\"since\": 1}," + data_types + "]";
args              247 chrome/browser/extensions/api/browsing_data/browsing_data_test.cc         function.get(), args, browser())) << " for " << args;
args              250 chrome/browser/extensions/api/browsing_data/browsing_data_test.cc           RunFunctionAndReturnError(function.get(), args, browser()),
args              252 chrome/browser/extensions/api/browsing_data/browsing_data_test.cc           << " for " << args;
args               46 chrome/browser/extensions/api/cast_channel/cast_channel_apitest.cc   ::std::tr1::get<k>(args).Run(result);
args               42 chrome/browser/extensions/api/content_settings/content_settings_api.cc bool RemoveContentType(base::ListValue* args,
args               45 chrome/browser/extensions/api/content_settings/content_settings_api.cc   if (!args->GetString(0, &content_type_str))
args               49 chrome/browser/extensions/api/content_settings/content_settings_api.cc   args->Remove(0, NULL);
args               86 chrome/browser/extensions/api/cookies/cookies_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              123 chrome/browser/extensions/api/cookies/cookies_api.cc   args->Append(dict);
args              129 chrome/browser/extensions/api/cookies/cookies_api.cc                 args.Pass(),
args              158 chrome/browser/extensions/api/cookies/cookies_unittest.cc     base::ListValue args;
args              161 chrome/browser/extensions/api/cookies/cookies_unittest.cc     args.Set(0, dict);
args              162 chrome/browser/extensions/api/cookies/cookies_unittest.cc     scoped_ptr<GetAll::Params> params(GetAll::Params::Create(args));
args              392 chrome/browser/extensions/api/debugger/debugger_api.cc   scoped_ptr<base::ListValue> args(OnDetach::Create(debuggee_,
args              395 chrome/browser/extensions/api/debugger/debugger_api.cc       OnDetach::kEventName, args.Pass()));
args              443 chrome/browser/extensions/api/debugger/debugger_api.cc     scoped_ptr<base::ListValue> args(
args              446 chrome/browser/extensions/api/debugger/debugger_api.cc         OnEvent::kEventName, args.Pass()));
args              256 chrome/browser/extensions/api/developer_private/developer_private_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              257 chrome/browser/extensions/api/developer_private/developer_private_api.cc   args->Append(event_data.ToValue().release());
args              260 chrome/browser/extensions/api/developer_private/developer_private_api.cc   scoped_ptr<Event> event(new Event(event_name, args.Pass()));
args              275 chrome/browser/extensions/api/developer_private/developer_private_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue);
args              276 chrome/browser/extensions/api/developer_private/developer_private_api.cc   args->Append(event_data.ToValue().release());
args              280 chrome/browser/extensions/api/developer_private/developer_private_api.cc           developer_private::OnItemStateChanged::kEventName, args.Pass())));
args              100 chrome/browser/extensions/api/dial/dial_api.cc   std::vector<linked_ptr<api::dial::DialDevice> > args;
args              106 chrome/browser/extensions/api/dial/dial_api.cc     args.push_back(api_device);
args              108 chrome/browser/extensions/api/dial/dial_api.cc   scoped_ptr<base::ListValue> results = api::dial::OnDeviceList::Create(args);
args             1866 chrome/browser/extensions/api/downloads/downloads_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args             1867 chrome/browser/extensions/api/downloads/downloads_api.cc   args->Append(arg);
args             1869 chrome/browser/extensions/api/downloads/downloads_api.cc   base::JSONWriter::Write(args.get(), &json_args);
args             1871 chrome/browser/extensions/api/downloads/downloads_api.cc       event_name, args.Pass()));
args              528 chrome/browser/extensions/api/downloads/downloads_api_browsertest.cc                    const std::string& args) {
args              532 chrome/browser/extensions/api/downloads/downloads_api_browsertest.cc         function, args, browser(), GetFlags());
args              551 chrome/browser/extensions/api/downloads/downloads_api_browsertest.cc       const std::string& args) {
args              554 chrome/browser/extensions/api/downloads/downloads_api_browsertest.cc         function.get(), args, browser(), GetFlags());
args              559 chrome/browser/extensions/api/downloads/downloads_api_browsertest.cc       const std::string& args) {
args              562 chrome/browser/extensions/api/downloads/downloads_api_browsertest.cc         function.get(), args, browser(), GetFlags());
args              567 chrome/browser/extensions/api/downloads/downloads_api_browsertest.cc       const std::string& args,
args              570 chrome/browser/extensions/api/downloads/downloads_api_browsertest.cc     scoped_ptr<base::Value> result(RunFunctionAndReturnResult(function, args));
args              371 chrome/browser/extensions/api/extension_action/extension_action_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              372 chrome/browser/extensions/api/extension_action/extension_action_api.cc   args->Append(new base::StringValue(page_action_id));
args              379 chrome/browser/extensions/api/extension_action/extension_action_api.cc   args->Append(data);
args              381 chrome/browser/extensions/api/extension_action/extension_action_api.cc   DispatchEventToExtension(context, extension_id, "pageActions", args.Pass());
args              403 chrome/browser/extensions/api/extension_action/extension_action_api.cc     scoped_ptr<base::ListValue> args(new base::ListValue());
args              406 chrome/browser/extensions/api/extension_action/extension_action_api.cc     args->Append(tab_value);
args              409 chrome/browser/extensions/api/extension_action/extension_action_api.cc         context, extension_action.extension_id(), event_name, args.Pass());
args               84 chrome/browser/extensions/api/feedback_private/feedback_private_api.cc     scoped_ptr<base::ListValue> args(new base::ListValue());
args               85 chrome/browser/extensions/api/feedback_private/feedback_private_api.cc     args->Append(info.ToValue().release());
args               88 chrome/browser/extensions/api/feedback_private/feedback_private_api.cc         feedback_private::OnFeedbackRequested::kEventName, args.Pass()));
args              169 chrome/browser/extensions/api/font_settings/font_settings_api.cc   base::ListValue args;
args              171 chrome/browser/extensions/api/font_settings/font_settings_api.cc   args.Append(dict);
args              179 chrome/browser/extensions/api/font_settings/font_settings_api.cc       &args,
args              193 chrome/browser/extensions/api/font_settings/font_settings_api.cc   base::ListValue args;
args              195 chrome/browser/extensions/api/font_settings/font_settings_api.cc   args.Append(dict);
args              201 chrome/browser/extensions/api/font_settings/font_settings_api.cc       &args,
args              170 chrome/browser/extensions/api/history/history_api.cc   scoped_ptr<base::ListValue> args = OnVisited::Create(*history_item);
args              172 chrome/browser/extensions/api/history/history_api.cc   DispatchEvent(profile, api::history::OnVisited::kEventName, args.Pass());
args              188 chrome/browser/extensions/api/history/history_api.cc   scoped_ptr<base::ListValue> args = OnVisitRemoved::Create(removed);
args              189 chrome/browser/extensions/api/history/history_api.cc   DispatchEvent(profile, api::history::OnVisitRemoved::kEventName, args.Pass());
args               64 chrome/browser/extensions/api/hotword_private/hotword_private_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args               65 chrome/browser/extensions/api/hotword_private/hotword_private_api.cc   scoped_ptr<Event> event(new Event(kEventName, args.Pass()));
args              204 chrome/browser/extensions/api/identity/identity_api.cc   scoped_ptr<base::ListValue> args =
args              207 chrome/browser/extensions/api/identity/identity_api.cc                                     args.Pass(),
args               96 chrome/browser/extensions/api/identity/identity_apitest.cc       const std::string& args) {
args               99 chrome/browser/extensions/api/identity/identity_apitest.cc     scoped_ptr<base::ListValue> parsed_args(utils::ParseList(args));
args              101 chrome/browser/extensions/api/identity/identity_apitest.cc         "Could not parse extension function arguments: " << args;
args             1195 chrome/browser/extensions/api/identity/identity_apitest.cc   std::string args = "[{\"interactive\": true, \"url\": \"" +
args             1197 chrome/browser/extensions/api/identity/identity_apitest.cc   RunFunctionAsync(function.get(), args);
args             1220 chrome/browser/extensions/api/identity/identity_apitest.cc   std::string args = "[{\"interactive\": false, \"url\": \"" +
args             1223 chrome/browser/extensions/api/identity/identity_apitest.cc       utils::RunFunctionAndReturnError(function.get(), args, browser());
args             1243 chrome/browser/extensions/api/identity/identity_apitest.cc   std::string args = "[{\"interactive\": true, \"url\": \"" +
args             1246 chrome/browser/extensions/api/identity/identity_apitest.cc       utils::RunFunctionAndReturnError(function.get(), args, browser());
args             1321 chrome/browser/extensions/api/identity/identity_apitest.cc   std::string args = "[{\"interactive\": true, \"url\": \"" +
args             1324 chrome/browser/extensions/api/identity/identity_apitest.cc       utils::RunFunctionAndReturnSingleResult(function.get(), args, browser()));
args               81 chrome/browser/extensions/api/identity/web_auth_flow.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args               82 chrome/browser/extensions/api/identity/web_auth_flow.cc   args->AppendString(app_window_key_);
args               83 chrome/browser/extensions/api/identity/web_auth_flow.cc   args->AppendString(provider_url_.spec());
args               85 chrome/browser/extensions/api/identity/web_auth_flow.cc     args->AppendString("interactive");
args               87 chrome/browser/extensions/api/identity/web_auth_flow.cc     args->AppendString("silent");
args               90 chrome/browser/extensions/api/identity/web_auth_flow.cc       new Event(identity_private::OnWebFlowRequest::kEventName, args.Pass()));
args              231 chrome/browser/extensions/api/idle/idle_api_unittest.cc       std::string args = "[" + base::IntToString(threshold) + "]";
args              233 chrome/browser/extensions/api/idle/idle_api_unittest.cc           new IdleQueryStateFunction(), args));
args              260 chrome/browser/extensions/api/idle/idle_api_unittest.cc       std::string args = "[" + base::IntToString(threshold) + "]";
args              262 chrome/browser/extensions/api/idle/idle_api_unittest.cc           new IdleQueryStateFunction(), args));
args               54 chrome/browser/extensions/api/idle/idle_manager.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args               55 chrome/browser/extensions/api/idle/idle_manager.cc   args->Append(IdleManager::CreateIdleValue(new_state));
args               57 chrome/browser/extensions/api/idle/idle_manager.cc                                     args.Pass()));
args              148 chrome/browser/extensions/api/image_writer_private/operation_manager.cc   scoped_ptr<base::ListValue> args(
args              151 chrome/browser/extensions/api/image_writer_private/operation_manager.cc       image_writer_api::OnWriteProgress::kEventName, args.Pass()));
args              160 chrome/browser/extensions/api/image_writer_private/operation_manager.cc   scoped_ptr<base::ListValue> args(image_writer_api::OnWriteComplete::Create());
args              162 chrome/browser/extensions/api/image_writer_private/operation_manager.cc       image_writer_api::OnWriteComplete::kEventName, args.Pass()));
args              182 chrome/browser/extensions/api/image_writer_private/operation_manager.cc   scoped_ptr<base::ListValue> args(
args              185 chrome/browser/extensions/api/image_writer_private/operation_manager.cc       image_writer_api::OnWriteError::kEventName, args.Pass()));
args               76 chrome/browser/extensions/api/input_ime/input_ime_api.cc                                      scoped_ptr<base::ListValue> args) {
args               78 chrome/browser/extensions/api/input_ime/input_ime_api.cc       event_name, args.Pass()));
args              107 chrome/browser/extensions/api/input_ime/input_ime_api.cc     scoped_ptr<base::ListValue> args(input_ime::OnActivate::Create(engine_id));
args              110 chrome/browser/extensions/api/input_ime/input_ime_api.cc                              input_ime::OnActivate::kEventName, args.Pass());
args              117 chrome/browser/extensions/api/input_ime/input_ime_api.cc     scoped_ptr<base::ListValue> args(
args              121 chrome/browser/extensions/api/input_ime/input_ime_api.cc                              input_ime::OnDeactivated::kEventName, args.Pass());
args              133 chrome/browser/extensions/api/input_ime/input_ime_api.cc     scoped_ptr<base::ListValue> args(input_ime::OnFocus::Create(context_value));
args              136 chrome/browser/extensions/api/input_ime/input_ime_api.cc                              input_ime::OnFocus::kEventName, args.Pass());
args              143 chrome/browser/extensions/api/input_ime/input_ime_api.cc     scoped_ptr<base::ListValue> args(input_ime::OnBlur::Create(context_id));
args              146 chrome/browser/extensions/api/input_ime/input_ime_api.cc                              input_ime::OnBlur::kEventName, args.Pass());
args              158 chrome/browser/extensions/api/input_ime/input_ime_api.cc     scoped_ptr<base::ListValue> args(
args              164 chrome/browser/extensions/api/input_ime/input_ime_api.cc                              args.Pass());
args              199 chrome/browser/extensions/api/input_ime/input_ime_api.cc     scoped_ptr<base::ListValue> args(
args              203 chrome/browser/extensions/api/input_ime/input_ime_api.cc                              input_ime::OnKeyEvent::kEventName, args.Pass());
args              231 chrome/browser/extensions/api/input_ime/input_ime_api.cc     scoped_ptr<base::ListValue> args(
args              239 chrome/browser/extensions/api/input_ime/input_ime_api.cc                              args.Pass());
args              247 chrome/browser/extensions/api/input_ime/input_ime_api.cc     scoped_ptr<base::ListValue> args(
args              253 chrome/browser/extensions/api/input_ime/input_ime_api.cc                              args.Pass());
args              267 chrome/browser/extensions/api/input_ime/input_ime_api.cc     scoped_ptr<base::ListValue> args(
args              273 chrome/browser/extensions/api/input_ime/input_ime_api.cc                              args.Pass());
args              280 chrome/browser/extensions/api/input_ime/input_ime_api.cc     scoped_ptr<base::ListValue> args(input_ime::OnReset::Create(engine_id));
args              285 chrome/browser/extensions/api/input_ime/input_ime_api.cc                              args.Pass());
args              374 chrome/browser/extensions/api/location/location_manager.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              385 chrome/browser/extensions/api/location/location_manager.cc     args->Append(location.ToValue().release());
args              390 chrome/browser/extensions/api/location/location_manager.cc     args->AppendString(position.error_message);
args              394 chrome/browser/extensions/api/location/location_manager.cc   scoped_ptr<Event> event(new Event(event_name, args.Pass()));
args              707 chrome/browser/extensions/api/management/management_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              709 chrome/browser/extensions/api/management/management_api.cc     args->Append(new base::StringValue(extension->id()));
args              713 chrome/browser/extensions/api/management/management_api.cc     args->Append(info->ToValue().release());
args              716 chrome/browser/extensions/api/management/management_api.cc   scoped_ptr<Event> event(new Event(event_name, args.Pass()));
args              130 chrome/browser/extensions/api/mdns/mdns_api.cc   std::vector<linked_ptr<mdns::MDnsService> > args;
args              139 chrome/browser/extensions/api/mdns/mdns_api.cc     args.push_back(mdns_service);
args              142 chrome/browser/extensions/api/mdns/mdns_api.cc   scoped_ptr<base::ListValue> results = mdns::OnServiceList::Create(args);
args               47 chrome/browser/extensions/api/media_galleries_private/media_galleries_private_event_router.cc     scoped_ptr<base::ListValue> args(new base::ListValue());
args               48 chrome/browser/extensions/api/media_galleries_private/media_galleries_private_event_router.cc     args->Append(details.ToValue().release());
args               51 chrome/browser/extensions/api/media_galleries_private/media_galleries_private_event_router.cc         args.Pass()));
args               73 chrome/browser/extensions/api/networking_private/networking_private_apitest.cc   virtual void VerifyDestination(scoped_ptr<base::ListValue> args,
args               80 chrome/browser/extensions/api/networking_private/networking_private_apitest.cc       scoped_ptr<base::ListValue> args,
args               86 chrome/browser/extensions/api/networking_private/networking_private_apitest.cc   virtual void VerifyAndEncryptData(scoped_ptr<base::ListValue> args,
args              154 chrome/browser/extensions/api/networking_private/networking_private_event_router_chromeos.cc   scoped_ptr<base::ListValue> args(
args              157 chrome/browser/extensions/api/networking_private/networking_private_event_router_chromeos.cc       api::networking_private::OnNetworkListChanged::kEventName, args.Pass()));
args              172 chrome/browser/extensions/api/networking_private/networking_private_event_router_chromeos.cc   scoped_ptr<base::ListValue> args(
args              176 chrome/browser/extensions/api/networking_private/networking_private_event_router_chromeos.cc       api::networking_private::OnNetworksChanged::kEventName, args.Pass()));
args              132 chrome/browser/extensions/api/networking_private/networking_private_event_router_nonchromeos.cc   scoped_ptr<base::ListValue> args(
args              135 chrome/browser/extensions/api/networking_private/networking_private_event_router_nonchromeos.cc       api::networking_private::OnNetworksChanged::kEventName, args.Pass()));
args              144 chrome/browser/extensions/api/networking_private/networking_private_event_router_nonchromeos.cc   scoped_ptr<base::ListValue> args(
args              148 chrome/browser/extensions/api/networking_private/networking_private_event_router_nonchromeos.cc       args.Pass()));
args               50 chrome/browser/extensions/api/networking_private/networking_private_service_client.cc   virtual void VerifyDestination(scoped_ptr<base::ListValue> args,
args               54 chrome/browser/extensions/api/networking_private/networking_private_service_client.cc     scoped_ptr<Params> params = Params::Create(*args);
args               59 chrome/browser/extensions/api/networking_private/networking_private_service_client.cc       scoped_ptr<base::ListValue> args,
args               62 chrome/browser/extensions/api/networking_private/networking_private_service_client.cc     scoped_ptr<Params> params = Params::Create(*args);
args               86 chrome/browser/extensions/api/networking_private/networking_private_service_client.cc   virtual void VerifyAndEncryptData(scoped_ptr<base::ListValue> args,
args               90 chrome/browser/extensions/api/networking_private/networking_private_service_client.cc     scoped_ptr<Params> params = Params::Create(*args);
args              433 chrome/browser/extensions/api/networking_private/networking_private_service_client.cc     scoped_ptr<base::ListValue> args,
args              447 chrome/browser/extensions/api/networking_private/networking_private_service_client.cc                  base::Passed(&args),
args              458 chrome/browser/extensions/api/networking_private/networking_private_service_client.cc     scoped_ptr<base::ListValue> args,
args              476 chrome/browser/extensions/api/networking_private/networking_private_service_client.cc                                     base::Passed(&args),
args              481 chrome/browser/extensions/api/networking_private/networking_private_service_client.cc     scoped_ptr<base::ListValue> args,
args              495 chrome/browser/extensions/api/networking_private/networking_private_service_client.cc                  base::Passed(&args),
args               58 chrome/browser/extensions/api/networking_private/networking_private_service_client.h     virtual void VerifyDestination(scoped_ptr<base::ListValue> args,
args               63 chrome/browser/extensions/api/networking_private/networking_private_service_client.h         scoped_ptr<base::ListValue> args,
args               66 chrome/browser/extensions/api/networking_private/networking_private_service_client.h     virtual void VerifyAndEncryptData(scoped_ptr<base::ListValue> args,
args              186 chrome/browser/extensions/api/networking_private/networking_private_service_client.h   void VerifyDestination(scoped_ptr<base::ListValue> args,
args              193 chrome/browser/extensions/api/networking_private/networking_private_service_client.h   void VerifyAndEncryptCredentials(scoped_ptr<base::ListValue> args,
args              199 chrome/browser/extensions/api/networking_private/networking_private_service_client.h   void VerifyAndEncryptData(scoped_ptr<base::ListValue> args,
args              149 chrome/browser/extensions/api/notifications/notifications_api.cc     scoped_ptr<base::ListValue> args(CreateBaseEventArgs());
args              150 chrome/browser/extensions/api/notifications/notifications_api.cc     args->Append(new base::FundamentalValue(by_user));
args              151 chrome/browser/extensions/api/notifications/notifications_api.cc     SendEvent(notifications::OnClosed::kEventName, args.Pass());
args              155 chrome/browser/extensions/api/notifications/notifications_api.cc     scoped_ptr<base::ListValue> args(CreateBaseEventArgs());
args              156 chrome/browser/extensions/api/notifications/notifications_api.cc     SendEvent(notifications::OnClicked::kEventName, args.Pass());
args              165 chrome/browser/extensions/api/notifications/notifications_api.cc     scoped_ptr<base::ListValue> args(CreateBaseEventArgs());
args              166 chrome/browser/extensions/api/notifications/notifications_api.cc     args->Append(new base::FundamentalValue(index));
args              167 chrome/browser/extensions/api/notifications/notifications_api.cc     SendEvent(notifications::OnButtonClicked::kEventName, args.Pass());
args              195 chrome/browser/extensions/api/notifications/notifications_api.cc   void SendEvent(const std::string& name, scoped_ptr<base::ListValue> args) {
args              196 chrome/browser/extensions/api/notifications/notifications_api.cc     scoped_ptr<Event> event(new Event(name, args.Pass()));
args              202 chrome/browser/extensions/api/notifications/notifications_api.cc     scoped_ptr<base::ListValue> args(new base::ListValue());
args              203 chrome/browser/extensions/api/notifications/notifications_api.cc     args->Append(new base::StringValue(id_));
args              204 chrome/browser/extensions/api/notifications/notifications_api.cc     return args.Pass();
args              118 chrome/browser/extensions/api/omnibox/omnibox_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              119 chrome/browser/extensions/api/omnibox/omnibox_api.cc   args->Set(0, new base::StringValue(input));
args              120 chrome/browser/extensions/api/omnibox/omnibox_api.cc   args->Set(1, new base::FundamentalValue(suggest_id));
args              123 chrome/browser/extensions/api/omnibox/omnibox_api.cc                                     args.Pass()));
args              146 chrome/browser/extensions/api/omnibox/omnibox_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              147 chrome/browser/extensions/api/omnibox/omnibox_api.cc   args->Set(0, new base::StringValue(input));
args              149 chrome/browser/extensions/api/omnibox/omnibox_api.cc     args->Set(1, new base::StringValue(kForegroundTabDisposition));
args              151 chrome/browser/extensions/api/omnibox/omnibox_api.cc     args->Set(1, new base::StringValue(kBackgroundTabDisposition));
args              153 chrome/browser/extensions/api/omnibox/omnibox_api.cc     args->Set(1, new base::StringValue(kCurrentTabDisposition));
args              156 chrome/browser/extensions/api/omnibox/omnibox_api.cc                                     args.Pass()));
args              151 chrome/browser/extensions/api/power/power_api_unittest.cc                     const std::string& args,
args              160 chrome/browser/extensions/api/power/power_api_unittest.cc     return utils::RunFunction(function.get(), args, browser(), utils::NONE);
args              134 chrome/browser/extensions/api/preference/chrome_direct_setting_api.cc     base::ListValue args;
args              135 chrome/browser/extensions/api/preference/chrome_direct_setting_api.cc     args.Append(result.release());
args              145 chrome/browser/extensions/api/preference/chrome_direct_setting_api.cc           scoped_ptr<base::ListValue> args_copy(args.DeepCopy());
args              301 chrome/browser/extensions/api/preference/preference_api.cc   base::ListValue args;
args              303 chrome/browser/extensions/api/preference/preference_api.cc   args.Append(dict);
args              326 chrome/browser/extensions/api/preference/preference_api.cc                                      &args,
args               88 chrome/browser/extensions/api/preference/preference_helpers.cc     base::ListValue* args,
args              109 chrome/browser/extensions/api/preference/preference_helpers.cc       bool rv = args->GetDictionary(0, &dict);
args              135 chrome/browser/extensions/api/preference/preference_helpers.cc       scoped_ptr<base::ListValue> args_copy(args->DeepCopy());
args               41 chrome/browser/extensions/api/preference/preference_helpers.h     base::ListValue* args,
args              311 chrome/browser/extensions/api/processes/processes_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              319 chrome/browser/extensions/api/processes/processes_api.cc   args->Append(process);
args              321 chrome/browser/extensions/api/processes/processes_api.cc   DispatchEvent(keys::kOnCreated, args.Pass());
args              367 chrome/browser/extensions/api/processes/processes_api.cc     scoped_ptr<base::ListValue> args(new base::ListValue());
args              368 chrome/browser/extensions/api/processes/processes_api.cc     args->Append(processes);
args              369 chrome/browser/extensions/api/processes/processes_api.cc     DispatchEvent(keys::kOnUpdated, args.Pass());
args              386 chrome/browser/extensions/api/processes/processes_api.cc     scoped_ptr<base::ListValue> args(new base::ListValue());
args              387 chrome/browser/extensions/api/processes/processes_api.cc     args->Append(processes);
args              388 chrome/browser/extensions/api/processes/processes_api.cc     DispatchEvent(keys::kOnUpdatedWithMemory, args.Pass());
args              405 chrome/browser/extensions/api/processes/processes_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              408 chrome/browser/extensions/api/processes/processes_api.cc   args->Append(new base::FundamentalValue(
args              412 chrome/browser/extensions/api/processes/processes_api.cc   args->Append(new base::FundamentalValue(0));
args              415 chrome/browser/extensions/api/processes/processes_api.cc   args->Append(new base::FundamentalValue(0));
args              417 chrome/browser/extensions/api/processes/processes_api.cc   DispatchEvent(keys::kOnExited, args.Pass());
args              443 chrome/browser/extensions/api/processes/processes_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              444 chrome/browser/extensions/api/processes/processes_api.cc   args->Append(process);
args              446 chrome/browser/extensions/api/processes/processes_api.cc   DispatchEvent(keys::kOnUnresponsive, args.Pass());
args              455 chrome/browser/extensions/api/processes/processes_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              458 chrome/browser/extensions/api/processes/processes_api.cc   args->Append(new base::FundamentalValue(rph->GetID()));
args              461 chrome/browser/extensions/api/processes/processes_api.cc   args->Append(new base::FundamentalValue(details->status));
args              464 chrome/browser/extensions/api/processes/processes_api.cc   args->Append(new base::FundamentalValue(details->exit_code));
args              466 chrome/browser/extensions/api/processes/processes_api.cc   DispatchEvent(keys::kOnExited, args.Pass());
args               40 chrome/browser/extensions/api/proxy/proxy_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args               45 chrome/browser/extensions/api/proxy/proxy_api.cc   args->Append(dict);
args               49 chrome/browser/extensions/api/proxy/proxy_api.cc         keys::kProxyEventOnProxyError, args.Pass(), profile, true, GURL());
args               52 chrome/browser/extensions/api/proxy/proxy_api.cc         keys::kProxyEventOnProxyError, args.Pass(), GURL());
args               61 chrome/browser/extensions/api/proxy/proxy_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args               75 chrome/browser/extensions/api/proxy/proxy_api.cc   args->Append(dict);
args               79 chrome/browser/extensions/api/proxy/proxy_api.cc         keys::kProxyEventOnProxyError, args.Pass(), profile, true, GURL());
args               82 chrome/browser/extensions/api/proxy/proxy_api.cc         keys::kProxyEventOnProxyError, args.Pass(), GURL());
args               78 chrome/browser/extensions/api/push_messaging/push_messaging_api.cc   scoped_ptr<base::ListValue> args(glue::OnMessage::Create(message));
args               80 chrome/browser/extensions/api/push_messaging/push_messaging_api.cc       glue::OnMessage::kEventName, args.Pass()));
args              347 chrome/browser/extensions/api/runtime/runtime_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue);
args              348 chrome/browser/extensions/api/runtime/runtime_api.cc   args->Append(manifest->DeepCopy());
args              351 chrome/browser/extensions/api/runtime/runtime_api.cc                                     args.Pass()));
args              362 chrome/browser/extensions/api/runtime/runtime_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue);
args              365 chrome/browser/extensions/api/runtime/runtime_api.cc       runtime::OnBrowserUpdateAvailable::kEventName, args.Pass()));
args              100 chrome/browser/extensions/api/serial/serial_event_dispatcher.cc     scoped_ptr<base::ListValue> args = serial::OnReceive::Create(receive_info);
args              102 chrome/browser/extensions/api/serial/serial_event_dispatcher.cc         new extensions::Event(serial::OnReceive::kEventName, args.Pass()));
args              110 chrome/browser/extensions/api/serial/serial_event_dispatcher.cc     scoped_ptr<base::ListValue> args =
args              113 chrome/browser/extensions/api/serial/serial_event_dispatcher.cc         new extensions::Event(serial::OnReceiveError::kEventName, args.Pass()));
args              615 chrome/browser/extensions/api/sessions/sessions_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              617 chrome/browser/extensions/api/sessions/sessions_api.cc       new Event(api::sessions::OnChanged::kEventName, args.Pass())));
args               72 chrome/browser/extensions/api/signed_in_devices/signed_in_devices_manager.cc   std::vector<linked_ptr<api::signed_in_devices::DeviceInfo> > args;
args               80 chrome/browser/extensions/api/signed_in_devices/signed_in_devices_manager.cc     args.push_back(api_device);
args               84 chrome/browser/extensions/api/signed_in_devices/signed_in_devices_manager.cc       api::signed_in_devices::OnDeviceInfoChange::Create(args);
args               83 chrome/browser/extensions/api/system_info/system_info_api.cc                      scoped_ptr<base::ListValue> args);
args              170 chrome/browser/extensions/api/system_info/system_info_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue);
args              171 chrome/browser/extensions/api/system_info/system_info_api.cc   args->Append(unit.ToValue().release());
args              172 chrome/browser/extensions/api/system_info/system_info_api.cc   DispatchEvent(system_storage::OnAttached::kEventName, args.Pass());
args              177 chrome/browser/extensions/api/system_info/system_info_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue);
args              181 chrome/browser/extensions/api/system_info/system_info_api.cc   args->AppendString(transient_id);
args              183 chrome/browser/extensions/api/system_info/system_info_api.cc   DispatchEvent(system_storage::OnDetached::kEventName, args.Pass());
args              200 chrome/browser/extensions/api/system_info/system_info_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              201 chrome/browser/extensions/api/system_info/system_info_api.cc   DispatchEvent(system_display::OnDisplayChanged::kEventName, args.Pass());
args              205 chrome/browser/extensions/api/system_info/system_info_api.cc                                           scoped_ptr<base::ListValue> args) {
args              207 chrome/browser/extensions/api/system_info/system_info_api.cc       BroadcastEventToRenderers(event_name, args.Pass(), GURL());
args              329 chrome/browser/extensions/api/tab_capture/tab_capture_registry.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              330 chrome/browser/extensions/api/tab_capture/tab_capture_registry.cc   args->Append(info->ToValue().release());
args              332 chrome/browser/extensions/api/tab_capture/tab_capture_registry.cc       args.Pass()));
args              195 chrome/browser/extensions/api/tabs/tabs_event_router.cc   scoped_ptr<base::ListValue> args(new base::ListValue);
args              196 chrome/browser/extensions/api/tabs/tabs_event_router.cc   scoped_ptr<Event> event(new Event(tabs::OnCreated::kEventName, args.Pass()));
args              218 chrome/browser/extensions/api/tabs/tabs_event_router.cc   scoped_ptr<base::ListValue> args(new base::ListValue);
args              219 chrome/browser/extensions/api/tabs/tabs_event_router.cc   args->Append(new FundamentalValue(tab_id));
args              227 chrome/browser/extensions/api/tabs/tabs_event_router.cc   args->Append(object_args);
args              230 chrome/browser/extensions/api/tabs/tabs_event_router.cc   DispatchEvent(profile, tabs::OnAttached::kEventName, args.Pass(),
args              240 chrome/browser/extensions/api/tabs/tabs_event_router.cc   scoped_ptr<base::ListValue> args(new base::ListValue);
args              241 chrome/browser/extensions/api/tabs/tabs_event_router.cc   args->Append(
args              250 chrome/browser/extensions/api/tabs/tabs_event_router.cc   args->Append(object_args);
args              255 chrome/browser/extensions/api/tabs/tabs_event_router.cc                 args.Pass(),
args              264 chrome/browser/extensions/api/tabs/tabs_event_router.cc   scoped_ptr<base::ListValue> args(new base::ListValue);
args              265 chrome/browser/extensions/api/tabs/tabs_event_router.cc   args->Append(new FundamentalValue(tab_id));
args              272 chrome/browser/extensions/api/tabs/tabs_event_router.cc   args->Append(object_args);
args              277 chrome/browser/extensions/api/tabs/tabs_event_router.cc                 args.Pass(),
args              290 chrome/browser/extensions/api/tabs/tabs_event_router.cc   scoped_ptr<base::ListValue> args(new base::ListValue);
args              292 chrome/browser/extensions/api/tabs/tabs_event_router.cc   args->Append(new FundamentalValue(tab_id));
args              298 chrome/browser/extensions/api/tabs/tabs_event_router.cc   args->Append(object_args);
args              310 chrome/browser/extensions/api/tabs/tabs_event_router.cc                 scoped_ptr<base::ListValue>(args->DeepCopy()),
args              314 chrome/browser/extensions/api/tabs/tabs_event_router.cc                 scoped_ptr<base::ListValue>(args->DeepCopy()),
args              318 chrome/browser/extensions/api/tabs/tabs_event_router.cc   args->Remove(0, NULL);
args              321 chrome/browser/extensions/api/tabs/tabs_event_router.cc   DispatchEvent(profile, tabs::OnActivated::kEventName, args.Pass(), gesture);
args              340 chrome/browser/extensions/api/tabs/tabs_event_router.cc   scoped_ptr<base::ListValue> args(new base::ListValue);
args              349 chrome/browser/extensions/api/tabs/tabs_event_router.cc   args->Append(select_info.release());
args              355 chrome/browser/extensions/api/tabs/tabs_event_router.cc                 scoped_ptr<base::ListValue>(args->DeepCopy()),
args              359 chrome/browser/extensions/api/tabs/tabs_event_router.cc                 args.Pass(),
args              366 chrome/browser/extensions/api/tabs/tabs_event_router.cc   scoped_ptr<base::ListValue> args(new base::ListValue);
args              367 chrome/browser/extensions/api/tabs/tabs_event_router.cc   args->Append(
args              378 chrome/browser/extensions/api/tabs/tabs_event_router.cc   args->Append(object_args);
args              383 chrome/browser/extensions/api/tabs/tabs_event_router.cc                 args.Pass(),
args              418 chrome/browser/extensions/api/tabs/tabs_event_router.cc     scoped_ptr<base::ListValue> args,
args              424 chrome/browser/extensions/api/tabs/tabs_event_router.cc   scoped_ptr<Event> event(new Event(event_name, args.Pass()));
args              435 chrome/browser/extensions/api/tabs/tabs_event_router.cc   scoped_ptr<base::ListValue> args(new base::ListValue);
args              436 chrome/browser/extensions/api/tabs/tabs_event_router.cc   args->Append(new FundamentalValue(window_id));
args              440 chrome/browser/extensions/api/tabs/tabs_event_router.cc                 args.Pass(),
args              524 chrome/browser/extensions/api/tabs/tabs_event_router.cc   scoped_ptr<base::ListValue> args(new base::ListValue);
args              525 chrome/browser/extensions/api/tabs/tabs_event_router.cc   args->Append(new FundamentalValue(new_tab_id));
args              526 chrome/browser/extensions/api/tabs/tabs_event_router.cc   args->Append(new FundamentalValue(old_tab_id));
args              530 chrome/browser/extensions/api/tabs/tabs_event_router.cc                 args.Pass(),
args               89 chrome/browser/extensions/api/tabs/tabs_event_router.h                      scoped_ptr<base::ListValue> args,
args               63 chrome/browser/extensions/api/tabs/windows_event_router.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args               66 chrome/browser/extensions/api/tabs/windows_event_router.cc   args->Append(window_dictionary);
args               68 chrome/browser/extensions/api/tabs/windows_event_router.cc                 args.Pass());
args               77 chrome/browser/extensions/api/tabs/windows_event_router.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args               78 chrome/browser/extensions/api/tabs/windows_event_router.cc   args->Append(new base::FundamentalValue(window_id));
args               81 chrome/browser/extensions/api/tabs/windows_event_router.cc                 args.Pass());
args              160 chrome/browser/extensions/api/tabs/windows_event_router.cc                                       scoped_ptr<base::ListValue> args) {
args              161 chrome/browser/extensions/api/tabs/windows_event_router.cc   scoped_ptr<Event> event(new Event(event_name, args.Pass()));
args               68 chrome/browser/extensions/api/tabs/windows_event_router.h                      scoped_ptr<base::ListValue> args);
args               60 chrome/browser/extensions/api/terminal/terminal_private_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args               61 chrome/browser/extensions/api/terminal/terminal_private_api.cc   args->Append(new base::FundamentalValue(pid));
args               62 chrome/browser/extensions/api/terminal/terminal_private_api.cc   args->Append(new base::StringValue(output_type));
args               63 chrome/browser/extensions/api/terminal/terminal_private_api.cc   args->Append(new base::StringValue(output));
args               68 chrome/browser/extensions/api/terminal/terminal_private_api.cc         terminal_private::OnProcessOutput::kEventName, args.Pass()));
args               22 chrome/browser/extensions/api/usb/usb_apitest.cc   ::std::tr1::get<k>(args).Run(p1, new net::IOBuffer(1), 1);
args               43 chrome/browser/extensions/api/web_navigation/web_navigation_api_helpers.cc                    scoped_ptr<base::ListValue> args,
args               50 chrome/browser/extensions/api/web_navigation/web_navigation_api_helpers.cc     scoped_ptr<Event> event(new Event(event_name, args.Pass()));
args               71 chrome/browser/extensions/api/web_navigation/web_navigation_api_helpers.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args               80 chrome/browser/extensions/api/web_navigation/web_navigation_api_helpers.cc   args->Append(dict);
args               84 chrome/browser/extensions/api/web_navigation/web_navigation_api_helpers.cc                 args.Pass(),
args               96 chrome/browser/extensions/api/web_navigation/web_navigation_api_helpers.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              122 chrome/browser/extensions/api/web_navigation/web_navigation_api_helpers.cc   args->Append(dict);
args              124 chrome/browser/extensions/api/web_navigation/web_navigation_api_helpers.cc   DispatchEvent(web_contents->GetBrowserContext(), event_name, args.Pass(),
args              133 chrome/browser/extensions/api/web_navigation/web_navigation_api_helpers.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              142 chrome/browser/extensions/api/web_navigation/web_navigation_api_helpers.cc   args->Append(dict);
args              146 chrome/browser/extensions/api/web_navigation/web_navigation_api_helpers.cc                 args.Pass(),
args              155 chrome/browser/extensions/api/web_navigation/web_navigation_api_helpers.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              164 chrome/browser/extensions/api/web_navigation/web_navigation_api_helpers.cc   args->Append(dict);
args              168 chrome/browser/extensions/api/web_navigation/web_navigation_api_helpers.cc                 args.Pass(), url);
args              186 chrome/browser/extensions/api/web_navigation/web_navigation_api_helpers.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              198 chrome/browser/extensions/api/web_navigation/web_navigation_api_helpers.cc   args->Append(dict);
args              202 chrome/browser/extensions/api/web_navigation/web_navigation_api_helpers.cc                 args.Pass(),
args              213 chrome/browser/extensions/api/web_navigation/web_navigation_api_helpers.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              222 chrome/browser/extensions/api/web_navigation/web_navigation_api_helpers.cc   args->Append(dict);
args              226 chrome/browser/extensions/api/web_navigation/web_navigation_api_helpers.cc                 args.Pass(), url);
args              234 chrome/browser/extensions/api/web_navigation/web_navigation_api_helpers.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              242 chrome/browser/extensions/api/web_navigation/web_navigation_api_helpers.cc   args->Append(dict);
args              246 chrome/browser/extensions/api/web_navigation/web_navigation_api_helpers.cc                 args.Pass(),
args              706 chrome/browser/extensions/api/web_request/web_request_api.cc     base::ListValue args;
args              711 chrome/browser/extensions/api/web_request/web_request_api.cc     args.Append(dict);
args              714 chrome/browser/extensions/api/web_request/web_request_api.cc         DispatchEvent(profile, request, listeners, args);
args              763 chrome/browser/extensions/api/web_request/web_request_api.cc     base::ListValue args;
args              768 chrome/browser/extensions/api/web_request/web_request_api.cc     args.Append(dict);
args              771 chrome/browser/extensions/api/web_request/web_request_api.cc         DispatchEvent(profile, request, listeners, args);
args              818 chrome/browser/extensions/api/web_request/web_request_api.cc   base::ListValue args;
args              823 chrome/browser/extensions/api/web_request/web_request_api.cc   args.Append(dict);
args              825 chrome/browser/extensions/api/web_request/web_request_api.cc   DispatchEvent(profile, request, listeners, args);
args              857 chrome/browser/extensions/api/web_request/web_request_api.cc     base::ListValue args;
args              866 chrome/browser/extensions/api/web_request/web_request_api.cc     args.Append(dict);
args              869 chrome/browser/extensions/api/web_request/web_request_api.cc         DispatchEvent(profile, request, listeners, args);
args              920 chrome/browser/extensions/api/web_request/web_request_api.cc   base::ListValue args;
args              937 chrome/browser/extensions/api/web_request/web_request_api.cc   args.Append(dict);
args              939 chrome/browser/extensions/api/web_request/web_request_api.cc   if (DispatchEvent(profile, request, listeners, args)) {
args              982 chrome/browser/extensions/api/web_request/web_request_api.cc   base::ListValue args;
args              995 chrome/browser/extensions/api/web_request/web_request_api.cc   args.Append(dict);
args              997 chrome/browser/extensions/api/web_request/web_request_api.cc   DispatchEvent(profile, request, listeners, args);
args             1028 chrome/browser/extensions/api/web_request/web_request_api.cc   base::ListValue args;
args             1040 chrome/browser/extensions/api/web_request/web_request_api.cc   args.Append(dict);
args             1042 chrome/browser/extensions/api/web_request/web_request_api.cc   DispatchEvent(profile, request, listeners, args);
args             1080 chrome/browser/extensions/api/web_request/web_request_api.cc   base::ListValue args;
args             1092 chrome/browser/extensions/api/web_request/web_request_api.cc   args.Append(dict);
args             1094 chrome/browser/extensions/api/web_request/web_request_api.cc   DispatchEvent(profile, request, listeners, args);
args             1129 chrome/browser/extensions/api/web_request/web_request_api.cc   base::ListValue args;
args             1140 chrome/browser/extensions/api/web_request/web_request_api.cc   args.Append(dict);
args             1142 chrome/browser/extensions/api/web_request/web_request_api.cc   DispatchEvent(profile, request, listeners, args);
args             1164 chrome/browser/extensions/api/web_request/web_request_api.cc     const base::ListValue& args) {
args             1171 chrome/browser/extensions/api/web_request/web_request_api.cc     scoped_ptr<base::ListValue> args_filtered(args.DeepCopy());
args              335 chrome/browser/extensions/api/web_request/web_request_api.h       const base::ListValue& args);
args              921 chrome/browser/extensions/api/web_request/web_request_api_unittest.cc     base::ListValue& args = message_tuple.d;
args              924 chrome/browser/extensions/api/web_request/web_request_api_unittest.cc     if (!args.GetString(0, &event_name) ||
args              930 chrome/browser/extensions/api/web_request/web_request_api_unittest.cc     ASSERT_TRUE(args.GetList(1, &event_arg));
args               51 chrome/browser/extensions/event_router_forwarder_unittest.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args               52 chrome/browser/extensions/event_router_forwarder_unittest.cc   event_router->BroadcastEventToRenderers(event_name, args.Pass(), url);
args               60 chrome/browser/extensions/event_router_forwarder_unittest.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args               61 chrome/browser/extensions/event_router_forwarder_unittest.cc   event_router->DispatchEventToRenderers(event_name, args.Pass(), profile,
args               69 chrome/browser/extensions/event_router_forwarder_unittest.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args               70 chrome/browser/extensions/event_router_forwarder_unittest.cc   event_router->BroadcastEventToExtension(extension, event_name, args.Pass(),
args               80 chrome/browser/extensions/event_router_forwarder_unittest.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args               82 chrome/browser/extensions/event_router_forwarder_unittest.cc       extension, event_name, args.Pass(), profile,
args               40 chrome/browser/extensions/extension_api_unittest.cc     UIThreadExtensionFunction* function, const std::string& args) {
args               45 chrome/browser/extensions/extension_api_unittest.cc       utils::RunFunctionAndReturnSingleResult(function, args, browser()));
args               50 chrome/browser/extensions/extension_api_unittest.cc     UIThreadExtensionFunction* function, const std::string& args) {
args               51 chrome/browser/extensions/extension_api_unittest.cc   base::Value* value = RunFunctionAndReturnValue(function, args).release();
args               64 chrome/browser/extensions/extension_api_unittest.cc     UIThreadExtensionFunction* function, const std::string& args) {
args               65 chrome/browser/extensions/extension_api_unittest.cc   base::Value* value = RunFunctionAndReturnValue(function, args).release();
args               78 chrome/browser/extensions/extension_api_unittest.cc     UIThreadExtensionFunction* function, const std::string& args) {
args               82 chrome/browser/extensions/extension_api_unittest.cc   return utils::RunFunctionAndReturnError(function, args, browser());
args               86 chrome/browser/extensions/extension_api_unittest.cc     UIThreadExtensionFunction* function, const std::string& args) {
args               87 chrome/browser/extensions/extension_api_unittest.cc   RunFunctionAndReturnValue(function, args);
args               66 chrome/browser/extensions/extension_api_unittest.h       UIThreadExtensionFunction* function, const std::string& args);
args               71 chrome/browser/extensions/extension_api_unittest.h       UIThreadExtensionFunction* function, const std::string& args);
args               76 chrome/browser/extensions/extension_api_unittest.h       UIThreadExtensionFunction* function, const std::string& args);
args               81 chrome/browser/extensions/extension_api_unittest.h       UIThreadExtensionFunction* function, const std::string& args);
args               85 chrome/browser/extensions/extension_api_unittest.h       UIThreadExtensionFunction* function, const std::string& args);
args              162 chrome/browser/extensions/extension_function_test_utils.cc                                       const std::string& args,
args              164 chrome/browser/extensions/extension_function_test_utils.cc   return RunFunctionAndReturnError(function, args, browser, NONE);
args              167 chrome/browser/extensions/extension_function_test_utils.cc                                       const std::string& args,
args              173 chrome/browser/extensions/extension_function_test_utils.cc   RunFunction(function, args, browser, flags);
args              180 chrome/browser/extensions/extension_function_test_utils.cc     const std::string& args,
args              182 chrome/browser/extensions/extension_function_test_utils.cc   return RunFunctionAndReturnSingleResult(function, args, browser, NONE);
args              186 chrome/browser/extensions/extension_function_test_utils.cc     const std::string& args,
args              192 chrome/browser/extensions/extension_function_test_utils.cc   RunFunction(function, args, browser, flags);
args              243 chrome/browser/extensions/extension_function_test_utils.cc                  const std::string& args,
args              248 chrome/browser/extensions/extension_function_test_utils.cc   scoped_ptr<base::ListValue> parsed_args(ParseList(args));
args              250 chrome/browser/extensions/extension_function_test_utils.cc       "Could not parse extension function arguments: " << args;
args               89 chrome/browser/extensions/extension_function_test_utils.h                                       const std::string& args,
args               93 chrome/browser/extensions/extension_function_test_utils.h                                       const std::string& args,
args              101 chrome/browser/extensions/extension_function_test_utils.h     const std::string& args,
args              106 chrome/browser/extensions/extension_function_test_utils.h     const std::string& args,
args              120 chrome/browser/extensions/extension_function_test_utils.h                  const std::string& args,
args              116 chrome/browser/extensions/extension_keybinding_registry.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              117 chrome/browser/extensions/extension_keybinding_registry.cc   args->Append(new base::StringValue(command));
args              119 chrome/browser/extensions/extension_keybinding_registry.cc   scoped_ptr<Event> event(new Event("commands.onCommand", args.Pass()));
args              189 chrome/browser/extensions/extension_messages_apitest.cc     std::string args = "'" + extension_id + "'";
args              191 chrome/browser/extensions/extension_messages_apitest.cc       args += std::string(", '") + message + "'";
args              195 chrome/browser/extensions/extension_messages_apitest.cc                            args.c_str()),
args              406 chrome/browser/extensions/extension_messages_apitest.cc     std::string args = "'" + extension_id + "', ";
args              407 chrome/browser/extensions/extension_messages_apitest.cc     args += include_tls_channel_id ? "true" : "false";
args              409 chrome/browser/extensions/extension_messages_apitest.cc       args += std::string(", '") + message + "'";
args              412 chrome/browser/extensions/extension_messages_apitest.cc         base::StringPrintf("assertions.%s(%s)", method, args.c_str()),
args              628 chrome/browser/extensions/menu_manager.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              666 chrome/browser/extensions/menu_manager.cc   args->Append(properties);
args              673 chrome/browser/extensions/menu_manager.cc       args->Append(ExtensionTabUtil::CreateTabValue(web_contents));
args              675 chrome/browser/extensions/menu_manager.cc       args->Append(new base::DictionaryValue());
args              707 chrome/browser/extensions/menu_manager.cc                   scoped_ptr<base::ListValue>(args->DeepCopy())));
args              717 chrome/browser/extensions/menu_manager.cc                   args.Pass()));
args               52 chrome/browser/guestview/adview/adview_guest.cc   scoped_ptr<base::DictionaryValue> args(new base::DictionaryValue());
args               53 chrome/browser/guestview/adview/adview_guest.cc   args->SetString(guestview::kUrl, url.spec());
args               54 chrome/browser/guestview/adview/adview_guest.cc   args->SetBoolean(guestview::kIsTopLevel, is_main_frame);
args               55 chrome/browser/guestview/adview/adview_guest.cc   DispatchEvent(new GuestView::Event(adview::kEventLoadCommit, args.Pass()));
args               70 chrome/browser/guestview/adview/adview_guest.cc   scoped_ptr<base::DictionaryValue> args(new base::DictionaryValue());
args               71 chrome/browser/guestview/adview/adview_guest.cc   args->SetBoolean(guestview::kIsTopLevel, is_main_frame);
args               72 chrome/browser/guestview/adview/adview_guest.cc   args->SetString(guestview::kUrl, validated_url.spec());
args               73 chrome/browser/guestview/adview/adview_guest.cc   args->SetString(guestview::kReason, error_type);
args               74 chrome/browser/guestview/adview/adview_guest.cc   DispatchEvent(new GuestView::Event(adview::kEventLoadAbort, args.Pass()));
args               35 chrome/browser/guestview/guestview.cc                         scoped_ptr<base::DictionaryValue> args)
args               37 chrome/browser/guestview/guestview.cc       args_(args.Pass()) {
args              142 chrome/browser/guestview/guestview.cc                        const base::DictionaryValue& args) {
args              146 chrome/browser/guestview/guestview.cc   args.GetInteger(guestview::kParameterInstanceId, &view_instance_id_);
args              205 chrome/browser/guestview/guestview.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              206 chrome/browser/guestview/guestview.cc   args->Append(event->GetArguments().release());
args              210 chrome/browser/guestview/guestview.cc       event->name(), args.Pass(),
args               33 chrome/browser/guestview/guestview.h      Event(const std::string& name, scoped_ptr<base::DictionaryValue> args);
args               72 chrome/browser/guestview/guestview.h                       const base::DictionaryValue& args);
args               34 chrome/browser/guestview/webview/webview_find_helper.cc   scoped_ptr<base::DictionaryValue> args(new base::DictionaryValue());
args               35 chrome/browser/guestview/webview/webview_find_helper.cc   find_update_event_->PrepareResults(args.get());
args               36 chrome/browser/guestview/webview/webview_find_helper.cc   args->SetBoolean(webview::kFindCanceled, canceled);
args               37 chrome/browser/guestview/webview/webview_find_helper.cc   args->SetBoolean(webview::kFindFinalUpdate, final_update);
args               40 chrome/browser/guestview/webview/webview_find_helper.cc                                                      args.Pass()));
args              276 chrome/browser/guestview/webview/webview_guest.cc                           const base::DictionaryValue& args) {
args              278 chrome/browser/guestview/webview/webview_guest.cc   if (args.GetString(webview::kParameterUserAgentOverride,
args              285 chrome/browser/guestview/webview/webview_guest.cc   GuestView::Attach(embedder_web_contents, args);
args              306 chrome/browser/guestview/webview/webview_guest.cc   scoped_ptr<base::DictionaryValue> args(new base::DictionaryValue());
args              308 chrome/browser/guestview/webview/webview_guest.cc   args->SetInteger(webview::kLevel, level);
args              309 chrome/browser/guestview/webview/webview_guest.cc   args->SetString(webview::kMessage, message);
args              310 chrome/browser/guestview/webview/webview_guest.cc   args->SetInteger(webview::kLine, line_no);
args              311 chrome/browser/guestview/webview/webview_guest.cc   args->SetString(webview::kSourceId, source_id);
args              313 chrome/browser/guestview/webview/webview_guest.cc       new GuestView::Event(webview::kEventConsoleMessage, args.Pass()));
args              317 chrome/browser/guestview/webview/webview_guest.cc   scoped_ptr<base::DictionaryValue> args(new base::DictionaryValue());
args              318 chrome/browser/guestview/webview/webview_guest.cc   DispatchEvent(new GuestView::Event(webview::kEventClose, args.Pass()));
args              359 chrome/browser/guestview/webview/webview_guest.cc   scoped_ptr<base::DictionaryValue> args(new base::DictionaryValue());
args              360 chrome/browser/guestview/webview/webview_guest.cc   args->SetInteger(webview::kProcessId,
args              362 chrome/browser/guestview/webview/webview_guest.cc   args->SetString(webview::kReason, TerminationStatusToString(status));
args              364 chrome/browser/guestview/webview/webview_guest.cc       new GuestView::Event(webview::kEventExit, args.Pass()));
args              408 chrome/browser/guestview/webview/webview_guest.cc   scoped_ptr<base::DictionaryValue> args(new base::DictionaryValue());
args              409 chrome/browser/guestview/webview/webview_guest.cc   args->SetString(guestview::kUrl, guest_web_contents()->GetURL().spec());
args              410 chrome/browser/guestview/webview/webview_guest.cc   args->SetDouble(webview::kProgress, progress);
args              411 chrome/browser/guestview/webview/webview_guest.cc   DispatchEvent(new GuestView::Event(webview::kEventLoadProgress, args.Pass()));
args              417 chrome/browser/guestview/webview/webview_guest.cc   scoped_ptr<base::DictionaryValue> args(new base::DictionaryValue());
args              418 chrome/browser/guestview/webview/webview_guest.cc   args->SetBoolean(guestview::kIsTopLevel, is_top_level);
args              419 chrome/browser/guestview/webview/webview_guest.cc   args->SetString(guestview::kUrl, url.possibly_invalid_spec());
args              420 chrome/browser/guestview/webview/webview_guest.cc   args->SetString(guestview::kReason, error_type);
args              421 chrome/browser/guestview/webview/webview_guest.cc   DispatchEvent(new GuestView::Event(webview::kEventLoadAbort, args.Pass()));
args              427 chrome/browser/guestview/webview/webview_guest.cc   scoped_ptr<base::DictionaryValue> args(new base::DictionaryValue());
args              428 chrome/browser/guestview/webview/webview_guest.cc   args->SetInteger(webview::kProcessId,
args              430 chrome/browser/guestview/webview/webview_guest.cc   DispatchEvent(new GuestView::Event(webview::kEventResponsive, args.Pass()));
args              434 chrome/browser/guestview/webview/webview_guest.cc   scoped_ptr<base::DictionaryValue> args(new base::DictionaryValue());
args              435 chrome/browser/guestview/webview/webview_guest.cc   args->SetInteger(webview::kProcessId,
args              437 chrome/browser/guestview/webview/webview_guest.cc   DispatchEvent(new GuestView::Event(webview::kEventUnresponsive, args.Pass()));
args              455 chrome/browser/guestview/webview/webview_guest.cc   scoped_ptr<base::DictionaryValue> args(request_info.DeepCopy());
args              456 chrome/browser/guestview/webview/webview_guest.cc   args->SetInteger(webview::kRequestId, request_id);
args              460 chrome/browser/guestview/webview/webview_guest.cc                                          args.Pass()));
args              465 chrome/browser/guestview/webview/webview_guest.cc                                          args.Pass()));
args              469 chrome/browser/guestview/webview/webview_guest.cc       args->SetString(webview::kPermission,
args              472 chrome/browser/guestview/webview/webview_guest.cc                                          args.Pass()));
args              512 chrome/browser/guestview/webview/webview_guest.cc   scoped_ptr<base::DictionaryValue> args(new base::DictionaryValue());
args              513 chrome/browser/guestview/webview/webview_guest.cc   args->SetDouble(webview::kOldZoomFactor, current_zoom_factor_);
args              514 chrome/browser/guestview/webview/webview_guest.cc   args->SetDouble(webview::kNewZoomFactor, zoom_factor);
args              515 chrome/browser/guestview/webview/webview_guest.cc   DispatchEvent(new GuestView::Event(webview::kEventZoomChange, args.Pass()));
args              628 chrome/browser/guestview/webview/webview_guest.cc   scoped_ptr<base::DictionaryValue> args(new base::DictionaryValue());
args              629 chrome/browser/guestview/webview/webview_guest.cc   args->SetString(guestview::kUrl, url.spec());
args              630 chrome/browser/guestview/webview/webview_guest.cc   args->SetBoolean(guestview::kIsTopLevel, is_main_frame);
args              631 chrome/browser/guestview/webview/webview_guest.cc   args->SetInteger(webview::kInternalCurrentEntryIndex,
args              633 chrome/browser/guestview/webview/webview_guest.cc   args->SetInteger(webview::kInternalEntryCount,
args              635 chrome/browser/guestview/webview/webview_guest.cc   args->SetInteger(webview::kInternalProcessId,
args              637 chrome/browser/guestview/webview/webview_guest.cc   DispatchEvent(new GuestView::Event(webview::kEventLoadCommit, args.Pass()));
args              671 chrome/browser/guestview/webview/webview_guest.cc   scoped_ptr<base::DictionaryValue> args(new base::DictionaryValue());
args              672 chrome/browser/guestview/webview/webview_guest.cc   args->SetString(guestview::kUrl, validated_url.spec());
args              673 chrome/browser/guestview/webview/webview_guest.cc   args->SetBoolean(guestview::kIsTopLevel, is_main_frame);
args              674 chrome/browser/guestview/webview/webview_guest.cc   DispatchEvent(new GuestView::Event(webview::kEventLoadStart, args.Pass()));
args              685 chrome/browser/guestview/webview/webview_guest.cc   scoped_ptr<base::DictionaryValue> args(new base::DictionaryValue());
args              686 chrome/browser/guestview/webview/webview_guest.cc   DispatchEvent(new GuestView::Event(webview::kEventLoadStop, args.Pass()));
args              716 chrome/browser/guestview/webview/webview_guest.cc   scoped_ptr<base::DictionaryValue> args(new base::DictionaryValue());
args              717 chrome/browser/guestview/webview/webview_guest.cc   DispatchEvent(new GuestView::Event(webview::kEventContentLoad, args.Pass()));
args              723 chrome/browser/guestview/webview/webview_guest.cc   scoped_ptr<base::DictionaryValue> args(new base::DictionaryValue());
args              724 chrome/browser/guestview/webview/webview_guest.cc   args->SetBoolean(guestview::kIsTopLevel, is_top_level);
args              725 chrome/browser/guestview/webview/webview_guest.cc   args->SetString(webview::kNewURL, new_url.spec());
args              726 chrome/browser/guestview/webview/webview_guest.cc   args->SetString(webview::kOldURL, old_url.spec());
args              727 chrome/browser/guestview/webview/webview_guest.cc   DispatchEvent(new GuestView::Event(webview::kEventLoadRedirect, args.Pass()));
args              784 chrome/browser/guestview/webview/webview_guest.cc   scoped_ptr<base::DictionaryValue> args(new base::DictionaryValue());
args              785 chrome/browser/guestview/webview/webview_guest.cc   args->SetInteger(webview::kOldHeight, old_size.height());
args              786 chrome/browser/guestview/webview/webview_guest.cc   args->SetInteger(webview::kOldWidth, old_size.width());
args              787 chrome/browser/guestview/webview/webview_guest.cc   args->SetInteger(webview::kNewHeight, new_size.height());
args              788 chrome/browser/guestview/webview/webview_guest.cc   args->SetInteger(webview::kNewWidth, new_size.width());
args              789 chrome/browser/guestview/webview/webview_guest.cc   DispatchEvent(new GuestView::Event(webview::kEventSizeChanged, args.Pass()));
args               47 chrome/browser/guestview/webview/webview_guest.h                       const base::DictionaryValue& args) OVERRIDE;
args              636 chrome/browser/history/android/android_provider_backend_unittest.cc   std::vector<base::string16> args;
args              639 chrome/browser/history/android/android_provider_backend_unittest.cc   ASSERT_TRUE(backend->DeleteHistoryAndBookmarks("Favicon IS NULL", args,
args             1324 chrome/browser/history/android/android_provider_backend_unittest.cc   std::vector<base::string16> args;
args             1325 chrome/browser/history/android/android_provider_backend_unittest.cc   args.push_back(term);
args             1327 chrome/browser/history/android/android_provider_backend_unittest.cc       projections, "search = ?", args, std::string()));
args             1336 chrome/browser/history/android/android_provider_backend_unittest.cc   args.clear();
args             1337 chrome/browser/history/android/android_provider_backend_unittest.cc   args.push_back(term);
args             1344 chrome/browser/history/android/android_provider_backend_unittest.cc   ASSERT_TRUE(backend->UpdateSearchTerms(search_row, "search = ?", args,
args             1362 chrome/browser/history/android/android_provider_backend_unittest.cc   args.clear();
args             1363 chrome/browser/history/android/android_provider_backend_unittest.cc   args.push_back(update_term);
args             1364 chrome/browser/history/android/android_provider_backend_unittest.cc   statement.reset(backend->QuerySearchTerms(projections, "search = ?", args,
args             1381 chrome/browser/history/android/android_provider_backend_unittest.cc   args.clear();
args             1384 chrome/browser/history/android/android_provider_backend_unittest.cc   args.push_back(UTF8ToUTF16(oss.str()));
args             1386 chrome/browser/history/android/android_provider_backend_unittest.cc   ASSERT_TRUE(backend->UpdateSearchTerms(update_time, "_id = ?", args,
args             1391 chrome/browser/history/android/android_provider_backend_unittest.cc   statement.reset(backend->QuerySearchTerms(projections, "_id = ?", args,
args             1428 chrome/browser/history/android/android_provider_backend_unittest.cc   std::vector<base::string16> args;
args             1429 chrome/browser/history/android/android_provider_backend_unittest.cc   args.push_back(term);
args             1431 chrome/browser/history/android/android_provider_backend_unittest.cc       projections, "search = ?", args, std::string()));
args             1455 chrome/browser/history/android/android_provider_backend_unittest.cc   args.clear();
args             1456 chrome/browser/history/android/android_provider_backend_unittest.cc   args.push_back(term2);
args             1457 chrome/browser/history/android/android_provider_backend_unittest.cc   statement.reset(backend->QuerySearchTerms(projections, "search = ?", args,
args             1466 chrome/browser/history/android/android_provider_backend_unittest.cc   args.clear();
args             1467 chrome/browser/history/android/android_provider_backend_unittest.cc   args.push_back(term);
args             1469 chrome/browser/history/android/android_provider_backend_unittest.cc   ASSERT_TRUE(backend->DeleteSearchTerms("search = ?", args, &deleted_count));
args             1475 chrome/browser/history/android/android_provider_backend_unittest.cc   args.clear();
args             1478 chrome/browser/history/android/android_provider_backend_unittest.cc   args.push_back(UTF8ToUTF16(oss.str()));
args             1479 chrome/browser/history/android/android_provider_backend_unittest.cc   statement.reset(backend->QuerySearchTerms(projections, "_id = ?", args,
args             1485 chrome/browser/history/android/android_provider_backend_unittest.cc   args.clear();
args             1488 chrome/browser/history/android/android_provider_backend_unittest.cc   args.push_back(UTF8ToUTF16(oss1.str()));
args             1489 chrome/browser/history/android/android_provider_backend_unittest.cc   statement.reset(backend->QuerySearchTerms(projections, "_id = ?", args,
args             1498 chrome/browser/history/android/android_provider_backend_unittest.cc   args.clear();
args             1499 chrome/browser/history/android/android_provider_backend_unittest.cc   ASSERT_TRUE(backend->DeleteSearchTerms(std::string(), args, &deleted_count));
args             1503 chrome/browser/history/android/android_provider_backend_unittest.cc   args.clear();
args             1504 chrome/browser/history/android/android_provider_backend_unittest.cc   args.push_back(UTF8ToUTF16(oss1.str()));
args             1505 chrome/browser/history/android/android_provider_backend_unittest.cc   statement.reset(backend->QuerySearchTerms(projections, "_id = ?", args,
args             1530 chrome/browser/history/android/android_provider_backend_unittest.cc   std::vector<base::string16> args;
args             1533 chrome/browser/history/android/android_provider_backend_unittest.cc   args.push_back(UTF8ToUTF16(oss.str()));
args             1535 chrome/browser/history/android/android_provider_backend_unittest.cc       projections, "_id = ?", args, std::string()));
args             1980 chrome/browser/history/android/android_provider_backend_unittest.cc   std::vector<base::string16> args;
args             1983 chrome/browser/history/android/android_provider_backend_unittest.cc   ASSERT_TRUE(backend->DeleteHistoryAndBookmarks("Favicon IS NULL", args,
args             2628 chrome/browser/history/history_backend_unittest.cc   HistoryAddPageArgs args[10];
args             2629 chrome/browser/history/history_backend_unittest.cc   for (size_t i = 0; i < arraysize(args); ++i) {
args             2630 chrome/browser/history/history_backend_unittest.cc     args[i].url = GURL("http://example" +
args             2632 chrome/browser/history/history_backend_unittest.cc     args[i].time = base::Time::FromInternalValue(i);
args             2633 chrome/browser/history/history_backend_unittest.cc     backend_->AddPage(args[i]);
args             2638 chrome/browser/history/history_backend_unittest.cc   for (size_t i = 0; i < arraysize(args); ++i) {
args             2639 chrome/browser/history/history_backend_unittest.cc     EXPECT_TRUE(backend_->GetURL(args[i].url, &row));
args             2643 chrome/browser/history/history_backend_unittest.cc   times.insert(args[5].time);
args             2684 chrome/browser/history/history_backend_unittest.cc   HistoryAddPageArgs args[4];
args             2685 chrome/browser/history/history_backend_unittest.cc   for (size_t i = 0; i < arraysize(args); ++i) {
args             2686 chrome/browser/history/history_backend_unittest.cc     args[i].url = GURL("http://example" + base::IntToString(i) + ".com");
args             2687 chrome/browser/history/history_backend_unittest.cc     args[i].time = reference_time + base::TimeDelta::FromDays(i);
args             2688 chrome/browser/history/history_backend_unittest.cc     backend_->AddPage(args[i]);
args             2692 chrome/browser/history/history_backend_unittest.cc   for (unsigned int i = 0; i < arraysize(args); ++i)
args             2693 chrome/browser/history/history_backend_unittest.cc     ASSERT_TRUE(backend_->GetURL(args[i].url, &url_rows[i]));
args             2706 chrome/browser/history/history_backend_unittest.cc   expire_list[0].SetTimeRangeForOneDay(args[0].time);
args             2723 chrome/browser/history/history_backend_unittest.cc   EXPECT_EQ(backend_->GetFirstRecordedTimeForTest(), args[1].time);
args             2726 chrome/browser/history/history_backend_unittest.cc   for (unsigned int i = 1; i < arraysize(args); ++i) {
args             2728 chrome/browser/history/history_backend_unittest.cc     expire_list[i].SetTimeRangeForOneDay(args[i].time);
args             2729 chrome/browser/history/history_backend_unittest.cc     expire_list[i].urls.insert(args[i].url);
args               24 chrome/browser/infobars/infobar_extension_api.cc   base::DictionaryValue* args;
args               25 chrome/browser/infobars/infobar_extension_api.cc   EXTENSION_FUNCTION_VALIDATE(args_->GetDictionary(0, &args));
args               29 chrome/browser/infobars/infobar_extension_api.cc   EXTENSION_FUNCTION_VALIDATE(args->GetInteger(kTabId, &tab_id));
args               33 chrome/browser/infobars/infobar_extension_api.cc   EXTENSION_FUNCTION_VALIDATE(args->GetString(kHtmlPath, &html_path));
args               37 chrome/browser/infobars/infobar_extension_api.cc   if (args->HasKey(kHeight))
args               38 chrome/browser/infobars/infobar_extension_api.cc     EXTENSION_FUNCTION_VALIDATE(args->GetInteger(kHeight, &height));
args               59 chrome/browser/mac/keystone_registration.h - (BOOL)registerWithParameters:(NSDictionary*)args;
args               61 chrome/browser/mac/keystone_registration.h - (BOOL)promoteWithParameters:(NSDictionary*)args
args               78 chrome/browser/mac/relauncher.cc bool RelaunchApp(const std::vector<std::string>& args) {
args               92 chrome/browser/mac/relauncher.cc   return RelaunchAppWithHelper(child_path.value(), relauncher_args, args);
args               97 chrome/browser/mac/relauncher.cc                            const std::vector<std::string>& args) {
args              116 chrome/browser/mac/relauncher.cc   for (size_t index = 0; index < args.size(); ++index) {
args              118 chrome/browser/mac/relauncher.cc     if (args[index].compare(0, strlen(kPSNArg), kPSNArg) != 0 &&
args              119 chrome/browser/mac/relauncher.cc         args[index].compare(0, strlen(alt_psn_arg), alt_psn_arg) != 0) {
args              120 chrome/browser/mac/relauncher.cc       relaunch_args.push_back(args[index]);
args               58 chrome/browser/mac/relauncher.h bool RelaunchApp(const std::vector<std::string>& args);
args               71 chrome/browser/mac/relauncher.h                            const std::vector<std::string>& args);
args              802 chrome/browser/notifications/desktop_notification_service.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              803 chrome/browser/notifications/desktop_notification_service.cc   args->Append(new base::StringValue(
args              807 chrome/browser/notifications/desktop_notification_service.cc       args.Pass()));
args              418 chrome/browser/notifications/message_center_settings_controller.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              421 chrome/browser/notifications/message_center_settings_controller.cc       extensions::api::notifications::OnShowSettings::kEventName, args.Pass()));
args              379 chrome/browser/printing/print_dialog_cloud.cc void CloudPrintFlowHandler::HandleShowDebugger(const base::ListValue* args) {
args              404 chrome/browser/printing/print_dialog_cloud.cc void CloudPrintFlowHandler::HandleSendPrintData(const base::ListValue* args) {
args              420 chrome/browser/printing/print_dialog_cloud.cc     const base::ListValue* args) {
args              422 chrome/browser/printing/print_dialog_cloud.cc   bool ret = args->GetString(0, &json);
args              113 chrome/browser/printing/print_dialog_cloud_internal.h   void HandleShowDebugger(const base::ListValue* args);
args              114 chrome/browser/printing/print_dialog_cloud_internal.h   void HandleSendPrintData(const base::ListValue* args);
args              115 chrome/browser/printing/print_dialog_cloud_internal.h   void HandleSetPageParameters(const base::ListValue* args);
args               28 chrome/browser/printing/printer_manager_dialog_win.cc   std::wstring args(shell32dll.value());
args               29 chrome/browser/printing/printer_manager_dialog_win.cc   args.append(L",SHHelpShortcuts_RunDLL PrintersFolder");
args               30 chrome/browser/printing/printer_manager_dialog_win.cc   ShellExecute(NULL, L"open", rundll32.value().c_str(), args.c_str(), NULL,
args              275 chrome/browser/profile_resetter/profile_resetter_unittest.cc                                       const base::string16& args);
args              302 chrome/browser/profile_resetter/profile_resetter_unittest.cc     const base::string16& args) {
args              313 chrome/browser/profile_resetter/profile_resetter_unittest.cc   shortcut_properties.set_arguments(args);
args              318 chrome/browser/profile_resetter/profile_resetter_unittest.cc   return ShortcutCommand(shortcut_path_, args);
args              324 chrome/browser/profile_resetter/profile_resetter_unittest.cc   base::string16 args;
args              325 chrome/browser/profile_resetter/profile_resetter_unittest.cc   EXPECT_TRUE(base::win::ResolveShortcut(shortcut_path_, NULL, &args));
args              326 chrome/browser/profile_resetter/profile_resetter_unittest.cc   EXPECT_EQ(desired_args, args);
args              346 chrome/browser/profile_resetter/profile_resetter_unittest.cc     const base::string16& args) {
args              138 chrome/browser/renderer_host/pepper/pepper_extensions_common_message_filter.cc     base::ListValue& args) {
args              139 chrome/browser/renderer_host/pepper/pepper_extensions_common_message_filter.cc   if (HandleRequest(context, request_name, &args, false))
args              148 chrome/browser/renderer_host/pepper/pepper_extensions_common_message_filter.cc     base::ListValue& args) {
args              149 chrome/browser/renderer_host/pepper/pepper_extensions_common_message_filter.cc   if (HandleRequest(context, request_name, &args, true))
args              187 chrome/browser/renderer_host/pepper/pepper_extensions_common_message_filter.cc     base::ListValue* args,
args              193 chrome/browser/renderer_host/pepper/pepper_extensions_common_message_filter.cc   params->arguments.Swap(args);
args              232 chrome/browser/renderer_host/pepper/pepper_extensions_common_message_filter.cc     base::ListValue* args,
args              241 chrome/browser/renderer_host/pepper/pepper_extensions_common_message_filter.cc   PopulateParams(request_name, args, has_callback, &params);
args               69 chrome/browser/renderer_host/pepper/pepper_extensions_common_message_filter.h                  base::ListValue& args);
args               73 chrome/browser/renderer_host/pepper/pepper_extensions_common_message_filter.h                  base::ListValue& args);
args               82 chrome/browser/renderer_host/pepper/pepper_extensions_common_message_filter.h                       base::ListValue* args,
args               94 chrome/browser/renderer_host/pepper/pepper_extensions_common_message_filter.h                      base::ListValue* args,
args               99 chrome/browser/safe_browsing/client_side_detection_host_unittest.cc   ::std::tr1::get<k>(args).Run(p0, p1);
args              103 chrome/browser/safe_browsing/client_side_detection_host_unittest.cc   scoped_ptr<ClientMalwareRequest> request(::std::tr1::get<1>(args));
args              105 chrome/browser/safe_browsing/client_side_detection_host_unittest.cc   ::std::tr1::get<2>(args).Run(true, request.Pass());
args              136 chrome/browser/speech/extension_api/tts_engine_extension_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              137 chrome/browser/speech/extension_api/tts_engine_extension_api.cc   args->Set(0, base::Value::CreateStringValue(utterance->text()));
args              164 chrome/browser/speech/extension_api/tts_engine_extension_api.cc   args->Set(1, options.release());
args              165 chrome/browser/speech/extension_api/tts_engine_extension_api.cc   args->Set(2, base::Value::CreateIntegerValue(utterance->id()));
args              168 chrome/browser/speech/extension_api/tts_engine_extension_api.cc       tts_engine_events::kOnSpeak, args.Pass()));
args              175 chrome/browser/speech/extension_api/tts_engine_extension_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              177 chrome/browser/speech/extension_api/tts_engine_extension_api.cc       tts_engine_events::kOnStop, args.Pass()));
args              184 chrome/browser/speech/extension_api/tts_engine_extension_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              186 chrome/browser/speech/extension_api/tts_engine_extension_api.cc       tts_engine_events::kOnPause, args.Pass()));
args              196 chrome/browser/speech/extension_api/tts_engine_extension_api.cc   scoped_ptr<base::ListValue> args(new base::ListValue());
args              198 chrome/browser/speech/extension_api/tts_engine_extension_api.cc       tts_engine_events::kOnResume, args.Pass()));
args               48 chrome/browser/sync_file_system/logger.cc   va_list args;
args               49 chrome/browser/sync_file_system/logger.cc   va_start(args, format);
args               50 chrome/browser/sync_file_system/logger.cc   base::StringAppendV(&what, format, args);
args               51 chrome/browser/sync_file_system/logger.cc   va_end(args);
args               42 chrome/browser/ui/android/infobars/auto_login_infobar_delegate_android.cc   ScopedJavaLocalRef<jstring> jargs = ConvertUTF8ToJavaString(env, args());
args               34 chrome/browser/ui/android/infobars/auto_login_infobar_delegate_android.h   const std::string& args() const { return params_.header.args; }
args               57 chrome/browser/ui/auto_login_infobar_delegate.cc                       const std::string& args);
args               81 chrome/browser/ui/auto_login_infobar_delegate.cc     const std::string& args)
args               83 chrome/browser/ui/auto_login_infobar_delegate.cc       args_(args) {
args              213 chrome/browser/ui/auto_login_infobar_delegate.cc   new AutoLoginRedirector(web_contents(), params_.header.args);
args               27 chrome/browser/ui/libgtk2ui/gtk2_util.cc   const std::vector<std::string>& args = command_line.argv();
args               28 chrome/browser/ui/libgtk2ui/gtk2_util.cc   int argc = args.size();
args               30 chrome/browser/ui/libgtk2ui/gtk2_util.cc   for (size_t i = 0; i < args.size(); ++i) {
args               33 chrome/browser/ui/libgtk2ui/gtk2_util.cc     argv[i] = strdup(args[i].c_str());
args               39 chrome/browser/ui/libgtk2ui/gtk2_util.cc   for (size_t i = 0; i < args.size(); ++i) {
args              250 chrome/browser/ui/sync/one_click_signin_helper.cc void StartSync(const OneClickSigninHelper::StartSyncArgs& args,
args              259 chrome/browser/ui/sync/one_click_signin_helper.cc       new OneClickSigninHelper::SyncStarterWrapper(args, start_mode);
args              263 chrome/browser/ui/sync/one_click_signin_helper.cc   switch (args.auto_accept) {
args              277 chrome/browser/ui/sync/one_click_signin_helper.cc       NOTREACHED() << "Invalid auto_accept: " << args.auto_accept;
args              284 chrome/browser/ui/sync/one_click_signin_helper.cc void StartExplicitSync(const OneClickSigninHelper::StartSyncArgs& args,
args              290 chrome/browser/ui/sync/one_click_signin_helper.cc     StartSync(args, start_mode);
args              294 chrome/browser/ui/sync/one_click_signin_helper.cc           contents, args.source);
args              303 chrome/browser/ui/sync/one_click_signin_helper.cc       args.callback.Run(OneClickSigninSyncStarter::SYNC_SETUP_FAILURE);
args              319 chrome/browser/ui/sync/one_click_signin_helper.cc                        args.source));
args              323 chrome/browser/ui/sync/one_click_signin_helper.cc       chrome::ShowSettingsSubPage(args.browser,
args              545 chrome/browser/ui/sync/one_click_signin_helper.cc       const OneClickSigninHelper::StartSyncArgs& args,
args              547 chrome/browser/ui/sync/one_click_signin_helper.cc     : args_(args), start_mode_(start_mode), weak_pointer_factory_(this) {
args              132 chrome/browser/ui/sync/one_click_signin_helper.h         const OneClickSigninHelper::StartSyncArgs& args,
args              907 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc       const OneClickSigninHelper::StartSyncArgs& args,
args              918 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc     const OneClickSigninHelper::StartSyncArgs& args,
args              921 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc           args, start_mode) {
args              965 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc   OneClickSigninHelper::StartSyncArgs args;
args              966 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc   args.email = "foo@gmail.com";
args              967 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc   args.password = "password";
args              968 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc   args.refresh_token = "refresh_token";
args              970 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc       args, OneClickSigninSyncStarter::SYNC_WITH_DEFAULT_SETTINGS);
args              979 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc   OneClickSigninHelper::StartSyncArgs args;
args              980 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc   args.email = "foo@gmail.com";
args              981 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc   args.password = "password";
args              983 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc       args, OneClickSigninSyncStarter::SYNC_WITH_DEFAULT_SETTINGS);
args              995 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc   OneClickSigninHelper::StartSyncArgs args;
args              996 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc   args.email = "foo@gmail.com";
args              997 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc   args.password = "password";
args              999 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc       args, OneClickSigninSyncStarter::SYNC_WITH_DEFAULT_SETTINGS);
args             1009 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc   OneClickSigninHelper::StartSyncArgs args;
args             1010 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc   args.email = "foo@gmail.com";
args             1011 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc   args.profile = profile();
args             1013 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc       args, OneClickSigninSyncStarter::SYNC_WITH_DEFAULT_SETTINGS);
args             1027 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc   OneClickSigninHelper::StartSyncArgs args;
args             1028 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc   args.email = "foo@gmail.com";
args             1029 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc   args.profile = profile();
args             1031 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc       args, OneClickSigninSyncStarter::SYNC_WITH_DEFAULT_SETTINGS);
args             1039 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc   OneClickSigninHelper::StartSyncArgs args;
args             1040 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc   args.email = "foo@gmail.com";
args             1041 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc   args.profile = profile();
args             1043 chrome/browser/ui/sync/one_click_signin_helper_unittest.cc       args, OneClickSigninSyncStarter::SYNC_WITH_DEFAULT_SETTINGS);
args              142 chrome/browser/ui/webui/app_list/start_page_handler.cc void StartPageHandler::HandleInitialize(const base::ListValue* args) {
args              176 chrome/browser/ui/webui/app_list/start_page_handler.cc void StartPageHandler::HandleLaunchApp(const base::ListValue* args) {
args              178 chrome/browser/ui/webui/app_list/start_page_handler.cc   CHECK(args->GetString(0, &app_id));
args              199 chrome/browser/ui/webui/app_list/start_page_handler.cc void StartPageHandler::HandleSpeechResult(const base::ListValue* args) {
args              202 chrome/browser/ui/webui/app_list/start_page_handler.cc   CHECK(args->GetString(0, &query));
args              203 chrome/browser/ui/webui/app_list/start_page_handler.cc   CHECK(args->GetBoolean(1, &is_final));
args              209 chrome/browser/ui/webui/app_list/start_page_handler.cc void StartPageHandler::HandleSpeechSoundLevel(const base::ListValue* args) {
args              211 chrome/browser/ui/webui/app_list/start_page_handler.cc   CHECK(args->GetDouble(0, &level));
args              219 chrome/browser/ui/webui/app_list/start_page_handler.cc void StartPageHandler::HandleSpeechRecognition(const base::ListValue* args) {
args              221 chrome/browser/ui/webui/app_list/start_page_handler.cc   CHECK(args->GetString(0, &state_string));
args               53 chrome/browser/ui/webui/app_list/start_page_handler.h   void HandleInitialize(const base::ListValue* args);
args               54 chrome/browser/ui/webui/app_list/start_page_handler.h   void HandleLaunchApp(const base::ListValue* args);
args               55 chrome/browser/ui/webui/app_list/start_page_handler.h   void HandleSpeechResult(const base::ListValue* args);
args               56 chrome/browser/ui/webui/app_list/start_page_handler.h   void HandleSpeechSoundLevel(const base::ListValue* args);
args               57 chrome/browser/ui/webui/app_list/start_page_handler.h   void HandleSpeechRecognition(const base::ListValue* args);
args              272 chrome/browser/ui/webui/certificate_viewer_webui.cc     const base::ListValue* args) {
args              273 chrome/browser/ui/webui/certificate_viewer_webui.cc   int cert_index = GetCertificateIndex(args);
args              285 chrome/browser/ui/webui/certificate_viewer_webui.cc     const base::ListValue* args) {
args              286 chrome/browser/ui/webui/certificate_viewer_webui.cc   int cert_index = GetCertificateIndex(args);
args              434 chrome/browser/ui/webui/certificate_viewer_webui.cc     const base::ListValue* args) const {
args              437 chrome/browser/ui/webui/certificate_viewer_webui.cc   if (!(args->GetDouble(0, &val)))
args              117 chrome/browser/ui/webui/certificate_viewer_webui.h   void ExportCertificate(const base::ListValue* args);
args              124 chrome/browser/ui/webui/certificate_viewer_webui.h   void RequestCertificateFields(const base::ListValue* args);
args              128 chrome/browser/ui/webui/certificate_viewer_webui.h   int GetCertificateIndex(const base::ListValue* args) const;
args              240 chrome/browser/ui/webui/chromeos/charger_replacement_handler.cc     const base::ListValue* args) {
args              249 chrome/browser/ui/webui/chromeos/charger_replacement_handler.cc     const base::ListValue* args) {
args              258 chrome/browser/ui/webui/chromeos/charger_replacement_handler.cc     const base::ListValue* args) {
args              269 chrome/browser/ui/webui/chromeos/charger_replacement_handler.cc     const base::ListValue* args) {
args              280 chrome/browser/ui/webui/chromeos/charger_replacement_handler.cc     const base::ListValue* args) {
args              293 chrome/browser/ui/webui/chromeos/charger_replacement_handler.cc void ChargerReplacementHandler::ShowLink(const base::ListValue* args) {
args              294 chrome/browser/ui/webui/chromeos/charger_replacement_handler.cc   std::string url = base::UTF16ToUTF8(ExtractStringValue(args));
args               52 chrome/browser/ui/webui/chromeos/charger_replacement_handler.h   void ConfirmSafeCharger(const base::ListValue* args);
args               53 chrome/browser/ui/webui/chromeos/charger_replacement_handler.h   void ConfirmNotOrderNewCharger(const base::ListValue* args);
args               54 chrome/browser/ui/webui/chromeos/charger_replacement_handler.h   void ConfirmChargerOrderedOnline(const base::ListValue* args);
args               55 chrome/browser/ui/webui/chromeos/charger_replacement_handler.h   void ConfirmChargerOrderByPhone(const base::ListValue* args);
args               56 chrome/browser/ui/webui/chromeos/charger_replacement_handler.h   void ConfirmStillUseBadCharger(const base::ListValue* args);
args               57 chrome/browser/ui/webui/chromeos/charger_replacement_handler.h   void ShowLink(const base::ListValue* args);
args              109 chrome/browser/ui/webui/chromeos/choose_mobile_network_ui.cc   void HandleCancel(const base::ListValue* args);
args              110 chrome/browser/ui/webui/chromeos/choose_mobile_network_ui.cc   void HandleConnect(const base::ListValue* args);
args              111 chrome/browser/ui/webui/chromeos/choose_mobile_network_ui.cc   void HandlePageReady(const base::ListValue* args);
args              208 chrome/browser/ui/webui/chromeos/choose_mobile_network_ui.cc void ChooseMobileNetworkHandler::HandleCancel(const base::ListValue* args) {
args              210 chrome/browser/ui/webui/chromeos/choose_mobile_network_ui.cc   if (args->GetSize() != kConnectParamCount) {
args              224 chrome/browser/ui/webui/chromeos/choose_mobile_network_ui.cc void ChooseMobileNetworkHandler::HandleConnect(const base::ListValue* args) {
args              227 chrome/browser/ui/webui/chromeos/choose_mobile_network_ui.cc   if (args->GetSize() != kConnectParamCount ||
args              228 chrome/browser/ui/webui/chromeos/choose_mobile_network_ui.cc       !args->GetString(0, &network_id)) {
args              241 chrome/browser/ui/webui/chromeos/choose_mobile_network_ui.cc void ChooseMobileNetworkHandler::HandlePageReady(const base::ListValue* args) {
args              243 chrome/browser/ui/webui/chromeos/choose_mobile_network_ui.cc   if (args->GetSize() != kConnectParamCount) {
args               30 chrome/browser/ui/webui/chromeos/cryptohome_web_ui_handler.cc void CryptohomeWebUIHandler::OnPageLoaded(const base::ListValue* args) {
args               35 chrome/browser/ui/webui/chromeos/cryptohome_web_ui_handler.h   void OnPageLoaded(const base::ListValue* args);
args              232 chrome/browser/ui/webui/chromeos/drive_internals_ui.cc   void OnPageLoaded(const base::ListValue* args);
args              295 chrome/browser/ui/webui/chromeos/drive_internals_ui.cc   void OnPeriodicUpdate(const base::ListValue* args);
args              298 chrome/browser/ui/webui/chromeos/drive_internals_ui.cc   void ClearAccessToken(const base::ListValue* args);
args              299 chrome/browser/ui/webui/chromeos/drive_internals_ui.cc   void ClearRefreshToken(const base::ListValue* args);
args              300 chrome/browser/ui/webui/chromeos/drive_internals_ui.cc   void ResetDriveFileSystem(const base::ListValue* args);
args              301 chrome/browser/ui/webui/chromeos/drive_internals_ui.cc   void ListFileEntries(const base::ListValue* args);
args              421 chrome/browser/ui/webui/chromeos/drive_internals_ui.cc void DriveInternalsWebUIHandler::OnPageLoaded(const base::ListValue* args) {
args              556 chrome/browser/ui/webui/chromeos/drive_internals_ui.cc void DriveInternalsWebUIHandler::ClearAccessToken(const base::ListValue* args) {
args              565 chrome/browser/ui/webui/chromeos/drive_internals_ui.cc     const base::ListValue* args) {
args              574 chrome/browser/ui/webui/chromeos/drive_internals_ui.cc     const base::ListValue* args) {
args              593 chrome/browser/ui/webui/chromeos/drive_internals_ui.cc void DriveInternalsWebUIHandler::ListFileEntries(const base::ListValue* args) {
args              876 chrome/browser/ui/webui/chromeos/drive_internals_ui.cc void DriveInternalsWebUIHandler::OnPeriodicUpdate(const base::ListValue* args) {
args              101 chrome/browser/ui/webui/chromeos/first_run/first_run_handler.cc void FirstRunHandler::HandleInitialized(const base::ListValue* args) {
args              107 chrome/browser/ui/webui/chromeos/first_run/first_run_handler.cc void FirstRunHandler::HandleNextButtonClicked(const base::ListValue* args) {
args              109 chrome/browser/ui/webui/chromeos/first_run/first_run_handler.cc   CHECK(args->GetString(0, &step_name));
args              114 chrome/browser/ui/webui/chromeos/first_run/first_run_handler.cc void FirstRunHandler::HandleHelpButtonClicked(const base::ListValue* args) {
args              119 chrome/browser/ui/webui/chromeos/first_run/first_run_handler.cc void FirstRunHandler::HandleStepShown(const base::ListValue* args) {
args              121 chrome/browser/ui/webui/chromeos/first_run/first_run_handler.cc   CHECK(args->GetString(0, &step_name));
args              126 chrome/browser/ui/webui/chromeos/first_run/first_run_handler.cc void FirstRunHandler::HandleStepHidden(const base::ListValue* args) {
args              128 chrome/browser/ui/webui/chromeos/first_run/first_run_handler.cc   CHECK(args->GetString(0, &step_name));
args              133 chrome/browser/ui/webui/chromeos/first_run/first_run_handler.cc void FirstRunHandler::HandleFinalized(const base::ListValue* args) {
args               43 chrome/browser/ui/webui/chromeos/first_run/first_run_handler.h   void HandleInitialized(const base::ListValue* args);
args               44 chrome/browser/ui/webui/chromeos/first_run/first_run_handler.h   void HandleNextButtonClicked(const base::ListValue* args);
args               45 chrome/browser/ui/webui/chromeos/first_run/first_run_handler.h   void HandleHelpButtonClicked(const base::ListValue* args);
args               46 chrome/browser/ui/webui/chromeos/first_run/first_run_handler.h   void HandleStepShown(const base::ListValue* args);
args               47 chrome/browser/ui/webui/chromeos/first_run/first_run_handler.h   void HandleStepHidden(const base::ListValue* args);
args               48 chrome/browser/ui/webui/chromeos/first_run/first_run_handler.h   void HandleFinalized(const base::ListValue* args);
args              200 chrome/browser/ui/webui/chromeos/imageburner/imageburner_ui.cc   void HandleGetDevices(const base::ListValue* args) {
args              214 chrome/browser/ui/webui/chromeos/imageburner/imageburner_ui.cc   void HandleWebUIInitialized(const base::ListValue* args) {
args              219 chrome/browser/ui/webui/chromeos/imageburner/imageburner_ui.cc   void HandleCancelBurnImage(const base::ListValue* args) {
args              226 chrome/browser/ui/webui/chromeos/imageburner/imageburner_ui.cc   void HandleBurnImage(const base::ListValue* args) {
args              228 chrome/browser/ui/webui/chromeos/imageburner/imageburner_ui.cc     ExtractTargetedDevicePath(*args, 0, &target_device_path);
args              231 chrome/browser/ui/webui/chromeos/imageburner/imageburner_ui.cc     ExtractTargetedDevicePath(*args, 1, &target_file_path);
args              290 chrome/browser/ui/webui/chromeos/keyboard_overlay_ui.cc   void GetInputMethodId(const base::ListValue* args);
args              294 chrome/browser/ui/webui/chromeos/keyboard_overlay_ui.cc   void GetLabelMap(const base::ListValue* args);
args              297 chrome/browser/ui/webui/chromeos/keyboard_overlay_ui.cc   void OpenLearnMorePage(const base::ListValue* args);
args              328 chrome/browser/ui/webui/chromeos/keyboard_overlay_ui.cc void KeyboardOverlayHandler::GetInputMethodId(const base::ListValue* args) {
args              337 chrome/browser/ui/webui/chromeos/keyboard_overlay_ui.cc void KeyboardOverlayHandler::GetLabelMap(const base::ListValue* args) {
args              360 chrome/browser/ui/webui/chromeos/keyboard_overlay_ui.cc void KeyboardOverlayHandler::OpenLearnMorePage(const base::ListValue* args) {
args              154 chrome/browser/ui/webui/chromeos/login/base_screen_handler.h                       void (T::*method)(const base::ListValue* args)) {
args               66 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h inline bool GetArg(const base::ListValue* args, size_t index, T* out_value) {
args               68 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h   if (!args->Get(index, &value))
args               99 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h                              const base::ListValue* args) {
args              100 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h   DCHECK(args);
args              101 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h   DCHECK(args->empty());
args              107 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h                       const base::ListValue* args) {
args              108 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h   DCHECK(args);
args              109 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h   DCHECK_EQ(1u, args->GetSize());
args              111 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h   if (!GetArg(args, 0, &arg1)) {
args              120 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h                       const base::ListValue* args) {
args              121 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h   DCHECK(args);
args              122 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h   DCHECK_EQ(2u, args->GetSize());
args              125 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h   if (!GetArg(args, 0, &arg1) || !GetArg(args, 1, &arg2)) {
args              134 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h                       const base::ListValue* args) {
args              135 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h   DCHECK(args);
args              136 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h   DCHECK_EQ(3u, args->GetSize());
args              140 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h   if (!GetArg(args, 0, &arg1) ||
args              141 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h       !GetArg(args, 1, &arg2) ||
args              142 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h       !GetArg(args, 2, &arg3)) {
args              151 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h                       const base::ListValue* args) {
args              152 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h   DCHECK(args);
args              153 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h   DCHECK_EQ(4u, args->GetSize());
args              158 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h   if (!GetArg(args, 0, &arg1) ||
args              159 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h       !GetArg(args, 1, &arg2) ||
args              160 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h       !GetArg(args, 2, &arg3) ||
args              161 chrome/browser/ui/webui/chromeos/login/base_screen_handler_utils.h       !GetArg(args, 3, &arg4)) {
args              256 chrome/browser/ui/webui/chromeos/login/core_oobe_handler.cc     const base::ListValue* args) {
args              257 chrome/browser/ui/webui/chromeos/login/core_oobe_handler.cc   LoginScreenContext context(args);
args               92 chrome/browser/ui/webui/chromeos/login/core_oobe_handler.h   void HandleSkipToLoginForTesting(const base::ListValue* args);
args               56 chrome/browser/ui/webui/chromeos/login/inline_login_handler_chromeos.cc void InlineLoginHandlerChromeOS::CompleteLogin(const base::ListValue* args) {
args               25 chrome/browser/ui/webui/chromeos/login/inline_login_handler_chromeos.h   virtual void CompleteLogin(const base::ListValue* args) OVERRIDE;
args              125 chrome/browser/ui/webui/chromeos/login/kiosk_app_menu_handler.cc     const base::ListValue* args) {
args              131 chrome/browser/ui/webui/chromeos/login/kiosk_app_menu_handler.cc     const base::ListValue* args) {
args              139 chrome/browser/ui/webui/chromeos/login/kiosk_app_menu_handler.cc     const base::ListValue* args) {
args               38 chrome/browser/ui/webui/chromeos/login/kiosk_app_menu_handler.h   void HandleInitializeKioskApps(const base::ListValue* args);
args               39 chrome/browser/ui/webui/chromeos/login/kiosk_app_menu_handler.h   void HandleKioskAppsLoaded(const base::ListValue* args);
args               40 chrome/browser/ui/webui/chromeos/login/kiosk_app_menu_handler.h   void HandleCheckKioskAppLaunchError(const base::ListValue* args);
args              113 chrome/browser/ui/webui/chromeos/login/locally_managed_user_creation_screen_handler.h   void HandleRetryLocalManagedUserCreation(const base::ListValue* args);
args              271 chrome/browser/ui/webui/chromeos/login/signin_screen_handler.cc LoginScreenContext::LoginScreenContext(const base::ListValue* args) {
args              274 chrome/browser/ui/webui/chromeos/login/signin_screen_handler.cc   if (!args || args->GetSize() == 0)
args              277 chrome/browser/ui/webui/chromeos/login/signin_screen_handler.cc   if (args->GetString(0, &email))
args             1215 chrome/browser/ui/webui/chromeos/login/signin_screen_handler.cc void SigninScreenHandler::HandleOfflineLogin(const base::ListValue* args) {
args             1220 chrome/browser/ui/webui/chromeos/login/signin_screen_handler.cc   if (!args->GetString(0, &email_))
args             1248 chrome/browser/ui/webui/chromeos/login/signin_screen_handler.cc void SigninScreenHandler::HandleShowAddUser(const base::ListValue* args) {
args             1255 chrome/browser/ui/webui/chromeos/login/signin_screen_handler.cc   if (args)
args             1256 chrome/browser/ui/webui/chromeos/login/signin_screen_handler.cc     args->GetString(0, &email);
args               53 chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h   explicit LoginScreenContext(const base::ListValue* args);
args              349 chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h   void HandleOfflineLogin(const base::ListValue* args);
args              354 chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h   void HandleShowAddUser(const base::ListValue* args);
args              227 chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc   void HandleSetTransactionStatus(const base::ListValue* args);
args              228 chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc   void HandleStartActivation(const base::ListValue* args);
args              229 chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc   void HandlePaymentPortalLoad(const base::ListValue* args);
args              230 chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc   void HandleGetDeviceInfo(const base::ListValue* args);
args              444 chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc void MobileSetupHandler::HandleStartActivation(const base::ListValue* args) {
args              462 chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc     const base::ListValue* args) {
args              468 chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc   if (args->GetSize() != kSetTransactionStatusParamCount)
args              472 chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc   if (!args->GetString(0, &status))
args              479 chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc void MobileSetupHandler::HandlePaymentPortalLoad(const base::ListValue* args) {
args              485 chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc   if (args->GetSize() != kPaymentPortalLoadParamCount)
args              489 chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc   if (!args->GetString(0, &result))
args              496 chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc void MobileSetupHandler::HandleGetDeviceInfo(const base::ListValue* args) {
args              222 chrome/browser/ui/webui/chromeos/nfc_debug_ui.cc   void Initialize(const base::ListValue* args);
args              226 chrome/browser/ui/webui/chromeos/nfc_debug_ui.cc   void SetAdapterPower(const base::ListValue* args);
args              231 chrome/browser/ui/webui/chromeos/nfc_debug_ui.cc   void SetAdapterPolling(const base::ListValue* args);
args              236 chrome/browser/ui/webui/chromeos/nfc_debug_ui.cc   void SubmitRecordForm(const base::ListValue* args);
args              400 chrome/browser/ui/webui/chromeos/nfc_debug_ui.cc void NfcDebugMessageHandler::Initialize(const base::ListValue* args) {
args              414 chrome/browser/ui/webui/chromeos/nfc_debug_ui.cc void NfcDebugMessageHandler::SetAdapterPower(const base::ListValue* args) {
args              415 chrome/browser/ui/webui/chromeos/nfc_debug_ui.cc   DCHECK(1 == args->GetSize());
args              418 chrome/browser/ui/webui/chromeos/nfc_debug_ui.cc   args->GetBoolean(0, &powered);
args              431 chrome/browser/ui/webui/chromeos/nfc_debug_ui.cc void NfcDebugMessageHandler::SetAdapterPolling(const base::ListValue* args) {
args              432 chrome/browser/ui/webui/chromeos/nfc_debug_ui.cc   DCHECK(1 == args->GetSize());
args              435 chrome/browser/ui/webui/chromeos/nfc_debug_ui.cc   bool result = args->GetBoolean(0, &start);
args              457 chrome/browser/ui/webui/chromeos/nfc_debug_ui.cc void NfcDebugMessageHandler::SubmitRecordForm(const base::ListValue* args) {
args              458 chrome/browser/ui/webui/chromeos/nfc_debug_ui.cc   DCHECK(1 == args->GetSize());
args              461 chrome/browser/ui/webui/chromeos/nfc_debug_ui.cc   if (!args->GetDictionary(0, &record_data_const)) {
args              139 chrome/browser/ui/webui/chromeos/salsa_ui.cc void SalsaUI::SetPreferenceValue(const base::ListValue* args) {
args              142 chrome/browser/ui/webui/chromeos/salsa_ui.cc   if (!args->GetString(0, &pref_name) || !args->Get(1, &value))
args              166 chrome/browser/ui/webui/chromeos/salsa_ui.cc void SalsaUI::BackupPreferenceValue(const base::ListValue* args) {
args              168 chrome/browser/ui/webui/chromeos/salsa_ui.cc   if (!args->GetString(0, &pref_name))
args               33 chrome/browser/ui/webui/chromeos/salsa_ui.h   void SetPreferenceValue(const base::ListValue* args);
args               37 chrome/browser/ui/webui/chromeos/salsa_ui.h   void BackupPreferenceValue(const base::ListValue* args);
args              228 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc   void HandleCancel(const base::ListValue* args);
args              229 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc   void HandleChangePinCode(const base::ListValue* args);
args              230 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc   void HandleEnterPinCode(const base::ListValue* args);
args              231 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc   void HandleEnterPukCode(const base::ListValue* args);
args              232 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc   void HandleProceedToPukInput(const base::ListValue* args);
args              233 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc   void HandleSimStatusInitialize(const base::ListValue* args);
args              623 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc void SimUnlockHandler::HandleCancel(const base::ListValue* args) {
args              625 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc   if (args->GetSize() != kEnterCodeParamCount) {
args              634 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc void SimUnlockHandler::HandleChangePinCode(const base::ListValue* args) {
args              638 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc   if (args->GetSize() != kChangePinParamCount ||
args              639 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc       !args->GetString(0, &pin) ||
args              640 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc       !args->GetString(1, &new_pin)) {
args              655 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc void SimUnlockHandler::HandleEnterPinCode(const base::ListValue* args) {
args              658 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc   if (args->GetSize() != kEnterPinParamCount || !args->GetString(0, &pin)) {
args              665 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc void SimUnlockHandler::HandleEnterPukCode(const base::ListValue* args) {
args              669 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc   if (args->GetSize() != kEnterPukParamCount ||
args              670 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc       !args->GetString(0, &puk) ||
args              671 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc       !args->GetString(1, &new_pin)) {
args              679 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc void SimUnlockHandler::HandleProceedToPukInput(const base::ListValue* args) {
args              681 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc   if (args->GetSize() != kProceedToPukInputParamCount) {
args              690 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc void SimUnlockHandler::HandleSimStatusInitialize(const base::ListValue* args) {
args              693 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc   if (args->GetSize() != kSimStatusInitializeParamCount ||
args              694 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc       !args->GetDouble(0, &mode)) {
args               72 chrome/browser/ui/webui/chromeos/slow_ui.cc   void HandleDisable(const base::ListValue* args);
args               73 chrome/browser/ui/webui/chromeos/slow_ui.cc   void HandleEnable(const base::ListValue* args);
args               74 chrome/browser/ui/webui/chromeos/slow_ui.cc   void LoadComplete(const base::ListValue* args);
args              105 chrome/browser/ui/webui/chromeos/slow_ui.cc void SlowHandler::HandleDisable(const base::ListValue* args) {
args              110 chrome/browser/ui/webui/chromeos/slow_ui.cc void SlowHandler::HandleEnable(const base::ListValue* args) {
args              115 chrome/browser/ui/webui/chromeos/slow_ui.cc void SlowHandler::LoadComplete(const base::ListValue* args) {
args               72 chrome/browser/ui/webui/components_ui.cc   void HandleRequestComponentsData(const base::ListValue* args);
args               75 chrome/browser/ui/webui/components_ui.cc   void HandleCheckUpdate(const base::ListValue* args);
args               99 chrome/browser/ui/webui/components_ui.cc     const base::ListValue* args) {
args              107 chrome/browser/ui/webui/components_ui.cc void ComponentsDOMHandler::HandleCheckUpdate(const base::ListValue* args) {
args              108 chrome/browser/ui/webui/components_ui.cc   if (args->GetSize() != 1) {
args              114 chrome/browser/ui/webui/components_ui.cc   if (!args->GetString(0, &component_id)) {
args               88 chrome/browser/ui/webui/conflicts_ui.cc   void HandleRequestModuleList(const base::ListValue* args);
args              108 chrome/browser/ui/webui/conflicts_ui.cc void ConflictsDOMHandler::HandleRequestModuleList(const base::ListValue* args) {
args               78 chrome/browser/ui/webui/constrained_web_dialog_ui.cc void ConstrainedWebDialogUI::OnDialogCloseMessage(const base::ListValue* args) {
args               84 chrome/browser/ui/webui/constrained_web_dialog_ui.cc   if (!args->empty() && !args->GetString(0, &json_retval))
args               74 chrome/browser/ui/webui/constrained_web_dialog_ui.h   void OnDialogCloseMessage(const base::ListValue* args);
args               86 chrome/browser/ui/webui/crashes_ui.cc   void HandleRequestCrashes(const base::ListValue* args);
args               90 chrome/browser/ui/webui/crashes_ui.cc   void HandleRequestUploads(const base::ListValue* args);
args              125 chrome/browser/ui/webui/crashes_ui.cc void CrashesDOMHandler::HandleRequestCrashes(const base::ListValue* args) {
args              137 chrome/browser/ui/webui/crashes_ui.cc void CrashesDOMHandler::HandleRequestUploads(const base::ListValue* args) {
args              265 chrome/browser/ui/webui/downloads_dom_handler.cc void DownloadsDOMHandler::OnPageLoaded(const base::ListValue* args) {
args              358 chrome/browser/ui/webui/downloads_dom_handler.cc void DownloadsDOMHandler::HandleGetDownloads(const base::ListValue* args) {
args              360 chrome/browser/ui/webui/downloads_dom_handler.cc   search_terms_.reset((args && !args->empty()) ? args->DeepCopy() : NULL);
args              364 chrome/browser/ui/webui/downloads_dom_handler.cc void DownloadsDOMHandler::HandleOpenFile(const base::ListValue* args) {
args              366 chrome/browser/ui/webui/downloads_dom_handler.cc   content::DownloadItem* file = GetDownloadByValue(args);
args              371 chrome/browser/ui/webui/downloads_dom_handler.cc void DownloadsDOMHandler::HandleDrag(const base::ListValue* args) {
args              373 chrome/browser/ui/webui/downloads_dom_handler.cc   content::DownloadItem* file = GetDownloadByValue(args);
args              396 chrome/browser/ui/webui/downloads_dom_handler.cc void DownloadsDOMHandler::HandleSaveDangerous(const base::ListValue* args) {
args              398 chrome/browser/ui/webui/downloads_dom_handler.cc   content::DownloadItem* file = GetDownloadByValue(args);
args              403 chrome/browser/ui/webui/downloads_dom_handler.cc void DownloadsDOMHandler::HandleDiscardDangerous(const base::ListValue* args) {
args              405 chrome/browser/ui/webui/downloads_dom_handler.cc   content::DownloadItem* file = GetDownloadByValue(args);
args              410 chrome/browser/ui/webui/downloads_dom_handler.cc void DownloadsDOMHandler::HandleShow(const base::ListValue* args) {
args              412 chrome/browser/ui/webui/downloads_dom_handler.cc   content::DownloadItem* file = GetDownloadByValue(args);
args              417 chrome/browser/ui/webui/downloads_dom_handler.cc void DownloadsDOMHandler::HandlePause(const base::ListValue* args) {
args              419 chrome/browser/ui/webui/downloads_dom_handler.cc   content::DownloadItem* file = GetDownloadByValue(args);
args              424 chrome/browser/ui/webui/downloads_dom_handler.cc void DownloadsDOMHandler::HandleResume(const base::ListValue* args) {
args              426 chrome/browser/ui/webui/downloads_dom_handler.cc   content::DownloadItem* file = GetDownloadByValue(args);
args              431 chrome/browser/ui/webui/downloads_dom_handler.cc void DownloadsDOMHandler::HandleRemove(const base::ListValue* args) {
args              436 chrome/browser/ui/webui/downloads_dom_handler.cc   content::DownloadItem* file = GetDownloadByValue(args);
args              441 chrome/browser/ui/webui/downloads_dom_handler.cc void DownloadsDOMHandler::HandleCancel(const base::ListValue* args) {
args              443 chrome/browser/ui/webui/downloads_dom_handler.cc   content::DownloadItem* file = GetDownloadByValue(args);
args              448 chrome/browser/ui/webui/downloads_dom_handler.cc void DownloadsDOMHandler::HandleClearAll(const base::ListValue* args) {
args              469 chrome/browser/ui/webui/downloads_dom_handler.cc     const base::ListValue* args) {
args              561 chrome/browser/ui/webui/downloads_dom_handler.cc     const base::ListValue* args) {
args              563 chrome/browser/ui/webui/downloads_dom_handler.cc   if (!ExtractIntegerValue(args, &download_id))
args               52 chrome/browser/ui/webui/downloads_dom_handler.h   void OnPageLoaded(const base::ListValue* args);
args               55 chrome/browser/ui/webui/downloads_dom_handler.h   void HandleGetDownloads(const base::ListValue* args);
args               58 chrome/browser/ui/webui/downloads_dom_handler.h   void HandleOpenFile(const base::ListValue* args);
args               61 chrome/browser/ui/webui/downloads_dom_handler.h   void HandleDrag(const base::ListValue* args);
args               65 chrome/browser/ui/webui/downloads_dom_handler.h   void HandleSaveDangerous(const base::ListValue* args);
args               69 chrome/browser/ui/webui/downloads_dom_handler.h   void HandleDiscardDangerous(const base::ListValue* args);
args               72 chrome/browser/ui/webui/downloads_dom_handler.h   void HandleShow(const base::ListValue* args);
args               75 chrome/browser/ui/webui/downloads_dom_handler.h   void HandlePause(const base::ListValue* args);
args               78 chrome/browser/ui/webui/downloads_dom_handler.h   void HandleResume(const base::ListValue* args);
args               82 chrome/browser/ui/webui/downloads_dom_handler.h   void HandleRemove(const base::ListValue* args);
args               85 chrome/browser/ui/webui/downloads_dom_handler.h   void HandleCancel(const base::ListValue* args);
args               88 chrome/browser/ui/webui/downloads_dom_handler.h   void HandleClearAll(const base::ListValue* args);
args               92 chrome/browser/ui/webui/downloads_dom_handler.h   void HandleOpenDownloadsFolder(const base::ListValue* args);
args              131 chrome/browser/ui/webui/downloads_dom_handler.h   content::DownloadItem* GetDownloadByValue(const base::ListValue* args);
args              260 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.cc     const base::ListValue* args) {
args              266 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.cc void KioskAppsHandler::HandleGetKioskAppSettings(const base::ListValue* args) {
args              271 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.cc void KioskAppsHandler::HandleAddKioskApp(const base::ListValue* args) {
args              276 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.cc   CHECK(args->GetString(0, &input));
args              287 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.cc void KioskAppsHandler::HandleRemoveKioskApp(const base::ListValue* args) {
args              292 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.cc   CHECK(args->GetString(0, &app_id));
args              298 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.cc     const base::ListValue* args) {
args              303 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.cc   CHECK(args->GetString(0, &app_id));
args              309 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.cc     const base::ListValue* args) {
args              314 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.cc   CHECK(args->GetString(0, &app_id));
args              324 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.cc     const base::ListValue* args) {
args              329 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.cc   CHECK(args->GetBoolean(0, &disable_bailout_shortcut));
args               50 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.h   void HandleInitializeKioskAppSettings(const base::ListValue* args);
args               51 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.h   void HandleGetKioskAppSettings(const base::ListValue* args);
args               52 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.h   void HandleAddKioskApp(const base::ListValue* args);
args               53 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.h   void HandleRemoveKioskApp(const base::ListValue* args);
args               54 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.h   void HandleEnableKioskAutoLaunch(const base::ListValue* args);
args               55 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.h   void HandleDisableKioskAutoLaunch(const base::ListValue* args);
args               56 chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_handler.h   void HandleSetDisableBailoutShortcut(const base::ListValue* args);
args               84 chrome/browser/ui/webui/extensions/command_handler.cc void CommandHandler::HandleRequestExtensionsData(const base::ListValue* args) {
args               89 chrome/browser/ui/webui/extensions/command_handler.cc     const base::ListValue* args) {
args               93 chrome/browser/ui/webui/extensions/command_handler.cc   if (!args->GetString(0, &extension_id) ||
args               94 chrome/browser/ui/webui/extensions/command_handler.cc       !args->GetString(1, &command_name) ||
args               95 chrome/browser/ui/webui/extensions/command_handler.cc       !args->GetString(2, &keystroke)) {
args              108 chrome/browser/ui/webui/extensions/command_handler.cc     const base::ListValue* args) {
args              112 chrome/browser/ui/webui/extensions/command_handler.cc   if (!args->GetString(0, &extension_id) ||
args              113 chrome/browser/ui/webui/extensions/command_handler.cc       !args->GetString(1, &command_name) ||
args              114 chrome/browser/ui/webui/extensions/command_handler.cc       !args->GetBoolean(2, &global)) {
args              126 chrome/browser/ui/webui/extensions/command_handler.cc     const base::ListValue* args) {
args              128 chrome/browser/ui/webui/extensions/command_handler.cc   if (args->GetBoolean(0, &suspended)) {
args               57 chrome/browser/ui/webui/extensions/command_handler.h   void HandleRequestExtensionsData(const base::ListValue* args);
args               61 chrome/browser/ui/webui/extensions/command_handler.h   void HandleSetExtensionCommandShortcut(const base::ListValue* args);
args               65 chrome/browser/ui/webui/extensions/command_handler.h   void HandleSetCommandScope(const base::ListValue* args);
args               69 chrome/browser/ui/webui/extensions/command_handler.h   void HandleSetShortcutHandlingSuspended(const base::ListValue* args);
args               77 chrome/browser/ui/webui/extensions/extension_error_handler.cc     const base::ListValue* args) {
args               81 chrome/browser/ui/webui/extensions/extension_error_handler.cc   CHECK_EQ(1u, args->GetSize());
args               90 chrome/browser/ui/webui/extensions/extension_error_handler.cc   if (!args->GetDictionary(0, &dict)) {
args              108 chrome/browser/ui/webui/extensions/extension_error_handler.cc void ExtensionErrorHandler::HandleOpenDevTools(const base::ListValue* args) {
args              109 chrome/browser/ui/webui/extensions/extension_error_handler.cc   CHECK_EQ(1U, args->GetSize());
args              112 chrome/browser/ui/webui/extensions/extension_error_handler.cc   if (!args->GetDictionary(0, &dict)) {
args               46 chrome/browser/ui/webui/extensions/extension_error_handler.h   void HandleRequestFileSource(const base::ListValue* args);
args               52 chrome/browser/ui/webui/extensions/extension_error_handler.h   void HandleOpenDevTools(const base::ListValue* args);
args               68 chrome/browser/ui/webui/extensions/extension_error_ui_util.cc void HandleRequestFileSource(const base::DictionaryValue* args,
args               76 chrome/browser/ui/webui/extensions/extension_error_ui_util.cc   if (!args->GetString(kPathSuffixKey, &path_suffix_string) ||
args               77 chrome/browser/ui/webui/extensions/extension_error_ui_util.cc       !args->GetString(ExtensionError::kExtensionIdKey, &extension_id) ||
args               78 chrome/browser/ui/webui/extensions/extension_error_ui_util.cc       !args->GetString(ExtensionError::kMessageKey, &error_message)) {
args              110 chrome/browser/ui/webui/extensions/extension_error_ui_util.cc     if (!args->GetString(ManifestError::kManifestKeyKey, &manifest_key)) {
args              117 chrome/browser/ui/webui/extensions/extension_error_ui_util.cc     args->GetString(ManifestError::kManifestSpecificKey, &specific);
args              126 chrome/browser/ui/webui/extensions/extension_error_ui_util.cc     args->GetInteger(RuntimeError::kLineNumberKey, &line_number);
args              140 chrome/browser/ui/webui/extensions/extension_error_ui_util.cc void HandleOpenDevTools(const base::DictionaryValue* args) {
args              145 chrome/browser/ui/webui/extensions/extension_error_ui_util.cc   if (!args->GetInteger(RuntimeError::kRenderProcessIdKey,
args              147 chrome/browser/ui/webui/extensions/extension_error_ui_util.cc       !args->GetInteger(RuntimeError::kRenderViewIdKey, &render_view_id)) {
args              163 chrome/browser/ui/webui/extensions/extension_error_ui_util.cc   if (args->GetString(RuntimeError::kUrlKey, &url)) {
args              167 chrome/browser/ui/webui/extensions/extension_error_ui_util.cc     args->GetInteger(RuntimeError::kLineNumberKey, &line_number);
args              168 chrome/browser/ui/webui/extensions/extension_error_ui_util.cc     args->GetInteger(RuntimeError::kColumnNumberKey, &column_number);
args               25 chrome/browser/ui/webui/extensions/extension_error_ui_util.h void HandleRequestFileSource(const base::DictionaryValue* args,
args               31 chrome/browser/ui/webui/extensions/extension_error_ui_util.h void HandleOpenDevTools(const base::DictionaryValue* args);
args              763 chrome/browser/ui/webui/extensions/extension_settings_handler.cc     const base::ListValue* args) {
args              834 chrome/browser/ui/webui/extensions/extension_settings_handler.cc     const base::ListValue* args) {
args              846 chrome/browser/ui/webui/extensions/extension_settings_handler.cc     const base::ListValue* args) {
args              853 chrome/browser/ui/webui/extensions/extension_settings_handler.cc   CHECK_EQ(4U, args->GetSize());
args              854 chrome/browser/ui/webui/extensions/extension_settings_handler.cc   CHECK(args->GetString(0, &extension_id));
args              855 chrome/browser/ui/webui/extensions/extension_settings_handler.cc   CHECK(args->GetString(1, &render_process_id_str));
args              856 chrome/browser/ui/webui/extensions/extension_settings_handler.cc   CHECK(args->GetString(2, &render_view_id_str));
args              857 chrome/browser/ui/webui/extensions/extension_settings_handler.cc   CHECK(args->GetBoolean(3, &incognito));
args              884 chrome/browser/ui/webui/extensions/extension_settings_handler.cc     const base::ListValue* args) {
args              885 chrome/browser/ui/webui/extensions/extension_settings_handler.cc   CHECK_EQ(1U, args->GetSize());
args              887 chrome/browser/ui/webui/extensions/extension_settings_handler.cc   CHECK(args->GetString(0, &extension_id));
args              896 chrome/browser/ui/webui/extensions/extension_settings_handler.cc     const base::ListValue* args) {
args              897 chrome/browser/ui/webui/extensions/extension_settings_handler.cc   std::string extension_id = base::UTF16ToUTF8(ExtractStringValue(args));
args              907 chrome/browser/ui/webui/extensions/extension_settings_handler.cc     const base::ListValue* args) {
args              908 chrome/browser/ui/webui/extensions/extension_settings_handler.cc   CHECK_EQ(2U, args->GetSize());
args              910 chrome/browser/ui/webui/extensions/extension_settings_handler.cc   CHECK(args->GetString(0, &extension_id));
args              911 chrome/browser/ui/webui/extensions/extension_settings_handler.cc   CHECK(args->GetString(1, &enable_str));
args              951 chrome/browser/ui/webui/extensions/extension_settings_handler.cc     const base::ListValue* args) {
args              952 chrome/browser/ui/webui/extensions/extension_settings_handler.cc   CHECK_EQ(2U, args->GetSize());
args              954 chrome/browser/ui/webui/extensions/extension_settings_handler.cc   CHECK(args->GetString(0, &extension_id));
args              955 chrome/browser/ui/webui/extensions/extension_settings_handler.cc   CHECK(args->GetString(1, &enable_str));
args              980 chrome/browser/ui/webui/extensions/extension_settings_handler.cc     const base::ListValue* args) {
args              981 chrome/browser/ui/webui/extensions/extension_settings_handler.cc   CHECK_EQ(2U, args->GetSize());
args              983 chrome/browser/ui/webui/extensions/extension_settings_handler.cc   CHECK(args->GetString(0, &extension_id));
args              984 chrome/browser/ui/webui/extensions/extension_settings_handler.cc   CHECK(args->GetString(1, &allow_str));
args             1002 chrome/browser/ui/webui/extensions/extension_settings_handler.cc     const base::ListValue* args) {
args             1003 chrome/browser/ui/webui/extensions/extension_settings_handler.cc   CHECK_EQ(1U, args->GetSize());
args             1005 chrome/browser/ui/webui/extensions/extension_settings_handler.cc   CHECK(args->GetString(0, &extension_id));
args             1026 chrome/browser/ui/webui/extensions/extension_settings_handler.cc     const base::ListValue* args) {
args             1027 chrome/browser/ui/webui/extensions/extension_settings_handler.cc   const Extension* extension = GetActiveExtension(args);
args             1035 chrome/browser/ui/webui/extensions/extension_settings_handler.cc     const base::ListValue* args) {
args             1036 chrome/browser/ui/webui/extensions/extension_settings_handler.cc   std::string extension_id(base::UTF16ToUTF8(ExtractStringValue(args)));
args             1064 chrome/browser/ui/webui/extensions/extension_settings_handler.cc     const base::ListValue* args) {
args             1065 chrome/browser/ui/webui/extensions/extension_settings_handler.cc   const Extension* extension = GetActiveExtension(args);
args             1075 chrome/browser/ui/webui/extensions/extension_settings_handler.cc     const base::ListValue* args) {
args             1085 chrome/browser/ui/webui/extensions/extension_settings_handler.cc     const base::ListValue* args) {
args             1086 chrome/browser/ui/webui/extensions/extension_settings_handler.cc   DCHECK(args->empty());
args             1116 chrome/browser/ui/webui/extensions/extension_settings_handler.cc     const base::ListValue* args) {
args             1117 chrome/browser/ui/webui/extensions/extension_settings_handler.cc   std::string extension_id = base::UTF16ToUTF8(ExtractStringValue(args));
args              163 chrome/browser/ui/webui/extensions/extension_settings_handler.h   void HandleRequestExtensionsData(const base::ListValue* args);
args              166 chrome/browser/ui/webui/extensions/extension_settings_handler.h   void HandleToggleDeveloperMode(const base::ListValue* args);
args              169 chrome/browser/ui/webui/extensions/extension_settings_handler.h   void HandleInspectMessage(const base::ListValue* args);
args              172 chrome/browser/ui/webui/extensions/extension_settings_handler.h   void HandleLaunchMessage(const base::ListValue* args);
args              175 chrome/browser/ui/webui/extensions/extension_settings_handler.h   void HandleReloadMessage(const base::ListValue* args);
args              178 chrome/browser/ui/webui/extensions/extension_settings_handler.h   void HandleEnableMessage(const base::ListValue* args);
args              181 chrome/browser/ui/webui/extensions/extension_settings_handler.h   void HandleEnableIncognitoMessage(const base::ListValue* args);
args              184 chrome/browser/ui/webui/extensions/extension_settings_handler.h   void HandleAllowFileAccessMessage(const base::ListValue* args);
args              187 chrome/browser/ui/webui/extensions/extension_settings_handler.h   void HandleUninstallMessage(const base::ListValue* args);
args              190 chrome/browser/ui/webui/extensions/extension_settings_handler.h   void HandleOptionsMessage(const base::ListValue* args);
args              193 chrome/browser/ui/webui/extensions/extension_settings_handler.h   void HandlePermissionsMessage(const base::ListValue* args);
args              196 chrome/browser/ui/webui/extensions/extension_settings_handler.h   void HandleShowButtonMessage(const base::ListValue* args);
args              199 chrome/browser/ui/webui/extensions/extension_settings_handler.h   void HandleAutoUpdateMessage(const base::ListValue* args);
args              202 chrome/browser/ui/webui/extensions/extension_settings_handler.h   void HandleLoadUnpackedExtensionMessage(const base::ListValue* args);
args              209 chrome/browser/ui/webui/extensions/extension_settings_handler.h   const Extension* GetActiveExtension(const base::ListValue* args);
args               64 chrome/browser/ui/webui/extensions/install_extension_handler.cc     const base::ListValue* args) {
args               89 chrome/browser/ui/webui/extensions/install_extension_handler.cc     const base::ListValue* args) {
args               95 chrome/browser/ui/webui/extensions/install_extension_handler.cc     const base::ListValue* args) {
args              134 chrome/browser/ui/webui/extensions/install_extension_handler.cc     const base::ListValue* args) {
args               35 chrome/browser/ui/webui/extensions/install_extension_handler.h   void HandleStartDragMessage(const base::ListValue* args);
args               38 chrome/browser/ui/webui/extensions/install_extension_handler.h   void HandleStopDragMessage(const base::ListValue* args);
args               46 chrome/browser/ui/webui/extensions/install_extension_handler.h   void HandleInstallMessage(const base::ListValue* args);
args               50 chrome/browser/ui/webui/extensions/install_extension_handler.h   void HandleInstallDirectoryMessage(const base::ListValue* args);
args              107 chrome/browser/ui/webui/extensions/pack_extension_handler.cc void PackExtensionHandler::HandlePackMessage(const base::ListValue* args) {
args              108 chrome/browser/ui/webui/extensions/pack_extension_handler.cc   DCHECK_EQ(3U, args->GetSize());
args              113 chrome/browser/ui/webui/extensions/pack_extension_handler.cc   if (!args->GetString(0, &extension_path_str) ||
args              114 chrome/browser/ui/webui/extensions/pack_extension_handler.cc       !args->GetString(1, &private_key_path_str) ||
args              115 chrome/browser/ui/webui/extensions/pack_extension_handler.cc       !args->GetDouble(2, &flags_double)) {
args              152 chrome/browser/ui/webui/extensions/pack_extension_handler.cc     const base::ListValue* args) {
args              153 chrome/browser/ui/webui/extensions/pack_extension_handler.cc   DCHECK_EQ(2U, args->GetSize());
args              156 chrome/browser/ui/webui/extensions/pack_extension_handler.cc   if (!args->GetString(0, &select_type))
args              160 chrome/browser/ui/webui/extensions/pack_extension_handler.cc   if (!args->GetString(1, &operation))
args               52 chrome/browser/ui/webui/extensions/pack_extension_handler.h   void HandlePackMessage(const base::ListValue* args);
args               59 chrome/browser/ui/webui/extensions/pack_extension_handler.h   void HandleSelectFilePathMessage(const base::ListValue* args);
args              121 chrome/browser/ui/webui/flags_ui.cc   void HandleRequestFlagsExperiments(const base::ListValue* args);
args              124 chrome/browser/ui/webui/flags_ui.cc   void HandleEnableFlagsExperimentMessage(const base::ListValue* args);
args              127 chrome/browser/ui/webui/flags_ui.cc   void HandleRestartBrowser(const base::ListValue* args);
args              130 chrome/browser/ui/webui/flags_ui.cc   void HandleResetAllFlags(const base::ListValue* args);
args              165 chrome/browser/ui/webui/flags_ui.cc     const base::ListValue* args) {
args              201 chrome/browser/ui/webui/flags_ui.cc     const base::ListValue* args) {
args              203 chrome/browser/ui/webui/flags_ui.cc   DCHECK_EQ(2u, args->GetSize());
args              204 chrome/browser/ui/webui/flags_ui.cc   if (args->GetSize() != 2)
args              209 chrome/browser/ui/webui/flags_ui.cc   if (!args->GetString(0, &experiment_internal_name) ||
args              210 chrome/browser/ui/webui/flags_ui.cc       !args->GetString(1, &enable_str))
args              219 chrome/browser/ui/webui/flags_ui.cc void FlagsDOMHandler::HandleRestartBrowser(const base::ListValue* args) {
args              239 chrome/browser/ui/webui/flags_ui.cc void FlagsDOMHandler::HandleResetAllFlags(const base::ListValue* args) {
args              100 chrome/browser/ui/webui/flash_ui.cc   void HandleRequestFlashInfo(const base::ListValue* args);
args              199 chrome/browser/ui/webui/flash_ui.cc void FlashDOMHandler::HandleRequestFlashInfo(const base::ListValue* args) {
args               43 chrome/browser/ui/webui/gcm_internals_ui.cc   void RequestAllInfo(const base::ListValue* args);
args               47 chrome/browser/ui/webui/gcm_internals_ui.cc       const gcm::GCMClient::GCMStatistics& args) const;
args               95 chrome/browser/ui/webui/gcm_internals_ui.cc     const base::ListValue* args) {
args               54 chrome/browser/ui/webui/gesture_config_ui.cc void GestureConfigUI::UpdatePreferenceValue(const base::ListValue* args) {
args               57 chrome/browser/ui/webui/gesture_config_ui.cc   if (!args->GetString(0, &pref_name)) return;
args               74 chrome/browser/ui/webui/gesture_config_ui.cc void GestureConfigUI::ResetPreferenceValue(const base::ListValue* args) {
args               77 chrome/browser/ui/webui/gesture_config_ui.cc   if (!args->GetString(0, &pref_name)) return;
args               82 chrome/browser/ui/webui/gesture_config_ui.cc   UpdatePreferenceValue(args);
args               85 chrome/browser/ui/webui/gesture_config_ui.cc void GestureConfigUI::SetPreferenceValue(const base::ListValue* args) {
args               89 chrome/browser/ui/webui/gesture_config_ui.cc   if (!args->GetString(0, &pref_name) || !args->GetDouble(1, &value)) return;
args               30 chrome/browser/ui/webui/gesture_config_ui.h   void UpdatePreferenceValue(const base::ListValue* args);
args               37 chrome/browser/ui/webui/gesture_config_ui.h   void ResetPreferenceValue(const base::ListValue* args);
args               44 chrome/browser/ui/webui/gesture_config_ui.h   void SetPreferenceValue(const base::ListValue* args);
args              333 chrome/browser/ui/webui/help/help_handler.cc void HelpHandler::OnPageLoaded(const base::ListValue* args) {
args              387 chrome/browser/ui/webui/help/help_handler.cc void HelpHandler::PromoteUpdater(const base::ListValue* args) {
args              392 chrome/browser/ui/webui/help/help_handler.cc void HelpHandler::RelaunchNow(const base::ListValue* args) {
args              393 chrome/browser/ui/webui/help/help_handler.cc   DCHECK(args->empty());
args              397 chrome/browser/ui/webui/help/help_handler.cc void HelpHandler::OpenFeedbackDialog(const base::ListValue* args) {
args              398 chrome/browser/ui/webui/help/help_handler.cc   DCHECK(args->empty());
args              404 chrome/browser/ui/webui/help/help_handler.cc void HelpHandler::OpenHelpPage(const base::ListValue* args) {
args              405 chrome/browser/ui/webui/help/help_handler.cc   DCHECK(args->empty());
args              413 chrome/browser/ui/webui/help/help_handler.cc void HelpHandler::SetChannel(const base::ListValue* args) {
args              414 chrome/browser/ui/webui/help/help_handler.cc   DCHECK(args->GetSize() == 2);
args              423 chrome/browser/ui/webui/help/help_handler.cc   if (!args->GetString(0, &channel) ||
args              424 chrome/browser/ui/webui/help/help_handler.cc       !args->GetBoolean(1, &is_powerwash_allowed)) {
args              438 chrome/browser/ui/webui/help/help_handler.cc void HelpHandler::RelaunchAndPowerwash(const base::ListValue* args) {
args              439 chrome/browser/ui/webui/help/help_handler.cc   DCHECK(args->empty());
args               45 chrome/browser/ui/webui/help/help_handler.h   void OnPageLoaded(const base::ListValue* args);
args               49 chrome/browser/ui/webui/help/help_handler.h   void PromoteUpdater(const base::ListValue* args);
args               53 chrome/browser/ui/webui/help/help_handler.h   void RelaunchNow(const base::ListValue* args);
args               56 chrome/browser/ui/webui/help/help_handler.h   void OpenFeedbackDialog(const base::ListValue* args);
args               59 chrome/browser/ui/webui/help/help_handler.h   void OpenHelpPage(const base::ListValue* args);
args               63 chrome/browser/ui/webui/help/help_handler.h   void SetChannel(const base::ListValue* args);
args               66 chrome/browser/ui/webui/help/help_handler.h   void RelaunchAndPowerwash(const base::ListValue* args);
args              486 chrome/browser/ui/webui/history_ui.cc void BrowsingHistoryHandler::HandleQueryHistory(const base::ListValue* args) {
args              499 chrome/browser/ui/webui/history_ui.cc   base::string16 search_text = ExtractStringValue(args);
args              501 chrome/browser/ui/webui/history_ui.cc   if (!args->GetInteger(1, &offset)) {
args              506 chrome/browser/ui/webui/history_ui.cc   if (!args->GetInteger(2, &range)) {
args              517 chrome/browser/ui/webui/history_ui.cc   if (!args->GetDouble(3, &end_time)) {
args              524 chrome/browser/ui/webui/history_ui.cc   if (!ExtractIntegerValueAtIndex(args, 4, &options.max_count)) {
args              533 chrome/browser/ui/webui/history_ui.cc void BrowsingHistoryHandler::HandleRemoveVisits(const base::ListValue* args) {
args              551 chrome/browser/ui/webui/history_ui.cc   expire_list.reserve(args->GetSize());
args              554 chrome/browser/ui/webui/history_ui.cc   for (base::ListValue::const_iterator it = args->begin();
args              555 chrome/browser/ui/webui/history_ui.cc        it != args->end(); ++it) {
args              643 chrome/browser/ui/webui/history_ui.cc     const base::ListValue* args) {
args              658 chrome/browser/ui/webui/history_ui.cc void BrowsingHistoryHandler::HandleRemoveBookmark(const base::ListValue* args) {
args              659 chrome/browser/ui/webui/history_ui.cc   base::string16 url = ExtractStringValue(args);
args               99 chrome/browser/ui/webui/history_ui.h   void HandleQueryHistory(const base::ListValue* args);
args              102 chrome/browser/ui/webui/history_ui.h   void HandleRemoveVisits(const base::ListValue* args);
args              105 chrome/browser/ui/webui/history_ui.h   void HandleClearBrowsingData(const base::ListValue* args);
args              108 chrome/browser/ui/webui/history_ui.h   void HandleRemoveBookmark(const base::ListValue* args);
args               90 chrome/browser/ui/webui/identity_internals_ui.cc   void GetInfoForAllTokens(const base::ListValue* args);
args               95 chrome/browser/ui/webui/identity_internals_ui.cc   void RevokeToken(const base::ListValue* args);
args              221 chrome/browser/ui/webui/identity_internals_ui.cc     const base::ListValue* args) {
args              245 chrome/browser/ui/webui/identity_internals_ui.cc     const base::ListValue* args) {
args              248 chrome/browser/ui/webui/identity_internals_ui.cc   args->GetString(kRevokeTokenExtensionOffset, &extension_id);
args              249 chrome/browser/ui/webui/identity_internals_ui.cc   args->GetString(kRevokeTokenTokenOffset, &access_token);
args               58 chrome/browser/ui/webui/inspect_ui.cc   void HandleInitUICommand(const base::ListValue* args);
args               59 chrome/browser/ui/webui/inspect_ui.cc   void HandleInspectCommand(const base::ListValue* args);
args               60 chrome/browser/ui/webui/inspect_ui.cc   void HandleActivateCommand(const base::ListValue* args);
args               61 chrome/browser/ui/webui/inspect_ui.cc   void HandleCloseCommand(const base::ListValue* args);
args               62 chrome/browser/ui/webui/inspect_ui.cc   void HandleReloadCommand(const base::ListValue* args);
args               63 chrome/browser/ui/webui/inspect_ui.cc   void HandleOpenCommand(const base::ListValue* args);
args               65 chrome/browser/ui/webui/inspect_ui.cc                                 const base::ListValue* args);
args               66 chrome/browser/ui/webui/inspect_ui.cc   void HandlePortForwardingConfigCommand(const base::ListValue* args);
args              109 chrome/browser/ui/webui/inspect_ui.cc static bool ParseStringArgs(const base::ListValue* args,
args              113 chrome/browser/ui/webui/inspect_ui.cc   int arg_size = args->GetSize();
args              114 chrome/browser/ui/webui/inspect_ui.cc   return (!arg0 || (arg_size > 0 && args->GetString(0, arg0))) &&
args              115 chrome/browser/ui/webui/inspect_ui.cc          (!arg1 || (arg_size > 1 && args->GetString(1, arg1))) &&
args              116 chrome/browser/ui/webui/inspect_ui.cc          (!arg2 || (arg_size > 2 && args->GetString(2, arg2)));
args              119 chrome/browser/ui/webui/inspect_ui.cc void InspectMessageHandler::HandleInspectCommand(const base::ListValue* args) {
args              122 chrome/browser/ui/webui/inspect_ui.cc   if (ParseStringArgs(args, &source, &id))
args              126 chrome/browser/ui/webui/inspect_ui.cc void InspectMessageHandler::HandleActivateCommand(const base::ListValue* args) {
args              129 chrome/browser/ui/webui/inspect_ui.cc   if (ParseStringArgs(args, &source, &id))
args              133 chrome/browser/ui/webui/inspect_ui.cc void InspectMessageHandler::HandleCloseCommand(const base::ListValue* args) {
args              136 chrome/browser/ui/webui/inspect_ui.cc   if (ParseStringArgs(args, &source, &id))
args              140 chrome/browser/ui/webui/inspect_ui.cc void InspectMessageHandler::HandleReloadCommand(const base::ListValue* args) {
args              143 chrome/browser/ui/webui/inspect_ui.cc   if (ParseStringArgs(args, &source, &id))
args              147 chrome/browser/ui/webui/inspect_ui.cc void InspectMessageHandler::HandleOpenCommand(const base::ListValue* args) {
args              151 chrome/browser/ui/webui/inspect_ui.cc   if (ParseStringArgs(args, &source_id, &browser_id, &url))
args              157 chrome/browser/ui/webui/inspect_ui.cc     const base::ListValue* args) {
args              163 chrome/browser/ui/webui/inspect_ui.cc   if (args->GetSize() == 1 && args->GetBoolean(0, &enabled))
args              168 chrome/browser/ui/webui/inspect_ui.cc     const base::ListValue* args) {
args              174 chrome/browser/ui/webui/inspect_ui.cc   if (args->GetSize() == 1 && args->GetDictionary(0, &dict_src))
args               60 chrome/browser/ui/webui/instant_ui.cc   void GetPreferenceValue(const base::ListValue* args);
args               61 chrome/browser/ui/webui/instant_ui.cc   void SetPreferenceValue(const base::ListValue* args);
args               91 chrome/browser/ui/webui/instant_ui.cc void InstantUIMessageHandler::GetPreferenceValue(const base::ListValue* args) {
args               93 chrome/browser/ui/webui/instant_ui.cc   if (!args->GetString(0, &pref_name)) return;
args              104 chrome/browser/ui/webui/instant_ui.cc void InstantUIMessageHandler::SetPreferenceValue(const base::ListValue* args) {
args              106 chrome/browser/ui/webui/instant_ui.cc   if (!args->GetString(0, &pref_name)) return;
args              110 chrome/browser/ui/webui/instant_ui.cc     if (!args->GetString(1, &value))
args              117 chrome/browser/ui/webui/instant_ui.cc void InstantUIMessageHandler::GetDebugInfo(const base::ListValue* args) {
args              146 chrome/browser/ui/webui/instant_ui.cc void InstantUIMessageHandler::ClearDebugInfo(const base::ListValue* args) {
args               42 chrome/browser/ui/webui/invalidations_message_handler.cc void InvalidationsMessageHandler::UIReady(const base::ListValue* args) {
args               50 chrome/browser/ui/webui/invalidations_message_handler.cc   UpdateContent(args);
args               54 chrome/browser/ui/webui/invalidations_message_handler.cc     const base::ListValue* args) {
args               65 chrome/browser/ui/webui/invalidations_message_handler.cc void InvalidationsMessageHandler::UpdateContent(const base::ListValue* args) {
args               51 chrome/browser/ui/webui/invalidations_message_handler.h   void UpdateContent(const base::ListValue* args);
args               54 chrome/browser/ui/webui/invalidations_message_handler.h   void UIReady(const base::ListValue* args);
args               57 chrome/browser/ui/webui/invalidations_message_handler.h   void HandleRequestDetailedStatus(const base::ListValue* args);
args              127 chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.cc void LocalDiscoveryUIHandler::HandleStart(const base::ListValue* args) {
args              156 chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.cc void LocalDiscoveryUIHandler::HandleIsVisible(const base::ListValue* args) {
args              158 chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.cc   bool rv = args->GetBoolean(0, &is_visible);
args              164 chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.cc     const base::ListValue* args) {
args              167 chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.cc   bool rv = args->GetString(0, &device);
args              179 chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.cc     const base::ListValue* args) {
args              184 chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.cc     const base::ListValue* args) {
args              202 chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.cc     const base::ListValue* args) {
args              204 chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.cc   bool rv = args->GetString(0, &url);
args              219 chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.cc     const base::ListValue* args) {
args              540 chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.cc     const base::ListValue* args) {
args              553 chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.cc     const base::ListValue* args) {
args               91 chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.h   void HandleStart(const base::ListValue* args);
args               94 chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.h   void HandleIsVisible(const base::ListValue* args);
args               97 chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.h   void HandleRegisterDevice(const base::ListValue* args);
args              100 chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.h   void HandleCancelRegistration(const base::ListValue* args);
args              103 chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.h   void HandleRequestPrinterList(const base::ListValue* args);
args              107 chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.h   void HandleOpenCloudPrintURL(const base::ListValue* args);
args              110 chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.h   void HandleShowSyncUI(const base::ListValue* args);
args              152 chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.h   void ShowCloudPrintSetupDialog(const base::ListValue* args);
args              153 chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.h   void HandleDisableCloudPrintConnector(const base::ListValue* args);
args               96 chrome/browser/ui/webui/media/webrtc_logs_ui.cc   void HandleRequestWebRtcLogs(const base::ListValue* args);
args              138 chrome/browser/ui/webui/media/webrtc_logs_ui.cc     const base::ListValue* args) {
args              339 chrome/browser/ui/webui/memory_internals/memory_internals_proxy.cc     const std::string& function, const base::Value& args) {
args              342 chrome/browser/ui/webui/memory_internals/memory_internals_proxy.cc   std::vector<const base::Value*> args_vector(1, &args);
args               77 chrome/browser/ui/webui/memory_internals/memory_internals_proxy.h                                         const base::Value& args);
args               46 chrome/browser/ui/webui/metrics_handler.cc void MetricsHandler::HandleRecordAction(const base::ListValue* args) {
args               47 chrome/browser/ui/webui/metrics_handler.cc   std::string string_action = base::UTF16ToUTF8(ExtractStringValue(args));
args               51 chrome/browser/ui/webui/metrics_handler.cc void MetricsHandler::HandleRecordInHistogram(const base::ListValue* args) {
args               55 chrome/browser/ui/webui/metrics_handler.cc   if (!args->GetString(0, &histogram_name) ||
args               56 chrome/browser/ui/webui/metrics_handler.cc       !args->GetDouble(1, &value) ||
args               57 chrome/browser/ui/webui/metrics_handler.cc       !args->GetDouble(2, &boundary_value)) {
args               85 chrome/browser/ui/webui/metrics_handler.cc void MetricsHandler::HandleLogEventTime(const base::ListValue* args) {
args               86 chrome/browser/ui/webui/metrics_handler.cc   std::string event_name = base::UTF16ToUTF8(ExtractStringValue(args));
args              118 chrome/browser/ui/webui/metrics_handler.cc void MetricsHandler::HandleLogMouseover(const base::ListValue* args) {
args               35 chrome/browser/ui/webui/metrics_handler.h   void HandleRecordAction(const base::ListValue* args);
args               44 chrome/browser/ui/webui/metrics_handler.h   void HandleRecordInHistogram(const base::ListValue* args);
args               47 chrome/browser/ui/webui/metrics_handler.h   void HandleLogEventTime(const base::ListValue* args);
args               50 chrome/browser/ui/webui/metrics_handler.h   void HandleLogMouseover(const base::ListValue* args);
args               85 chrome/browser/ui/webui/nacl_ui.cc   void HandleRequestNaClInfo(const base::ListValue* args);
args              294 chrome/browser/ui/webui/nacl_ui.cc void NaClDomHandler::HandleRequestNaClInfo(const base::ListValue* args) {
args              408 chrome/browser/ui/webui/net_internals/net_internals_ui.cc     void RequestSystemLog(const base::ListValue* args);
args              893 chrome/browser/ui/webui/net_internals/net_internals_ui.cc     const base::ListValue* args) {
args              899 chrome/browser/ui/webui/net_internals/net_internals_ui.cc   args->GetString(0, &log_request.log_key);
args              900 chrome/browser/ui/webui/net_internals/net_internals_ui.cc   args->GetString(1, &log_request.cell_id);
args              145 chrome/browser/ui/webui/ntp/android/bookmarks_handler.cc void BookmarksHandler::HandleGetBookmarks(const base::ListValue* args) {
args              152 chrome/browser/ui/webui/ntp/android/bookmarks_handler.cc   const BookmarkNode* node = GetNodeByID(args);
args              159 chrome/browser/ui/webui/ntp/android/bookmarks_handler.cc void BookmarksHandler::HandleDeleteBookmark(const base::ListValue* args) {
args              164 chrome/browser/ui/webui/ntp/android/bookmarks_handler.cc   const BookmarkNode* node = GetNodeByID(args);
args              186 chrome/browser/ui/webui/ntp/android/bookmarks_handler.cc void BookmarksHandler::HandleEditBookmark(const base::ListValue* args) {
args              191 chrome/browser/ui/webui/ntp/android/bookmarks_handler.cc   const BookmarkNode* node = GetNodeByID(args);
args              436 chrome/browser/ui/webui/ntp/android/bookmarks_handler.cc     const base::ListValue* args) {
args              446 chrome/browser/ui/webui/ntp/android/bookmarks_handler.cc   const BookmarkNode* node = GetNodeByID(args);
args              489 chrome/browser/ui/webui/ntp/android/bookmarks_handler.cc     const base::ListValue* args) const {
args              496 chrome/browser/ui/webui/ntp/android/bookmarks_handler.cc   if (!args || args->empty())
args              500 chrome/browser/ui/webui/ntp/android/bookmarks_handler.cc   if (!args->GetString(0, &string_id) || string_id.empty()) {
args               61 chrome/browser/ui/webui/ntp/android/bookmarks_handler.h   void HandleGetBookmarks(const base::ListValue* args);
args               63 chrome/browser/ui/webui/ntp/android/bookmarks_handler.h   void HandleDeleteBookmark(const base::ListValue* args);
args               65 chrome/browser/ui/webui/ntp/android/bookmarks_handler.h   void HandleEditBookmark(const base::ListValue* args);
args               69 chrome/browser/ui/webui/ntp/android/bookmarks_handler.h   void HandleCreateHomeScreenBookmarkShortcut(const base::ListValue* args);
args              155 chrome/browser/ui/webui/ntp/android/bookmarks_handler.h   const BookmarkNode* GetNodeByID(const base::ListValue* args) const;
args               49 chrome/browser/ui/webui/ntp/android/context_menu_handler.cc     const base::ListValue* args) {
args              119 chrome/browser/ui/webui/ntp/android/context_menu_handler.cc void ContextMenuHandler::HandleOpenInNewTab(const base::ListValue* args) {
args              120 chrome/browser/ui/webui/ntp/android/context_menu_handler.cc   OpenUrl(args, NEW_FOREGROUND_TAB);
args              123 chrome/browser/ui/webui/ntp/android/context_menu_handler.cc void ContextMenuHandler::HandleOpenInIncognitoTab(const base::ListValue* args) {
args              124 chrome/browser/ui/webui/ntp/android/context_menu_handler.cc   OpenUrl(args, OFF_THE_RECORD);
args              127 chrome/browser/ui/webui/ntp/android/context_menu_handler.cc void ContextMenuHandler::OpenUrl(const base::ListValue* args,
args              129 chrome/browser/ui/webui/ntp/android/context_menu_handler.cc   base::string16 url = ExtractStringValue(args);
args               31 chrome/browser/ui/webui/ntp/android/context_menu_handler.h   void GetIncognitoDisabled(const base::ListValue* args);
args               34 chrome/browser/ui/webui/ntp/android/context_menu_handler.h   void HandleShowContextMenu(const base::ListValue* args);
args               40 chrome/browser/ui/webui/ntp/android/context_menu_handler.h   void HandleOpenInNewTab(const base::ListValue* args);
args               43 chrome/browser/ui/webui/ntp/android/context_menu_handler.h   void HandleOpenInIncognitoTab(const base::ListValue* args);
args               48 chrome/browser/ui/webui/ntp/android/context_menu_handler.h   void OpenUrl(const base::ListValue* args, WindowOpenDisposition disposition);
args               44 chrome/browser/ui/webui/ntp/android/navigation_handler.cc void NavigationHandler::HandleOpenedMostVisited(const base::ListValue* args) {
args               50 chrome/browser/ui/webui/ntp/android/navigation_handler.cc     const base::ListValue* args) {
args               55 chrome/browser/ui/webui/ntp/android/navigation_handler.cc void NavigationHandler::HandleOpenedBookmark(const base::ListValue* args) {
args               61 chrome/browser/ui/webui/ntp/android/navigation_handler.cc     const base::ListValue* args) {
args               27 chrome/browser/ui/webui/ntp/android/navigation_handler.h   void HandleOpenedMostVisited(const base::ListValue* args);
args               30 chrome/browser/ui/webui/ntp/android/navigation_handler.h   void HandleOpenedRecentlyClosed(const base::ListValue* args);
args               33 chrome/browser/ui/webui/ntp/android/navigation_handler.h   void HandleOpenedBookmark(const base::ListValue* args);
args               36 chrome/browser/ui/webui/ntp/android/navigation_handler.h   void HandleOpenedForeignSession(const base::ListValue* args);
args               32 chrome/browser/ui/webui/ntp/android/new_tab_page_ready_handler.cc     const base::ListValue* args) {
args               37 chrome/browser/ui/webui/ntp/android/new_tab_page_ready_handler.cc     const base::ListValue* args) {
args               45 chrome/browser/ui/webui/ntp/android/new_tab_page_ready_handler.cc     const base::ListValue* args) {
args               26 chrome/browser/ui/webui/ntp/android/new_tab_page_ready_handler.h   void HandleNewTabPageReady(const base::ListValue* args);
args               29 chrome/browser/ui/webui/ntp/android/new_tab_page_ready_handler.h   void HandleNewTabPageUnexpectedNavigation(const base::ListValue* args);
args               32 chrome/browser/ui/webui/ntp/android/new_tab_page_ready_handler.h   void HandleNewTabPageTitleLoaded(const base::ListValue* args);
args              148 chrome/browser/ui/webui/ntp/android/promo_handler.cc void PromoHandler::HandlePromoSendEmail(const base::ListValue* args) {
args              156 chrome/browser/ui/webui/ntp/android/promo_handler.cc   if (!args || args->GetSize() < 3) {
args              158 chrome/browser/ui/webui/ntp/android/promo_handler.cc              << (args ? args->GetSize() : 0);
args              162 chrome/browser/ui/webui/ntp/android/promo_handler.cc   args->GetString(0, &data_subject);
args              163 chrome/browser/ui/webui/ntp/android/promo_handler.cc   args->GetString(1, &data_body);
args              164 chrome/browser/ui/webui/ntp/android/promo_handler.cc   args->GetString(2, &data_inv);
args              211 chrome/browser/ui/webui/ntp/android/promo_handler.cc void PromoHandler::HandleRecordImpression(const base::ListValue* args) {
args              213 chrome/browser/ui/webui/ntp/android/promo_handler.cc   DCHECK(args && !args->empty());
args              214 chrome/browser/ui/webui/ntp/android/promo_handler.cc   RecordPromotionImpression(base::UTF16ToASCII(ExtractStringValue(args)));
args               42 chrome/browser/ui/webui/ntp/android/promo_handler.h   void HandlePromoSendEmail(const base::ListValue* args);
args               46 chrome/browser/ui/webui/ntp/android/promo_handler.h   void HandlePromoActionTriggered(const base::ListValue* args);
args               50 chrome/browser/ui/webui/ntp/android/promo_handler.h   void HandlePromoDisabled(const base::ListValue* args);
args               54 chrome/browser/ui/webui/ntp/android/promo_handler.h   void HandleGetPromotions(const base::ListValue* args);
args               58 chrome/browser/ui/webui/ntp/android/promo_handler.h   void HandleRecordImpression(const base::ListValue* args);
args               93 chrome/browser/ui/webui/ntp/app_launcher_handler.cc void NoOpCallback(const base::ListValue* args) {}
args              424 chrome/browser/ui/webui/ntp/app_launcher_handler.cc void AppLauncherHandler::HandleGetApps(const base::ListValue* args) {
args              495 chrome/browser/ui/webui/ntp/app_launcher_handler.cc void AppLauncherHandler::HandleLaunchApp(const base::ListValue* args) {
args              497 chrome/browser/ui/webui/ntp/app_launcher_handler.cc   CHECK(args->GetString(0, &extension_id));
args              499 chrome/browser/ui/webui/ntp/app_launcher_handler.cc   CHECK(args->GetDouble(1, &source));
args              501 chrome/browser/ui/webui/ntp/app_launcher_handler.cc   if (args->GetSize() > 2)
args              502 chrome/browser/ui/webui/ntp/app_launcher_handler.cc     CHECK(args->GetString(2, &url));
args              521 chrome/browser/ui/webui/ntp/app_launcher_handler.cc   WindowOpenDisposition disposition = args->GetSize() > 3 ?
args              522 chrome/browser/ui/webui/ntp/app_launcher_handler.cc         webui::GetDispositionFromClick(args, 3) : CURRENT_TAB;
args              563 chrome/browser/ui/webui/ntp/app_launcher_handler.cc void AppLauncherHandler::HandleSetLaunchType(const base::ListValue* args) {
args              566 chrome/browser/ui/webui/ntp/app_launcher_handler.cc   CHECK(args->GetString(0, &extension_id));
args              567 chrome/browser/ui/webui/ntp/app_launcher_handler.cc   CHECK(args->GetDouble(1, &launch_type));
args              583 chrome/browser/ui/webui/ntp/app_launcher_handler.cc void AppLauncherHandler::HandleUninstallApp(const base::ListValue* args) {
args              585 chrome/browser/ui/webui/ntp/app_launcher_handler.cc   CHECK(args->GetString(0, &extension_id));
args              604 chrome/browser/ui/webui/ntp/app_launcher_handler.cc   if (args->GetBoolean(1, &dont_confirm) && dont_confirm) {
args              612 chrome/browser/ui/webui/ntp/app_launcher_handler.cc void AppLauncherHandler::HandleCreateAppShortcut(const base::ListValue* args) {
args              614 chrome/browser/ui/webui/ntp/app_launcher_handler.cc   CHECK(args->GetString(0, &extension_id));
args              628 chrome/browser/ui/webui/ntp/app_launcher_handler.cc void AppLauncherHandler::HandleReorderApps(const base::ListValue* args) {
args              629 chrome/browser/ui/webui/ntp/app_launcher_handler.cc   CHECK(args->GetSize() == 2);
args              633 chrome/browser/ui/webui/ntp/app_launcher_handler.cc   CHECK(args->GetString(0, &dragged_app_id));
args              634 chrome/browser/ui/webui/ntp/app_launcher_handler.cc   CHECK(args->GetList(1, &app_order));
args              658 chrome/browser/ui/webui/ntp/app_launcher_handler.cc void AppLauncherHandler::HandleSetPageIndex(const base::ListValue* args) {
args              664 chrome/browser/ui/webui/ntp/app_launcher_handler.cc   CHECK(args->GetString(0, &extension_id));
args              665 chrome/browser/ui/webui/ntp/app_launcher_handler.cc   CHECK(args->GetDouble(1, &page_index));
args              674 chrome/browser/ui/webui/ntp/app_launcher_handler.cc void AppLauncherHandler::HandleSaveAppPageName(const base::ListValue* args) {
args              676 chrome/browser/ui/webui/ntp/app_launcher_handler.cc   CHECK(args->GetString(0, &name));
args              679 chrome/browser/ui/webui/ntp/app_launcher_handler.cc   CHECK(args->GetDouble(1, &page_index));
args              688 chrome/browser/ui/webui/ntp/app_launcher_handler.cc void AppLauncherHandler::HandleGenerateAppForLink(const base::ListValue* args) {
args              690 chrome/browser/ui/webui/ntp/app_launcher_handler.cc   CHECK(args->GetString(0, &url));
args              694 chrome/browser/ui/webui/ntp/app_launcher_handler.cc   CHECK(args->GetString(1, &title));
args              697 chrome/browser/ui/webui/ntp/app_launcher_handler.cc   CHECK(args->GetDouble(2, &page_index));
args              727 chrome/browser/ui/webui/ntp/app_launcher_handler.cc     const base::ListValue* args) {
args              735 chrome/browser/ui/webui/ntp/app_launcher_handler.cc void AppLauncherHandler::OnLearnMore(const base::ListValue* args) {
args               69 chrome/browser/ui/webui/ntp/app_launcher_handler.h   void HandleGetApps(const base::ListValue* args);
args               74 chrome/browser/ui/webui/ntp/app_launcher_handler.h   void HandleLaunchApp(const base::ListValue* args);
args               78 chrome/browser/ui/webui/ntp/app_launcher_handler.h   void HandleSetLaunchType(const base::ListValue* args);
args               83 chrome/browser/ui/webui/ntp/app_launcher_handler.h   void HandleUninstallApp(const base::ListValue* args);
args               87 chrome/browser/ui/webui/ntp/app_launcher_handler.h   void HandleCreateAppShortcut(const base::ListValue* args);
args               91 chrome/browser/ui/webui/ntp/app_launcher_handler.h   void HandleReorderApps(const base::ListValue* args);
args               95 chrome/browser/ui/webui/ntp/app_launcher_handler.h   void HandleSetPageIndex(const base::ListValue* args);
args               99 chrome/browser/ui/webui/ntp/app_launcher_handler.h   void HandleSaveAppPageName(const base::ListValue* args);
args              103 chrome/browser/ui/webui/ntp/app_launcher_handler.h   void HandleGenerateAppForLink(const base::ListValue* args);
args              106 chrome/browser/ui/webui/ntp/app_launcher_handler.h   void StopShowingAppLauncherPromo(const base::ListValue* args);
args              107 chrome/browser/ui/webui/ntp/app_launcher_handler.h   void OnLearnMore(const base::ListValue* args);
args               81 chrome/browser/ui/webui/ntp/core_app_launcher_handler.cc     const base::ListValue* args) {
args               83 chrome/browser/ui/webui/ntp/core_app_launcher_handler.cc   CHECK(args->GetString(0, &url));
args               85 chrome/browser/ui/webui/ntp/core_app_launcher_handler.cc   CHECK(args->GetDouble(1, &source));
args               52 chrome/browser/ui/webui/ntp/core_app_launcher_handler.h   void HandleRecordAppLaunchByUrl(const base::ListValue* args);
args               83 chrome/browser/ui/webui/ntp/favicon_webui_handler.cc     const base::ListValue* args) {
args               85 chrome/browser/ui/webui/ntp/favicon_webui_handler.cc   CHECK(args->GetString(0, &path));
args               92 chrome/browser/ui/webui/ntp/favicon_webui_handler.cc   CHECK(args->GetString(1, &dom_id));
args              143 chrome/browser/ui/webui/ntp/favicon_webui_handler.cc     const base::ListValue* args) {
args              145 chrome/browser/ui/webui/ntp/favicon_webui_handler.cc   CHECK(args->GetString(0, &extension_id));
args               34 chrome/browser/ui/webui/ntp/favicon_webui_handler.h   void HandleGetFaviconDominantColor(const base::ListValue* args);
args               37 chrome/browser/ui/webui/ntp/favicon_webui_handler.h   void HandleGetAppIconDominantColor(const base::ListValue* args);
args              231 chrome/browser/ui/webui/ntp/foreign_session_handler.cc     const base::ListValue* args) {
args              288 chrome/browser/ui/webui/ntp/foreign_session_handler.cc     const base::ListValue* args) {
args              289 chrome/browser/ui/webui/ntp/foreign_session_handler.cc   size_t num_args = args->GetSize();
args              296 chrome/browser/ui/webui/ntp/foreign_session_handler.cc     LOG(ERROR) << "openForeignSession called with " << args->GetSize()
args              303 chrome/browser/ui/webui/ntp/foreign_session_handler.cc   if (!args->GetString(0, &session_string_value)) {
args              311 chrome/browser/ui/webui/ntp/foreign_session_handler.cc   if (num_args >= 2 && (!args->GetString(1, &window_num_str) ||
args              320 chrome/browser/ui/webui/ntp/foreign_session_handler.cc   if (num_args >= 3 && (!args->GetString(2, &tab_id_str) ||
args              327 chrome/browser/ui/webui/ntp/foreign_session_handler.cc     WindowOpenDisposition disposition = webui::GetDispositionFromClick(args, 3);
args              336 chrome/browser/ui/webui/ntp/foreign_session_handler.cc     const base::ListValue* args) {
args              337 chrome/browser/ui/webui/ntp/foreign_session_handler.cc   if (args->GetSize() != 1U) {
args              344 chrome/browser/ui/webui/ntp/foreign_session_handler.cc   if (!args->GetString(0, &session_tag)) {
args              355 chrome/browser/ui/webui/ntp/foreign_session_handler.cc     const base::ListValue* args) {
args              356 chrome/browser/ui/webui/ntp/foreign_session_handler.cc   if (args->GetSize() != 2U) {
args              363 chrome/browser/ui/webui/ntp/foreign_session_handler.cc   if (!args->GetString(0, &session_tag)) {
args              369 chrome/browser/ui/webui/ntp/foreign_session_handler.cc   if (!args->GetBoolean(1, &is_collapsed)) {
args               73 chrome/browser/ui/webui/ntp/foreign_session_handler.h   void HandleOpenForeignSession(const base::ListValue* args);
args               78 chrome/browser/ui/webui/ntp/foreign_session_handler.h   void HandleGetForeignSessions(const base::ListValue* args);
args               84 chrome/browser/ui/webui/ntp/foreign_session_handler.h   void HandleDeleteForeignSession(const base::ListValue* args);
args               86 chrome/browser/ui/webui/ntp/foreign_session_handler.h   void HandleSetForeignSessionCollapsed(const base::ListValue* args);
args              135 chrome/browser/ui/webui/ntp/most_visited_handler.cc void MostVisitedHandler::HandleGetMostVisited(const base::ListValue* args) {
args              175 chrome/browser/ui/webui/ntp/most_visited_handler.cc void MostVisitedHandler::HandleBlacklistUrl(const base::ListValue* args) {
args              176 chrome/browser/ui/webui/ntp/most_visited_handler.cc   std::string url = base::UTF16ToUTF8(ExtractStringValue(args));
args              181 chrome/browser/ui/webui/ntp/most_visited_handler.cc     const base::ListValue* args) {
args              182 chrome/browser/ui/webui/ntp/most_visited_handler.cc   DCHECK(args->GetSize() != 0);
args              184 chrome/browser/ui/webui/ntp/most_visited_handler.cc   for (base::ListValue::const_iterator iter = args->begin();
args              185 chrome/browser/ui/webui/ntp/most_visited_handler.cc        iter != args->end(); ++iter) {
args              199 chrome/browser/ui/webui/ntp/most_visited_handler.cc void MostVisitedHandler::HandleClearBlacklist(const base::ListValue* args) {
args              207 chrome/browser/ui/webui/ntp/most_visited_handler.cc void MostVisitedHandler::HandleMostVisitedAction(const base::ListValue* args) {
args              208 chrome/browser/ui/webui/ntp/most_visited_handler.cc   DCHECK(args);
args              211 chrome/browser/ui/webui/ntp/most_visited_handler.cc   if (!args->GetDouble(0, &action_id))
args              222 chrome/browser/ui/webui/ntp/most_visited_handler.cc     const base::ListValue* args) {
args               47 chrome/browser/ui/webui/ntp/most_visited_handler.h   void HandleGetMostVisited(const base::ListValue* args);
args               50 chrome/browser/ui/webui/ntp/most_visited_handler.h   void HandleBlacklistUrl(const base::ListValue* args);
args               53 chrome/browser/ui/webui/ntp/most_visited_handler.h   void HandleRemoveUrlsFromBlacklist(const base::ListValue* args);
args               56 chrome/browser/ui/webui/ntp/most_visited_handler.h   void HandleClearBlacklist(const base::ListValue* args);
args               59 chrome/browser/ui/webui/ntp/most_visited_handler.h   void HandleMostVisitedAction(const base::ListValue* args);
args               62 chrome/browser/ui/webui/ntp/most_visited_handler.h   void HandleMostVisitedSelected(const base::ListValue* args);
args               80 chrome/browser/ui/webui/ntp/new_tab_page_handler.cc     const base::ListValue* args) {
args               88 chrome/browser/ui/webui/ntp/new_tab_page_handler.cc     const base::ListValue* args) {
args               98 chrome/browser/ui/webui/ntp/new_tab_page_handler.cc     const base::ListValue* args) {
args              104 chrome/browser/ui/webui/ntp/new_tab_page_handler.cc void NewTabPageHandler::HandleBubblePromoClosed(const base::ListValue* args) {
args              111 chrome/browser/ui/webui/ntp/new_tab_page_handler.cc void NewTabPageHandler::HandleBubblePromoViewed(const base::ListValue* args) {
args              119 chrome/browser/ui/webui/ntp/new_tab_page_handler.cc     const base::ListValue* args) {
args              125 chrome/browser/ui/webui/ntp/new_tab_page_handler.cc void NewTabPageHandler::HandlePageSelected(const base::ListValue* args) {
args              129 chrome/browser/ui/webui/ntp/new_tab_page_handler.cc   CHECK(args->GetDouble(0, &page_id_double));
args              133 chrome/browser/ui/webui/ntp/new_tab_page_handler.cc   CHECK(args->GetDouble(1, &index_double));
args              149 chrome/browser/ui/webui/ntp/new_tab_page_handler.cc void NewTabPageHandler::HandleLogTimeToClick(const base::ListValue* args) {
args              152 chrome/browser/ui/webui/ntp/new_tab_page_handler.cc   if (!args->GetString(0, &histogram_name) || !args->GetDouble(1, &duration)) {
args               41 chrome/browser/ui/webui/ntp/new_tab_page_handler.h   void HandleNotificationPromoClosed(const base::ListValue* args);
args               44 chrome/browser/ui/webui/ntp/new_tab_page_handler.h   void HandleNotificationPromoViewed(const base::ListValue* args);
args               47 chrome/browser/ui/webui/ntp/new_tab_page_handler.h   void HandleNotificationPromoLinkClicked(const base::ListValue* args);
args               50 chrome/browser/ui/webui/ntp/new_tab_page_handler.h   void HandleBubblePromoClosed(const base::ListValue* args);
args               53 chrome/browser/ui/webui/ntp/new_tab_page_handler.h   void HandleBubblePromoViewed(const base::ListValue* args);
args               56 chrome/browser/ui/webui/ntp/new_tab_page_handler.h   void HandleBubblePromoLinkClicked(const base::ListValue* args);
args               59 chrome/browser/ui/webui/ntp/new_tab_page_handler.h   void HandlePageSelected(const base::ListValue* args);
args               62 chrome/browser/ui/webui/ntp/new_tab_page_handler.h   void HandleLogTimeToClick(const base::ListValue* args);
args               80 chrome/browser/ui/webui/ntp/new_tab_page_sync_handler.cc void NewTabPageSyncHandler::HandleGetSyncMessage(const base::ListValue* args) {
args              127 chrome/browser/ui/webui/ntp/new_tab_page_sync_handler.cc void NewTabPageSyncHandler::HandleSyncLinkClicked(const base::ListValue* args) {
args               31 chrome/browser/ui/webui/ntp/new_tab_page_sync_handler.h   void HandleGetSyncMessage(const base::ListValue* args);
args               33 chrome/browser/ui/webui/ntp/new_tab_page_sync_handler.h   void HandleSyncLinkClicked(const base::ListValue* args);
args              124 chrome/browser/ui/webui/ntp/ntp_login_handler.cc void NTPLoginHandler::HandleInitializeSyncLogin(const base::ListValue* args) {
args              128 chrome/browser/ui/webui/ntp/ntp_login_handler.cc void NTPLoginHandler::HandleShowSyncLoginUI(const base::ListValue* args) {
args              149 chrome/browser/ui/webui/ntp/ntp_login_handler.cc   } else if (args->GetSize() == 4) {
args              155 chrome/browser/ui/webui/ntp/ntp_login_handler.cc     bool success = args->GetDouble(0, &x);
args              157 chrome/browser/ui/webui/ntp/ntp_login_handler.cc     success = args->GetDouble(1, &y);
args              159 chrome/browser/ui/webui/ntp/ntp_login_handler.cc     success = args->GetDouble(2, &width);
args              161 chrome/browser/ui/webui/ntp/ntp_login_handler.cc     success = args->GetDouble(3, &height);
args              183 chrome/browser/ui/webui/ntp/ntp_login_handler.cc void NTPLoginHandler::HandleLoginMessageSeen(const base::ListValue* args) {
args              192 chrome/browser/ui/webui/ntp/ntp_login_handler.cc void NTPLoginHandler::HandleShowAdvancedLoginUI(const base::ListValue* args) {
args               50 chrome/browser/ui/webui/ntp/ntp_login_handler.h   void HandleInitializeSyncLogin(const base::ListValue* args);
args               55 chrome/browser/ui/webui/ntp/ntp_login_handler.h   void HandleShowSyncLoginUI(const base::ListValue* args);
args               62 chrome/browser/ui/webui/ntp/ntp_login_handler.h   void HandleLoginMessageSeen(const base::ListValue* args);
args               67 chrome/browser/ui/webui/ntp/ntp_login_handler.h   void HandleShowAdvancedLoginUI(const base::ListValue* args);
args               72 chrome/browser/ui/webui/ntp/recently_closed_tabs_handler.cc void RecentlyClosedTabsHandler::HandleReopenTab(const base::ListValue* args) {
args               77 chrome/browser/ui/webui/ntp/recently_closed_tabs_handler.cc   CHECK(args->GetDouble(0, &session_to_restore));
args               97 chrome/browser/ui/webui/ntp/recently_closed_tabs_handler.cc   CHECK(args->GetDouble(1, &index));
args              111 chrome/browser/ui/webui/ntp/recently_closed_tabs_handler.cc   WindowOpenDisposition disposition = webui::GetDispositionFromClick(args, 2);
args              122 chrome/browser/ui/webui/ntp/recently_closed_tabs_handler.cc     const base::ListValue* args) {
args              129 chrome/browser/ui/webui/ntp/recently_closed_tabs_handler.cc     const base::ListValue* args) {
args               27 chrome/browser/ui/webui/ntp/recently_closed_tabs_handler.h   void HandleReopenTab(const base::ListValue* args);
args               30 chrome/browser/ui/webui/ntp/recently_closed_tabs_handler.h   void HandleGetRecentlyClosedTabs(const base::ListValue* args);
args               33 chrome/browser/ui/webui/ntp/recently_closed_tabs_handler.h   void HandleClearRecentlyClosed(const base::ListValue* args);
args              115 chrome/browser/ui/webui/ntp/suggestions_page_handler.cc void SuggestionsHandler::HandleGetSuggestions(const base::ListValue* args) {
args              143 chrome/browser/ui/webui/ntp/suggestions_page_handler.cc void SuggestionsHandler::HandleBlacklistURL(const base::ListValue* args) {
args              144 chrome/browser/ui/webui/ntp/suggestions_page_handler.cc   std::string url = base::UTF16ToUTF8(ExtractStringValue(args));
args              149 chrome/browser/ui/webui/ntp/suggestions_page_handler.cc     const base::ListValue* args) {
args              150 chrome/browser/ui/webui/ntp/suggestions_page_handler.cc   DCHECK_GT(args->GetSize(), 0U);
args              154 chrome/browser/ui/webui/ntp/suggestions_page_handler.cc void SuggestionsHandler::HandleClearBlacklist(const base::ListValue* args) {
args              159 chrome/browser/ui/webui/ntp/suggestions_page_handler.cc     const base::ListValue* args) {
args              160 chrome/browser/ui/webui/ntp/suggestions_page_handler.cc   DCHECK(args);
args              163 chrome/browser/ui/webui/ntp/suggestions_page_handler.cc   if (!args->GetDouble(0, &action_id))
args              174 chrome/browser/ui/webui/ntp/suggestions_page_handler.cc     const base::ListValue* args) {
args               46 chrome/browser/ui/webui/ntp/suggestions_page_handler.h   void HandleGetSuggestions(const base::ListValue* args);
args               49 chrome/browser/ui/webui/ntp/suggestions_page_handler.h   void HandleBlacklistURL(const base::ListValue* args);
args               52 chrome/browser/ui/webui/ntp/suggestions_page_handler.h   void HandleRemoveURLsFromBlacklist(const base::ListValue* args);
args               55 chrome/browser/ui/webui/ntp/suggestions_page_handler.h   void HandleClearBlacklist(const base::ListValue* args);
args               58 chrome/browser/ui/webui/ntp/suggestions_page_handler.h   void HandleSuggestedSitesAction(const base::ListValue* args);
args               61 chrome/browser/ui/webui/ntp/suggestions_page_handler.h   void HandleSuggestedSitesSelected(const base::ListValue* args);
args               44 chrome/browser/ui/webui/options/advanced_options_utils_win.cc   std::wstring args(shell32dll.value());
args               45 chrome/browser/ui/webui/options/advanced_options_utils_win.cc   args.append(L",Control_RunDLL ");
args               46 chrome/browser/ui/webui/options/advanced_options_utils_win.cc   args.append(inetcpl.value());
args               48 chrome/browser/ui/webui/options/advanced_options_utils_win.cc   ShellExecute(NULL, L"open", rundll32.value().c_str(), args.c_str(), NULL,
args              174 chrome/browser/ui/webui/options/autofill_options_handler.cc void ExtractPhoneNumberInformation(const base::ListValue* args,
args              181 chrome/browser/ui/webui/options/autofill_options_handler.cc   if (!args->GetDouble(0, &number)) {
args              187 chrome/browser/ui/webui/options/autofill_options_handler.cc   if (!args->GetList(1, phone_number_list)) {
args              192 chrome/browser/ui/webui/options/autofill_options_handler.cc   if (!args->GetString(2, country_code)) {
args              231 chrome/browser/ui/webui/options/autofill_options_handler.cc     const base::ListValue* args) {
args              235 chrome/browser/ui/webui/options/autofill_options_handler.cc   ExtractPhoneNumberInformation(args, &index, &extracted_list, &country_code);
args              420 chrome/browser/ui/webui/options/autofill_options_handler.cc void AutofillOptionsHandler::RemoveData(const base::ListValue* args) {
args              424 chrome/browser/ui/webui/options/autofill_options_handler.cc   if (!args->GetString(0, &guid)) {
args              432 chrome/browser/ui/webui/options/autofill_options_handler.cc void AutofillOptionsHandler::LoadAddressEditor(const base::ListValue* args) {
args              436 chrome/browser/ui/webui/options/autofill_options_handler.cc   if (!args->GetString(0, &guid)) {
args              475 chrome/browser/ui/webui/options/autofill_options_handler.cc void AutofillOptionsHandler::LoadCreditCardEditor(const base::ListValue* args) {
args              479 chrome/browser/ui/webui/options/autofill_options_handler.cc   if (!args->GetString(0, &guid)) {
args              513 chrome/browser/ui/webui/options/autofill_options_handler.cc void AutofillOptionsHandler::SetAddress(const base::ListValue* args) {
args              518 chrome/browser/ui/webui/options/autofill_options_handler.cc   if (!args->GetString(0, &guid)) {
args              528 chrome/browser/ui/webui/options/autofill_options_handler.cc   if (args->GetList(1, &list_value))
args              531 chrome/browser/ui/webui/options/autofill_options_handler.cc   if (args->GetString(2, &value))
args              534 chrome/browser/ui/webui/options/autofill_options_handler.cc   if (args->GetString(3, &value))
args              537 chrome/browser/ui/webui/options/autofill_options_handler.cc   if (args->GetString(4, &value))
args              540 chrome/browser/ui/webui/options/autofill_options_handler.cc   if (args->GetString(5, &value))
args              543 chrome/browser/ui/webui/options/autofill_options_handler.cc   if (args->GetString(6, &value))
args              546 chrome/browser/ui/webui/options/autofill_options_handler.cc   if (args->GetString(7, &value))
args              549 chrome/browser/ui/webui/options/autofill_options_handler.cc   if (args->GetString(8, &country_code))
args              553 chrome/browser/ui/webui/options/autofill_options_handler.cc   if (args->GetList(9, &list_value))
args              556 chrome/browser/ui/webui/options/autofill_options_handler.cc   if (args->GetList(10, &list_value))
args              567 chrome/browser/ui/webui/options/autofill_options_handler.cc void AutofillOptionsHandler::SetCreditCard(const base::ListValue* args) {
args              572 chrome/browser/ui/webui/options/autofill_options_handler.cc   if (!args->GetString(0, &guid)) {
args              580 chrome/browser/ui/webui/options/autofill_options_handler.cc   if (args->GetString(1, &value))
args              583 chrome/browser/ui/webui/options/autofill_options_handler.cc   if (args->GetString(2, &value))
args              586 chrome/browser/ui/webui/options/autofill_options_handler.cc   if (args->GetString(3, &value))
args              589 chrome/browser/ui/webui/options/autofill_options_handler.cc   if (args->GetString(4, &value))
args              600 chrome/browser/ui/webui/options/autofill_options_handler.cc void AutofillOptionsHandler::ValidatePhoneNumbers(const base::ListValue* args) {
args              604 chrome/browser/ui/webui/options/autofill_options_handler.cc   scoped_ptr<base::ListValue> list_value = ValidatePhoneArguments(args);
args               51 chrome/browser/ui/webui/options/autofill_options_handler.h   void RemoveData(const base::ListValue* args);
args               56 chrome/browser/ui/webui/options/autofill_options_handler.h   void LoadAddressEditor(const base::ListValue* args);
args               61 chrome/browser/ui/webui/options/autofill_options_handler.h   void LoadCreditCardEditor(const base::ListValue* args);
args               68 chrome/browser/ui/webui/options/autofill_options_handler.h   void SetAddress(const base::ListValue* args);
args               75 chrome/browser/ui/webui/options/autofill_options_handler.h   void SetCreditCard(const base::ListValue* args);
args               81 chrome/browser/ui/webui/options/autofill_options_handler.h   void ValidatePhoneNumbers(const base::ListValue* args);
args              954 chrome/browser/ui/webui/options/browser_options_handler.cc void BrowserOptionsHandler::BecomeDefaultBrowser(const base::ListValue* args) {
args             1061 chrome/browser/ui/webui/options/browser_options_handler.cc     const base::ListValue* args) {
args             1063 chrome/browser/ui/webui/options/browser_options_handler.cc   if (!ExtractIntegerValue(args, &selected_index)) {
args             1118 chrome/browser/ui/webui/options/browser_options_handler.cc void BrowserOptionsHandler::ToggleAutoLaunch(const base::ListValue* args) {
args             1124 chrome/browser/ui/webui/options/browser_options_handler.cc   CHECK_EQ(args->GetSize(), 1U);
args             1125 chrome/browser/ui/webui/options/browser_options_handler.cc   CHECK(args->GetBoolean(0, &enable));
args             1181 chrome/browser/ui/webui/options/browser_options_handler.cc void BrowserOptionsHandler::DeleteProfile(const base::ListValue* args) {
args             1182 chrome/browser/ui/webui/options/browser_options_handler.cc   DCHECK(args);
args             1184 chrome/browser/ui/webui/options/browser_options_handler.cc   if (!args->Get(0, &file_path_value))
args             1214 chrome/browser/ui/webui/options/browser_options_handler.cc void BrowserOptionsHandler::ThemesReset(const base::ListValue* args) {
args             1221 chrome/browser/ui/webui/options/browser_options_handler.cc void BrowserOptionsHandler::ThemesSetNative(const base::ListValue* args) {
args             1310 chrome/browser/ui/webui/options/browser_options_handler.cc     const base::ListValue* args) {
args             1365 chrome/browser/ui/webui/options/browser_options_handler.cc      const base::ListValue* args) {
args             1383 chrome/browser/ui/webui/options/browser_options_handler.cc void BrowserOptionsHandler::HandleAutoOpenButton(const base::ListValue* args) {
args             1391 chrome/browser/ui/webui/options/browser_options_handler.cc void BrowserOptionsHandler::HandleDefaultFontSize(const base::ListValue* args) {
args             1393 chrome/browser/ui/webui/options/browser_options_handler.cc   if (ExtractIntegerValue(args, &font_size)) {
args             1403 chrome/browser/ui/webui/options/browser_options_handler.cc     const base::ListValue* args) {
args             1405 chrome/browser/ui/webui/options/browser_options_handler.cc   if (ExtractDoubleValue(args, &zoom_factor)) {
args             1410 chrome/browser/ui/webui/options/browser_options_handler.cc void BrowserOptionsHandler::HandleRestartBrowser(const base::ListValue* args) {
args             1430 chrome/browser/ui/webui/options/browser_options_handler.cc     const base::ListValue* args) {
args             1436 chrome/browser/ui/webui/options/browser_options_handler.cc     const base::ListValue* args) {
args             1445 chrome/browser/ui/webui/options/browser_options_handler.cc     const base::ListValue* args) {
args             1455 chrome/browser/ui/webui/options/browser_options_handler.cc     const base::ListValue* args) {
args             1467 chrome/browser/ui/webui/options/browser_options_handler.cc     const base::ListValue* args) {
args             1477 chrome/browser/ui/webui/options/browser_options_handler.cc     const base::ListValue* args) {
args             1482 chrome/browser/ui/webui/options/browser_options_handler.cc     const base::ListValue* args) {
args             1490 chrome/browser/ui/webui/options/browser_options_handler.cc     const base::ListValue* args) {
args             1495 chrome/browser/ui/webui/options/browser_options_handler.cc     const base::ListValue* args) {
args             1497 chrome/browser/ui/webui/options/browser_options_handler.cc   args->GetBoolean(0, &enabled);
args             1503 chrome/browser/ui/webui/options/browser_options_handler.cc     const base::ListValue* args) {
args              118 chrome/browser/ui/webui/options/browser_options_handler.h   void OnPowerwashDialogShow(const base::ListValue* args);
args              127 chrome/browser/ui/webui/options/browser_options_handler.h   void BecomeDefaultBrowser(const base::ListValue* args);
args              130 chrome/browser/ui/webui/options/browser_options_handler.h   void SetDefaultSearchEngine(const base::ListValue* args);
args              133 chrome/browser/ui/webui/options/browser_options_handler.h   void ToggleAutoLaunch(const base::ListValue* args);
args              185 chrome/browser/ui/webui/options/browser_options_handler.h   void DeleteProfile(const base::ListValue* args);
args              188 chrome/browser/ui/webui/options/browser_options_handler.h   void ThemesReset(const base::ListValue* args);
args              190 chrome/browser/ui/webui/options/browser_options_handler.h   void ThemesSetNative(const base::ListValue* args);
args              209 chrome/browser/ui/webui/options/browser_options_handler.h   void HandleSelectDownloadLocation(const base::ListValue* args);
args              213 chrome/browser/ui/webui/options/browser_options_handler.h   void HandleAutoOpenButton(const base::ListValue* args);
args              218 chrome/browser/ui/webui/options/browser_options_handler.h   void HandleDefaultFontSize(const base::ListValue* args);
args              223 chrome/browser/ui/webui/options/browser_options_handler.h   void HandleDefaultZoomFactor(const base::ListValue* args);
args              227 chrome/browser/ui/webui/options/browser_options_handler.h   void HandleUseSSL3Checkbox(const base::ListValue* args);
args              231 chrome/browser/ui/webui/options/browser_options_handler.h   void HandleUseTLS1Checkbox(const base::ListValue* args);
args              234 chrome/browser/ui/webui/options/browser_options_handler.h   void HandleRestartBrowser(const base::ListValue* args);
args              237 chrome/browser/ui/webui/options/browser_options_handler.h   void HandleRequestProfilesInfo(const base::ListValue* args);
args              242 chrome/browser/ui/webui/options/browser_options_handler.h   void ShowNetworkProxySettings(const base::ListValue* args);
args              248 chrome/browser/ui/webui/options/browser_options_handler.h   void ShowManageSSLCertificates(const base::ListValue* args);
args              252 chrome/browser/ui/webui/options/browser_options_handler.h   void ShowCloudPrintDevicesPage(const base::ListValue* args);
args              265 chrome/browser/ui/webui/options/browser_options_handler.h   void HandleRequestHotwordAvailable(const base::ListValue* args);
args              268 chrome/browser/ui/webui/options/browser_options_handler.h   void HandleRequestHotwordSetupRetry(const base::ListValue* args);
args              271 chrome/browser/ui/webui/options/browser_options_handler.h   void HandleLaunchEasyUnlockSetup(const base::ListValue* args);
args              275 chrome/browser/ui/webui/options/browser_options_handler.h   void HandleOpenWallpaperManager(const base::ListValue* args);
args              280 chrome/browser/ui/webui/options/browser_options_handler.h   void VirtualKeyboardChangeCallback(const base::ListValue* args);
args              284 chrome/browser/ui/webui/options/browser_options_handler.h   void PerformFactoryResetRestart(const base::ListValue* args);
args               68 chrome/browser/ui/webui/options/certificate_manager_handler.cc bool CallbackArgsToBool(const base::ListValue* args, int index, bool* result) {
args               70 chrome/browser/ui/webui/options/certificate_manager_handler.cc   if (!args->GetString(index, &string_value))
args              156 chrome/browser/ui/webui/options/certificate_manager_handler.cc   net::X509Certificate* CallbackArgsToCert(const base::ListValue* args);
args              189 chrome/browser/ui/webui/options/certificate_manager_handler.cc     const base::ListValue* args) {
args              191 chrome/browser/ui/webui/options/certificate_manager_handler.cc   if (!args->GetString(0, &node_id))
args              541 chrome/browser/ui/webui/options/certificate_manager_handler.cc void CertificateManagerHandler::View(const base::ListValue* args) {
args              542 chrome/browser/ui/webui/options/certificate_manager_handler.cc   net::X509Certificate* cert = cert_id_map_->CallbackArgsToCert(args);
args              556 chrome/browser/ui/webui/options/certificate_manager_handler.cc void CertificateManagerHandler::GetCATrust(const base::ListValue* args) {
args              557 chrome/browser/ui/webui/options/certificate_manager_handler.cc   net::X509Certificate* cert = cert_id_map_->CallbackArgsToCert(args);
args              576 chrome/browser/ui/webui/options/certificate_manager_handler.cc void CertificateManagerHandler::EditCATrust(const base::ListValue* args) {
args              577 chrome/browser/ui/webui/options/certificate_manager_handler.cc   net::X509Certificate* cert = cert_id_map_->CallbackArgsToCert(args);
args              582 chrome/browser/ui/webui/options/certificate_manager_handler.cc   fail |= !CallbackArgsToBool(args, 1, &trust_ssl);
args              583 chrome/browser/ui/webui/options/certificate_manager_handler.cc   fail |= !CallbackArgsToBool(args, 2, &trust_email);
args              584 chrome/browser/ui/webui/options/certificate_manager_handler.cc   fail |= !CallbackArgsToBool(args, 3, &trust_obj_sign);
args              606 chrome/browser/ui/webui/options/certificate_manager_handler.cc void CertificateManagerHandler::EditServer(const base::ListValue* args) {
args              610 chrome/browser/ui/webui/options/certificate_manager_handler.cc void CertificateManagerHandler::ExportPersonal(const base::ListValue* args) {
args              611 chrome/browser/ui/webui/options/certificate_manager_handler.cc   net::X509Certificate* cert = cert_id_map_->CallbackArgsToCert(args);
args              632 chrome/browser/ui/webui/options/certificate_manager_handler.cc void CertificateManagerHandler::ExportAllPersonal(const base::ListValue* args) {
args              644 chrome/browser/ui/webui/options/certificate_manager_handler.cc     const base::ListValue* args) {
args              645 chrome/browser/ui/webui/options/certificate_manager_handler.cc   if (!args->GetString(0, &password_)) {
args              701 chrome/browser/ui/webui/options/certificate_manager_handler.cc     const base::ListValue* args) {
args              703 chrome/browser/ui/webui/options/certificate_manager_handler.cc   if (!args->GetBoolean(0, &use_hardware_backed_)) {
args              732 chrome/browser/ui/webui/options/certificate_manager_handler.cc     const base::ListValue* args) {
args              733 chrome/browser/ui/webui/options/certificate_manager_handler.cc   if (!args->GetString(0, &password_)) {
args              814 chrome/browser/ui/webui/options/certificate_manager_handler.cc     const base::ListValue* args) {
args              833 chrome/browser/ui/webui/options/certificate_manager_handler.cc void CertificateManagerHandler::ImportServer(const base::ListValue* args) {
args              893 chrome/browser/ui/webui/options/certificate_manager_handler.cc void CertificateManagerHandler::ImportCA(const base::ListValue* args) {
args              946 chrome/browser/ui/webui/options/certificate_manager_handler.cc     const base::ListValue* args) {
args              951 chrome/browser/ui/webui/options/certificate_manager_handler.cc   fail |= !CallbackArgsToBool(args, 0, &trust_ssl);
args              952 chrome/browser/ui/webui/options/certificate_manager_handler.cc   fail |= !CallbackArgsToBool(args, 1, &trust_email);
args              953 chrome/browser/ui/webui/options/certificate_manager_handler.cc   fail |= !CallbackArgsToBool(args, 2, &trust_obj_sign);
args              983 chrome/browser/ui/webui/options/certificate_manager_handler.cc void CertificateManagerHandler::Export(const base::ListValue* args) {
args              984 chrome/browser/ui/webui/options/certificate_manager_handler.cc   net::X509Certificate* cert = cert_id_map_->CallbackArgsToCert(args);
args              991 chrome/browser/ui/webui/options/certificate_manager_handler.cc void CertificateManagerHandler::Delete(const base::ListValue* args) {
args              992 chrome/browser/ui/webui/options/certificate_manager_handler.cc   net::X509Certificate* cert = cert_id_map_->CallbackArgsToCert(args);
args             1021 chrome/browser/ui/webui/options/certificate_manager_handler.cc void CertificateManagerHandler::Populate(const base::ListValue* args) {
args             1108 chrome/browser/ui/webui/options/certificate_manager_handler.cc     base::ListValue args;
args             1109 chrome/browser/ui/webui/options/certificate_manager_handler.cc     args.Append(new base::StringValue(tree_name));
args             1110 chrome/browser/ui/webui/options/certificate_manager_handler.cc     args.Append(nodes);
args             1111 chrome/browser/ui/webui/options/certificate_manager_handler.cc     web_ui()->CallJavascriptFunction("CertificateManager.onPopulateTree", args);
args             1117 chrome/browser/ui/webui/options/certificate_manager_handler.cc   ScopedVector<const base::Value> args;
args             1118 chrome/browser/ui/webui/options/certificate_manager_handler.cc   args.push_back(new base::StringValue(title));
args             1119 chrome/browser/ui/webui/options/certificate_manager_handler.cc   args.push_back(new base::StringValue(error));
args             1120 chrome/browser/ui/webui/options/certificate_manager_handler.cc   args.push_back(new base::StringValue(l10n_util::GetStringUTF8(IDS_OK)));
args             1121 chrome/browser/ui/webui/options/certificate_manager_handler.cc   args.push_back(base::Value::CreateNullValue());  // cancelTitle
args             1122 chrome/browser/ui/webui/options/certificate_manager_handler.cc   args.push_back(base::Value::CreateNullValue());  // okCallback
args             1123 chrome/browser/ui/webui/options/certificate_manager_handler.cc   args.push_back(base::Value::CreateNullValue());  // cancelCallback
args             1124 chrome/browser/ui/webui/options/certificate_manager_handler.cc   web_ui()->CallJavascriptFunction("AlertOverlay.show", args.get());
args               49 chrome/browser/ui/webui/options/certificate_manager_handler.h   void View(const base::ListValue* args);
args               52 chrome/browser/ui/webui/options/certificate_manager_handler.h   void EditServer(const base::ListValue* args);
args               58 chrome/browser/ui/webui/options/certificate_manager_handler.h   void GetCATrust(const base::ListValue* args);
args               59 chrome/browser/ui/webui/options/certificate_manager_handler.h   void EditCATrust(const base::ListValue* args);
args               62 chrome/browser/ui/webui/options/certificate_manager_handler.h   void CancelImportExportProcess(const base::ListValue* args);
args               76 chrome/browser/ui/webui/options/certificate_manager_handler.h   void ExportPersonal(const base::ListValue* args);
args               77 chrome/browser/ui/webui/options/certificate_manager_handler.h   void ExportAllPersonal(const base::ListValue* args);
args               79 chrome/browser/ui/webui/options/certificate_manager_handler.h   void ExportPersonalPasswordSelected(const base::ListValue* args);
args               97 chrome/browser/ui/webui/options/certificate_manager_handler.h   void StartImportPersonal(const base::ListValue* args);
args               99 chrome/browser/ui/webui/options/certificate_manager_handler.h   void ImportPersonalPasswordSelected(const base::ListValue* args);
args              109 chrome/browser/ui/webui/options/certificate_manager_handler.h   void ImportServer(const base::ListValue* args);
args              121 chrome/browser/ui/webui/options/certificate_manager_handler.h   void ImportCA(const base::ListValue* args);
args              124 chrome/browser/ui/webui/options/certificate_manager_handler.h   void ImportCATrustSelected(const base::ListValue* args);
args              127 chrome/browser/ui/webui/options/certificate_manager_handler.h   void Export(const base::ListValue* args);
args              130 chrome/browser/ui/webui/options/certificate_manager_handler.h   void Delete(const base::ListValue* args);
args              138 chrome/browser/ui/webui/options/certificate_manager_handler.h   void Populate(const base::ListValue* args);
args               95 chrome/browser/ui/webui/options/chromeos/accounts_options_handler.cc void AccountsOptionsHandler::HandleWhitelistUser(const base::ListValue* args) {
args               98 chrome/browser/ui/webui/options/chromeos/accounts_options_handler.cc   if (!args->GetString(0, &typed_email) ||
args               99 chrome/browser/ui/webui/options/chromeos/accounts_options_handler.cc       !args->GetString(1, &name)) {
args              107 chrome/browser/ui/webui/options/chromeos/accounts_options_handler.cc     const base::ListValue* args) {
args              109 chrome/browser/ui/webui/options/chromeos/accounts_options_handler.cc   if (!args->GetString(0, &email)) {
args              119 chrome/browser/ui/webui/options/chromeos/accounts_options_handler.cc     const base::ListValue* args) {
args              120 chrome/browser/ui/webui/options/chromeos/accounts_options_handler.cc   DCHECK(args && args->empty());
args               29 chrome/browser/ui/webui/options/chromeos/accounts_options_handler.h   void HandleWhitelistUser(const base::ListValue* args);
args               30 chrome/browser/ui/webui/options/chromeos/accounts_options_handler.h   void HandleUnwhitelistUser(const base::ListValue* args);
args               33 chrome/browser/ui/webui/options/chromeos/accounts_options_handler.h   void HandleWhitelistExistingUsers(const base::ListValue* args);
args              232 chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc     const base::ListValue* args) {
args              234 chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc   args->GetBoolean(0, &bluetooth_enabled);
args              248 chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc     const base::ListValue* args) {
args              282 chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc     const base::ListValue* args) {
args              284 chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc   args->GetString(kUpdateDeviceAddressIndex, &address);
args              291 chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc   args->GetString(kUpdateDeviceCommandIndex, &command);
args              294 chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc     int size = args->GetSize();
args              298 chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc       args->GetString(kUpdateDeviceAuthTokenIndex, &auth_token);
args              433 chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc     const base::ListValue* args) {
args              451 chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc     const base::ListValue* args) {
args              194 chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.h   void EnableChangeCallback(const base::ListValue* args);
args              199 chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.h   void FindDevicesCallback(const base::ListValue* args);
args              206 chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.h   void UpdateDeviceCallback(const base::ListValue* args);
args              211 chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.h   void StopDiscoveryCallback(const base::ListValue* args);
args              216 chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.h   void GetPairedDevicesCallback(const base::ListValue* args);
args              183 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.cc     const base::ListValue* args) {
args              184 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.cc   DCHECK(args && args->empty());
args              210 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.cc     const base::ListValue* args) {
args              211 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.cc   DCHECK(args->empty());
args              216 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.cc     const base::ListValue* args) {
args              217 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.cc   DCHECK(args->empty());
args              222 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.cc     const base::ListValue* args) {
args              225 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.cc   if (!args || args->GetSize() != 1 || !args->GetString(0, &image_url))
args              247 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.cc     const base::ListValue* args) {
args              248 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.cc   DCHECK(args && args->empty());
args              252 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.cc void ChangePictureOptionsHandler::HandlePageShown(const base::ListValue* args) {
args              253 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.cc   DCHECK(args && args->empty());
args              260 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.cc     const base::ListValue* args) {
args              325 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.cc     const base::ListValue* args) {
args              328 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.cc   if (!args ||
args              329 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.cc       args->GetSize() != 2 ||
args              330 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.cc       !args->GetString(0, &image_url) ||
args              331 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.cc       !args->GetString(1, &image_type)) {
args               73 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.h   void HandleChooseFile(const base::ListValue* args);
args               76 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.h   void HandleTakePhoto(const base::ListValue* args);
args               79 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.h   void HandlePhotoTaken(const base::ListValue* args);
args               82 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.h   void HandleDiscardPhoto(const base::ListValue* args);
args               85 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.h   void HandleGetAvailableImages(const base::ListValue* args);
args               88 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.h   void HandlePageInitialized(const base::ListValue* args);
args               91 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.h   void HandlePageShown(const base::ListValue* args);
args               94 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.h   void HandlePageHidden(const base::ListValue* args);
args               97 chrome/browser/ui/webui/options/chromeos/change_picture_options_handler.h   void HandleSelectImage(const base::ListValue* args);
args              306 chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.cc     const base::ListValue* args) {
args              308 chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.cc   if (args->GetSize() != 1 ||
args              309 chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.cc       !args->GetString(0, &service_path)) {
args               48 chrome/browser/ui/webui/options/chromeos/core_chromeos_options_handler.h   void SelectNetworkCallback(const base::ListValue* args);
args              404 chrome/browser/ui/webui/options/chromeos/cros_language_options_handler.cc void CrosLanguageOptionsHandler::RestartCallback(const base::ListValue* args) {
args              410 chrome/browser/ui/webui/options/chromeos/cros_language_options_handler.cc     const base::ListValue* args) {
args              412 chrome/browser/ui/webui/options/chromeos/cros_language_options_handler.cc       base::UTF16ToASCII(ExtractStringValue(args));
args              419 chrome/browser/ui/webui/options/chromeos/cros_language_options_handler.cc     const base::ListValue* args) {
args              421 chrome/browser/ui/webui/options/chromeos/cros_language_options_handler.cc       base::UTF16ToASCII(ExtractStringValue(args));
args              428 chrome/browser/ui/webui/options/chromeos/cros_language_options_handler.cc     const base::ListValue* args) {
args              430 chrome/browser/ui/webui/options/chromeos/cros_language_options_handler.cc       base::UTF16ToASCII(ExtractStringValue(args));
args               83 chrome/browser/ui/webui/options/chromeos/cros_language_options_handler.h   void RestartCallback(const base::ListValue* args);
args               87 chrome/browser/ui/webui/options/chromeos/cros_language_options_handler.h   void InputMethodDisableCallback(const base::ListValue* args);
args               91 chrome/browser/ui/webui/options/chromeos/cros_language_options_handler.h   void InputMethodEnableCallback(const base::ListValue* args);
args               95 chrome/browser/ui/webui/options/chromeos/cros_language_options_handler.h   void InputMethodOptionsOpenCallback(const base::ListValue* args);
args               40 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc int64 GetDisplayId(const base::ListValue* args) {
args               43 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc   if (!args->GetString(0, &id_value)) {
args              322 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc void DisplayOptionsHandler::HandleMirroring(const base::ListValue* args) {
args              323 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc   DCHECK(!args->empty());
args              327 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc   args->GetBoolean(0, &is_mirroring);
args              335 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc void DisplayOptionsHandler::HandleSetPrimary(const base::ListValue* args) {
args              336 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc   DCHECK(!args->empty());
args              337 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc   int64 display_id = GetDisplayId(args);
args              346 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc void DisplayOptionsHandler::HandleDisplayLayout(const base::ListValue* args) {
args              349 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc   if (!args->GetDouble(0, &layout) || !args->GetDouble(1, &offset)) {
args              365 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc void DisplayOptionsHandler::HandleSetUIScale(const base::ListValue* args) {
args              366 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc   DCHECK(!args->empty());
args              368 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc   int64 display_id = GetDisplayId(args);
args              373 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc   if (!args->GetDouble(1, &ui_scale) || ui_scale == 0.0f) {
args              381 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc void DisplayOptionsHandler::HandleSetResolution(const base::ListValue* args) {
args              382 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc   DCHECK(!args->empty());
args              383 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc   int64 display_id = GetDisplayId(args);
args              391 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc   if (!args->GetDouble(1, &width) || width == 0.0f) {
args              395 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc   if (!args->GetDouble(2, &height) || height == 0.0f) {
args              432 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc void DisplayOptionsHandler::HandleSetOrientation(const base::ListValue* args) {
args              433 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc   DCHECK(!args->empty());
args              435 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc   int64 display_id = GetDisplayId(args);
args              441 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc   if (!args->GetString(1, &rotation_value)) {
args              459 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc void DisplayOptionsHandler::HandleSetColorProfile(const base::ListValue* args) {
args              460 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc   DCHECK(!args->empty());
args              461 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc   int64 display_id = GetDisplayId(args);
args              466 chrome/browser/ui/webui/options/chromeos/display_options_handler.cc   if (!args->GetString(1, &profile_value)) {
args               58 chrome/browser/ui/webui/options/chromeos/display_options_handler.h   void HandleMirroring(const base::ListValue* args);
args               59 chrome/browser/ui/webui/options/chromeos/display_options_handler.h   void HandleSetPrimary(const base::ListValue* args);
args               60 chrome/browser/ui/webui/options/chromeos/display_options_handler.h   void HandleDisplayLayout(const base::ListValue* args);
args               61 chrome/browser/ui/webui/options/chromeos/display_options_handler.h   void HandleSetUIScale(const base::ListValue* args);
args               62 chrome/browser/ui/webui/options/chromeos/display_options_handler.h   void HandleSetResolution(const base::ListValue* args);
args               63 chrome/browser/ui/webui/options/chromeos/display_options_handler.h   void HandleSetOrientation(const base::ListValue* args);
args               64 chrome/browser/ui/webui/options/chromeos/display_options_handler.h   void HandleSetColorProfile(const base::ListValue* args);
args               98 chrome/browser/ui/webui/options/chromeos/display_overscan_handler.cc void DisplayOverscanHandler::HandleStart(const base::ListValue* args) {
args              101 chrome/browser/ui/webui/options/chromeos/display_overscan_handler.cc   if (!args->GetString(0, &id_value)) {
args              140 chrome/browser/ui/webui/options/chromeos/display_overscan_handler.cc void DisplayOverscanHandler::HandleMove(const base::ListValue* args) {
args              143 chrome/browser/ui/webui/options/chromeos/display_overscan_handler.cc   if (!args->GetString(0, &orientation)) {
args              147 chrome/browser/ui/webui/options/chromeos/display_overscan_handler.cc   if (!args->GetDouble(1, &length)) {
args              171 chrome/browser/ui/webui/options/chromeos/display_overscan_handler.cc void DisplayOverscanHandler::HandleResize(const base::ListValue* args) {
args              174 chrome/browser/ui/webui/options/chromeos/display_overscan_handler.cc   if (!args->GetString(0, &orientation)) {
args              178 chrome/browser/ui/webui/options/chromeos/display_overscan_handler.cc   if (!args->GetDouble(1, &length)) {
args               43 chrome/browser/ui/webui/options/chromeos/display_overscan_handler.h   void HandleStart(const base::ListValue* args);
args               47 chrome/browser/ui/webui/options/chromeos/display_overscan_handler.h   void HandleMove(const base::ListValue* args);
args               48 chrome/browser/ui/webui/options/chromeos/display_overscan_handler.h   void HandleResize(const base::ListValue* args);
args             1049 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc void InternetOptionsHandler::EnableWifiCallback(const base::ListValue* args) {
args             1056 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc void InternetOptionsHandler::DisableWifiCallback(const base::ListValue* args) {
args             1064 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc     const base::ListValue* args) {
args             1106 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc     const base::ListValue* args) {
args             1112 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc void InternetOptionsHandler::EnableWimaxCallback(const base::ListValue* args) {
args             1118 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc void InternetOptionsHandler::DisableWimaxCallback(const base::ListValue* args) {
args             1125 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc     const base::ListValue* args) {
args             1129 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc   if (args->GetSize() != 1 || !args->GetString(0, &service_path)) {
args             1136 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc void InternetOptionsHandler::BuyDataPlanCallback(const base::ListValue* args) {
args             1140 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc   if (args->GetSize() != 1 || !args->GetString(0, &service_path)) {
args             1147 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc void InternetOptionsHandler::SetApnCallback(const base::ListValue* args) {
args             1149 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc   if (!args->GetString(0, &service_path)) {
args             1156 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc                  weak_factory_.GetWeakPtr(), base::Owned(args->DeepCopy())),
args             1161 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc     const base::ListValue* args,
args             1165 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc   if (!args->GetString(1, &apn) ||
args             1166 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc       !args->GetString(2, &username) ||
args             1167 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc       !args->GetString(3, &password)) {
args             1221 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc void InternetOptionsHandler::SetCarrierCallback(const base::ListValue* args) {
args             1224 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc   if (args->GetSize() != 2 ||
args             1225 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc       !args->GetString(0, &service_path) ||
args             1226 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc       !args->GetString(1, &carrier)) {
args             1245 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc     const base::ListValue* args) {
args             1247 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc   if (!args->GetBoolean(0, &require_pin_new_value)) {
args             1264 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc void InternetOptionsHandler::ChangePinCallback(const base::ListValue* args) {
args             1270 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc     const base::ListValue* args) {
args             1377 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc     const base::ListValue* args) {
args             1379 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc   if (args->GetSize() < 2 ||
args             1380 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc       !args->GetString(0, &service_path) ||
args             1381 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc       !args->GetString(1, &server_hostname)) {
args             1390 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc     const base::ListValue* args) {
args             1392 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc   if (args->GetSize() < 2 ||
args             1393 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc       !args->GetString(0, &service_path) ||
args             1394 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc       !args->GetString(1, &prefer_network_str)) {
args             1405 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc     const base::ListValue* args) {
args             1407 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc   if (args->GetSize() < 2 ||
args             1408 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc       !args->GetString(0, &service_path) ||
args             1409 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc       !args->GetString(1, &auto_connect_str)) {
args             1419 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc void InternetOptionsHandler::SetIPConfigCallback(const base::ListValue* args) {
args             1421 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc   if (!args->GetString(0, &service_path)) {
args             1428 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc                  weak_factory_.GetWeakPtr(), base::Owned(args->DeepCopy())),
args             1433 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc     const base::ListValue* args,
args             1438 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc   if (!args->GetBoolean(1, &dhcp_for_ip) ||
args             1439 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc       !args->GetString(2, &address) ||
args             1440 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc       !args->GetString(3, &netmask) ||
args             1441 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc       !args->GetString(4, &gateway) ||
args             1442 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc       !args->GetString(5, &name_server_type) ||
args             1443 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc       !args->GetString(6, &name_servers)) {
args             1946 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc     const base::ListValue* args) {
args             1950 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc   if (args->GetSize() != 3 ||
args             1951 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc       !args->GetString(0, &type) ||
args             1952 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc       !args->GetString(1, &service_path) ||
args             1953 chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc       !args->GetString(2, &command)) {
args               58 chrome/browser/ui/webui/options/chromeos/internet_options_handler.h   void EnableWifiCallback(const base::ListValue* args);
args               59 chrome/browser/ui/webui/options/chromeos/internet_options_handler.h   void DisableWifiCallback(const base::ListValue* args);
args               60 chrome/browser/ui/webui/options/chromeos/internet_options_handler.h   void EnableCellularCallback(const base::ListValue* args);
args               61 chrome/browser/ui/webui/options/chromeos/internet_options_handler.h   void DisableCellularCallback(const base::ListValue* args);
args               62 chrome/browser/ui/webui/options/chromeos/internet_options_handler.h   void EnableWimaxCallback(const base::ListValue* args);
args               63 chrome/browser/ui/webui/options/chromeos/internet_options_handler.h   void DisableWimaxCallback(const base::ListValue* args);
args               64 chrome/browser/ui/webui/options/chromeos/internet_options_handler.h   void ShowMorePlanInfoCallback(const base::ListValue* args);
args               65 chrome/browser/ui/webui/options/chromeos/internet_options_handler.h   void BuyDataPlanCallback(const base::ListValue* args);
args               66 chrome/browser/ui/webui/options/chromeos/internet_options_handler.h   void SetApnCallback(const base::ListValue* args);
args               67 chrome/browser/ui/webui/options/chromeos/internet_options_handler.h   void SetApnProperties(const base::ListValue* args,
args               71 chrome/browser/ui/webui/options/chromeos/internet_options_handler.h   void SetCarrierCallback(const base::ListValue* args);
args               72 chrome/browser/ui/webui/options/chromeos/internet_options_handler.h   void SetSimCardLockCallback(const base::ListValue* args);
args               73 chrome/browser/ui/webui/options/chromeos/internet_options_handler.h   void ChangePinCallback(const base::ListValue* args);
args               74 chrome/browser/ui/webui/options/chromeos/internet_options_handler.h   void RefreshNetworksCallback(const base::ListValue* args);
args              111 chrome/browser/ui/webui/options/chromeos/internet_options_handler.h   void SetServerHostnameCallback(const base::ListValue* args);
args              112 chrome/browser/ui/webui/options/chromeos/internet_options_handler.h   void SetPreferNetworkCallback(const base::ListValue* args);
args              113 chrome/browser/ui/webui/options/chromeos/internet_options_handler.h   void SetAutoConnectCallback(const base::ListValue* args);
args              114 chrome/browser/ui/webui/options/chromeos/internet_options_handler.h   void SetIPConfigCallback(const base::ListValue* args);
args              115 chrome/browser/ui/webui/options/chromeos/internet_options_handler.h   void SetIPConfigProperties(const base::ListValue* args,
args              132 chrome/browser/ui/webui/options/chromeos/internet_options_handler.h   void NetworkCommandCallback(const base::ListValue* args);
args               35 chrome/browser/ui/webui/options/chromeos/stats_options_handler.cc     const base::ListValue* args) {
args               37 chrome/browser/ui/webui/options/chromeos/stats_options_handler.cc   const std::string checked_str = base::UTF16ToUTF8(ExtractStringValue(args));
args               30 chrome/browser/ui/webui/options/chromeos/stats_options_handler.h   void HandleMetricsReportingCheckbox(const base::ListValue* args);
args               69 chrome/browser/ui/webui/options/clear_browser_data_handler.cc   base::ListValue args;
args               70 chrome/browser/ui/webui/options/clear_browser_data_handler.cc   args.Append(base::Value::CreateBooleanValue(visible));
args               72 chrome/browser/ui/webui/options/clear_browser_data_handler.cc       "ClearBrowserDataOverlay.setBannerVisibility", args);
args             1160 chrome/browser/ui/webui/options/content_settings_handler.cc     const base::ListValue* args) {
args             1164 chrome/browser/ui/webui/options/content_settings_handler.cc   bool rv = args->GetString(1, &origin);
args             1166 chrome/browser/ui/webui/options/content_settings_handler.cc   rv = args->GetString(2, &setting);
args             1176 chrome/browser/ui/webui/options/content_settings_handler.cc void ContentSettingsHandler::RemoveMediaException(const base::ListValue* args) {
args             1178 chrome/browser/ui/webui/options/content_settings_handler.cc   bool rv = args->GetString(1, &mode);
args             1182 chrome/browser/ui/webui/options/content_settings_handler.cc   rv = args->GetString(2, &pattern);
args             1203 chrome/browser/ui/webui/options/content_settings_handler.cc     const base::ListValue* args,
args             1206 chrome/browser/ui/webui/options/content_settings_handler.cc   bool rv = args->GetString(1, &mode);
args             1210 chrome/browser/ui/webui/options/content_settings_handler.cc   rv = args->GetString(2, &pattern);
args             1214 chrome/browser/ui/webui/options/content_settings_handler.cc   rv = args->GetString(3, &secondary_pattern);
args             1233 chrome/browser/ui/webui/options/content_settings_handler.cc     const base::ListValue* args) {
args             1235 chrome/browser/ui/webui/options/content_settings_handler.cc   bool rv = args->GetString(1, &mode);
args             1239 chrome/browser/ui/webui/options/content_settings_handler.cc   rv = args->GetString(2, &pattern);
args             1302 chrome/browser/ui/webui/options/content_settings_handler.cc void ContentSettingsHandler::SetContentFilter(const base::ListValue* args) {
args             1303 chrome/browser/ui/webui/options/content_settings_handler.cc   DCHECK_EQ(2U, args->GetSize());
args             1305 chrome/browser/ui/webui/options/content_settings_handler.cc   if (!(args->GetString(0, &group) &&
args             1306 chrome/browser/ui/webui/options/content_settings_handler.cc         args->GetString(1, &setting))) {
args             1380 chrome/browser/ui/webui/options/content_settings_handler.cc void ContentSettingsHandler::RemoveException(const base::ListValue* args) {
args             1382 chrome/browser/ui/webui/options/content_settings_handler.cc   CHECK(args->GetString(0, &type_string));
args             1388 chrome/browser/ui/webui/options/content_settings_handler.cc     RemoveZoomLevelException(args);
args             1395 chrome/browser/ui/webui/options/content_settings_handler.cc       RemoveNotificationException(args);
args             1398 chrome/browser/ui/webui/options/content_settings_handler.cc       RemoveMediaException(args);
args             1401 chrome/browser/ui/webui/options/content_settings_handler.cc       RemoveExceptionFromHostContentSettingsMap(args, type);
args             1406 chrome/browser/ui/webui/options/content_settings_handler.cc void ContentSettingsHandler::SetException(const base::ListValue* args) {
args             1408 chrome/browser/ui/webui/options/content_settings_handler.cc   CHECK(args->GetString(0, &type_string));
args             1410 chrome/browser/ui/webui/options/content_settings_handler.cc   CHECK(args->GetString(1, &mode));
args             1412 chrome/browser/ui/webui/options/content_settings_handler.cc   CHECK(args->GetString(2, &pattern));
args             1414 chrome/browser/ui/webui/options/content_settings_handler.cc   CHECK(args->GetString(3, &setting));
args             1441 chrome/browser/ui/webui/options/content_settings_handler.cc     const base::ListValue* args) {
args             1443 chrome/browser/ui/webui/options/content_settings_handler.cc   CHECK(args->GetString(0, &type_string));
args             1445 chrome/browser/ui/webui/options/content_settings_handler.cc   CHECK(args->GetString(1, &mode_string));
args             1447 chrome/browser/ui/webui/options/content_settings_handler.cc   CHECK(args->GetString(2, &pattern_string));
args              137 chrome/browser/ui/webui/options/content_settings_handler.h   void RemoveGeolocationException(const base::ListValue* args);
args              141 chrome/browser/ui/webui/options/content_settings_handler.h   void RemoveNotificationException(const base::ListValue* args);
args              145 chrome/browser/ui/webui/options/content_settings_handler.h   void RemoveMediaException(const base::ListValue* args);
args              150 chrome/browser/ui/webui/options/content_settings_handler.h       const base::ListValue* args,
args              155 chrome/browser/ui/webui/options/content_settings_handler.h   void RemoveZoomLevelException(const base::ListValue* args);
args              162 chrome/browser/ui/webui/options/content_settings_handler.h   void SetContentFilter(const base::ListValue* args);
args              167 chrome/browser/ui/webui/options/content_settings_handler.h   void RemoveException(const base::ListValue* args);
args              171 chrome/browser/ui/webui/options/content_settings_handler.h   void SetException(const base::ListValue* args);
args              175 chrome/browser/ui/webui/options/content_settings_handler.h   void CheckExceptionPatternValidity(const base::ListValue* args);
args              141 chrome/browser/ui/webui/options/cookies_view_handler.cc   base::ListValue args;
args              142 chrome/browser/ui/webui/options/cookies_view_handler.cc   args.Append(parent == tree_model->GetRoot() ?
args              145 chrome/browser/ui/webui/options/cookies_view_handler.cc   args.Append(new base::FundamentalValue(start));
args              146 chrome/browser/ui/webui/options/cookies_view_handler.cc   args.Append(children);
args              147 chrome/browser/ui/webui/options/cookies_view_handler.cc   web_ui()->CallJavascriptFunction("CookiesView.onTreeItemAdded", args);
args              160 chrome/browser/ui/webui/options/cookies_view_handler.cc   base::ListValue args;
args              161 chrome/browser/ui/webui/options/cookies_view_handler.cc   args.Append(parent == tree_model->GetRoot() ?
args              165 chrome/browser/ui/webui/options/cookies_view_handler.cc   args.Append(new base::FundamentalValue(start));
args              166 chrome/browser/ui/webui/options/cookies_view_handler.cc   args.Append(new base::FundamentalValue(count));
args              167 chrome/browser/ui/webui/options/cookies_view_handler.cc   web_ui()->CallJavascriptFunction("CookiesView.onTreeItemRemoved", args);
args              210 chrome/browser/ui/webui/options/cookies_view_handler.cc void CookiesViewHandler::UpdateSearchResults(const base::ListValue* args) {
args              212 chrome/browser/ui/webui/options/cookies_view_handler.cc   if (!args->GetString(0, &query))
args              220 chrome/browser/ui/webui/options/cookies_view_handler.cc void CookiesViewHandler::RemoveAll(const base::ListValue* args) {
args              225 chrome/browser/ui/webui/options/cookies_view_handler.cc void CookiesViewHandler::Remove(const base::ListValue* args) {
args              227 chrome/browser/ui/webui/options/cookies_view_handler.cc   if (!args->GetString(0, &node_path))
args              238 chrome/browser/ui/webui/options/cookies_view_handler.cc void CookiesViewHandler::LoadChildren(const base::ListValue* args) {
args              240 chrome/browser/ui/webui/options/cookies_view_handler.cc   if (!args->GetString(0, &node_path))
args              256 chrome/browser/ui/webui/options/cookies_view_handler.cc   base::ListValue args;
args              257 chrome/browser/ui/webui/options/cookies_view_handler.cc   args.Append(parent == cookies_tree_model_->GetRoot() ?
args              260 chrome/browser/ui/webui/options/cookies_view_handler.cc   args.Append(children);
args              262 chrome/browser/ui/webui/options/cookies_view_handler.cc   web_ui()->CallJavascriptFunction("CookiesView.loadChildren", args);
args              265 chrome/browser/ui/webui/options/cookies_view_handler.cc void CookiesViewHandler::ReloadCookies(const base::ListValue* args) {
args               47 chrome/browser/ui/webui/options/cookies_view_handler.h   void UpdateSearchResults(const base::ListValue* args);
args               50 chrome/browser/ui/webui/options/cookies_view_handler.h   void RemoveAll(const base::ListValue* args);
args               53 chrome/browser/ui/webui/options/cookies_view_handler.h   void Remove(const base::ListValue* args);
args               57 chrome/browser/ui/webui/options/cookies_view_handler.h   void LoadChildren(const base::ListValue* args);
args               65 chrome/browser/ui/webui/options/cookies_view_handler.h   void ReloadCookies(const base::ListValue* args);
args              223 chrome/browser/ui/webui/options/core_options_handler.cc void CoreOptionsHandler::HandleInitialize(const base::ListValue* args) {
args              228 chrome/browser/ui/webui/options/core_options_handler.cc void CoreOptionsHandler::OnFinishedLoading(const base::ListValue* args) {
args              419 chrome/browser/ui/webui/options/core_options_handler.cc void CoreOptionsHandler::HandleFetchPrefs(const base::ListValue* args) {
args              422 chrome/browser/ui/webui/options/core_options_handler.cc   DCHECK_GE(static_cast<int>(args->GetSize()), 2);
args              426 chrome/browser/ui/webui/options/core_options_handler.cc   if (!args->Get(0, &callback) || !callback->IsType(base::Value::TYPE_STRING))
args              437 chrome/browser/ui/webui/options/core_options_handler.cc   for (size_t i = 1; i < args->GetSize(); i++) {
args              438 chrome/browser/ui/webui/options/core_options_handler.cc     if (!args->Get(i, &list_member))
args              454 chrome/browser/ui/webui/options/core_options_handler.cc void CoreOptionsHandler::HandleObservePrefs(const base::ListValue* args) {
args              457 chrome/browser/ui/webui/options/core_options_handler.cc   DCHECK_GE(static_cast<int>(args->GetSize()), 2);
args              461 chrome/browser/ui/webui/options/core_options_handler.cc   if (!args->GetString(0, &callback_func_name))
args              465 chrome/browser/ui/webui/options/core_options_handler.cc   for (size_t i = 1; i < args->GetSize(); i++) {
args              467 chrome/browser/ui/webui/options/core_options_handler.cc     if (!args->Get(i, &list_member))
args              484 chrome/browser/ui/webui/options/core_options_handler.cc void CoreOptionsHandler::HandleSetBooleanPref(const base::ListValue* args) {
args              485 chrome/browser/ui/webui/options/core_options_handler.cc   HandleSetPref(args, TYPE_BOOLEAN);
args              488 chrome/browser/ui/webui/options/core_options_handler.cc void CoreOptionsHandler::HandleSetIntegerPref(const base::ListValue* args) {
args              489 chrome/browser/ui/webui/options/core_options_handler.cc   HandleSetPref(args, TYPE_INTEGER);
args              492 chrome/browser/ui/webui/options/core_options_handler.cc void CoreOptionsHandler::HandleSetDoublePref(const base::ListValue* args) {
args              493 chrome/browser/ui/webui/options/core_options_handler.cc   HandleSetPref(args, TYPE_DOUBLE);
args              496 chrome/browser/ui/webui/options/core_options_handler.cc void CoreOptionsHandler::HandleSetStringPref(const base::ListValue* args) {
args              497 chrome/browser/ui/webui/options/core_options_handler.cc   HandleSetPref(args, TYPE_STRING);
args              500 chrome/browser/ui/webui/options/core_options_handler.cc void CoreOptionsHandler::HandleSetURLPref(const base::ListValue* args) {
args              501 chrome/browser/ui/webui/options/core_options_handler.cc   HandleSetPref(args, TYPE_URL);
args              504 chrome/browser/ui/webui/options/core_options_handler.cc void CoreOptionsHandler::HandleSetListPref(const base::ListValue* args) {
args              505 chrome/browser/ui/webui/options/core_options_handler.cc   HandleSetPref(args, TYPE_LIST);
args              508 chrome/browser/ui/webui/options/core_options_handler.cc void CoreOptionsHandler::HandleSetPref(const base::ListValue* args,
args              510 chrome/browser/ui/webui/options/core_options_handler.cc   DCHECK_GT(static_cast<int>(args->GetSize()), 1);
args              513 chrome/browser/ui/webui/options/core_options_handler.cc   if (!args->GetString(0, &pref_name))
args              517 chrome/browser/ui/webui/options/core_options_handler.cc   if (!args->Get(1, &value))
args              585 chrome/browser/ui/webui/options/core_options_handler.cc   if (args->GetSize() > 2 && !args->GetString(2, &metric))
args              590 chrome/browser/ui/webui/options/core_options_handler.cc void CoreOptionsHandler::HandleClearPref(const base::ListValue* args) {
args              591 chrome/browser/ui/webui/options/core_options_handler.cc   DCHECK_GT(static_cast<int>(args->GetSize()), 0);
args              594 chrome/browser/ui/webui/options/core_options_handler.cc   if (!args->GetString(0, &pref_name))
args              598 chrome/browser/ui/webui/options/core_options_handler.cc   if (args->GetSize() > 1) {
args              599 chrome/browser/ui/webui/options/core_options_handler.cc     if (!args->GetString(1, &metric))
args              606 chrome/browser/ui/webui/options/core_options_handler.cc void CoreOptionsHandler::HandleUserMetricsAction(const base::ListValue* args) {
args              607 chrome/browser/ui/webui/options/core_options_handler.cc   std::string metric = base::UTF16ToUTF8(ExtractStringValue(args));
args              612 chrome/browser/ui/webui/options/core_options_handler.cc void CoreOptionsHandler::HandleDisableExtension(const base::ListValue* args) {
args              614 chrome/browser/ui/webui/options/core_options_handler.cc   if (args->GetString(0, &extension_id)) {
args              117 chrome/browser/ui/webui/options/core_options_handler.h   void HandleInitialize(const base::ListValue* args);
args              122 chrome/browser/ui/webui/options/core_options_handler.h   void OnFinishedLoading(const base::ListValue* args);
args              128 chrome/browser/ui/webui/options/core_options_handler.h   void HandleFetchPrefs(const base::ListValue* args);
args              132 chrome/browser/ui/webui/options/core_options_handler.h   void HandleObservePrefs(const base::ListValue* args);
args              139 chrome/browser/ui/webui/options/core_options_handler.h   void HandleSetBooleanPref(const base::ListValue* args);
args              140 chrome/browser/ui/webui/options/core_options_handler.h   void HandleSetIntegerPref(const base::ListValue* args);
args              141 chrome/browser/ui/webui/options/core_options_handler.h   void HandleSetDoublePref(const base::ListValue* args);
args              142 chrome/browser/ui/webui/options/core_options_handler.h   void HandleSetStringPref(const base::ListValue* args);
args              143 chrome/browser/ui/webui/options/core_options_handler.h   void HandleSetURLPref(const base::ListValue* args);
args              144 chrome/browser/ui/webui/options/core_options_handler.h   void HandleSetListPref(const base::ListValue* args);
args              146 chrome/browser/ui/webui/options/core_options_handler.h   void HandleSetPref(const base::ListValue* args, PrefType type);
args              152 chrome/browser/ui/webui/options/core_options_handler.h   void HandleClearPref(const base::ListValue* args);
args              157 chrome/browser/ui/webui/options/core_options_handler.h   void HandleUserMetricsAction(const base::ListValue* args);
args              161 chrome/browser/ui/webui/options/core_options_handler.h   void HandleDisableExtension(const base::ListValue* args);
args               57 chrome/browser/ui/webui/options/create_profile_handler.cc void CreateProfileHandler::CreateProfile(const base::ListValue* args) {
args               83 chrome/browser/ui/webui/options/create_profile_handler.cc   if (args->GetString(0, &name) && args->GetString(1, &icon)) {
args               84 chrome/browser/ui/webui/options/create_profile_handler.cc     if (args->GetBoolean(2, &create_shortcut)) {
args               85 chrome/browser/ui/webui/options/create_profile_handler.cc       bool success = args->GetBoolean(3, &managed_user);
args               87 chrome/browser/ui/webui/options/create_profile_handler.cc       success = args->GetString(4, &managed_user_id);
args              298 chrome/browser/ui/webui/options/create_profile_handler.cc     const base::ListValue* args) {
args               74 chrome/browser/ui/webui/options/create_profile_handler.h   void CreateProfile(const base::ListValue* args);
args              121 chrome/browser/ui/webui/options/create_profile_handler.h   void HandleCancelProfileCreation(const base::ListValue* args);
args              186 chrome/browser/ui/webui/options/font_settings_handler.cc void FontSettingsHandler::HandleFetchFontsData(const base::ListValue* args) {
args              303 chrome/browser/ui/webui/options/font_settings_handler.cc     const base::ListValue* args) {
args               46 chrome/browser/ui/webui/options/font_settings_handler.h   void HandleFetchFontsData(const base::ListValue* args);
args               63 chrome/browser/ui/webui/options/font_settings_handler.h   void HandleOpenAdvancedFontSettingsOptions(const base::ListValue* args);
args              147 chrome/browser/ui/webui/options/handler_options_handler.cc void HandlerOptionsHandler::RemoveHandler(const base::ListValue* args) {
args              149 chrome/browser/ui/webui/options/handler_options_handler.cc   if (!args->GetList(0, &list)) {
args              162 chrome/browser/ui/webui/options/handler_options_handler.cc void HandlerOptionsHandler::RemoveIgnoredHandler(const base::ListValue* args) {
args              164 chrome/browser/ui/webui/options/handler_options_handler.cc   if (!args->GetList(0, &list)) {
args              173 chrome/browser/ui/webui/options/handler_options_handler.cc void HandlerOptionsHandler::SetHandlersEnabled(const base::ListValue* args) {
args              175 chrome/browser/ui/webui/options/handler_options_handler.cc   CHECK(args->GetBoolean(0, &enabled));
args              182 chrome/browser/ui/webui/options/handler_options_handler.cc void HandlerOptionsHandler::ClearDefault(const base::ListValue* args) {
args              184 chrome/browser/ui/webui/options/handler_options_handler.cc   CHECK(args->Get(0, &value));
args              190 chrome/browser/ui/webui/options/handler_options_handler.cc void HandlerOptionsHandler::SetDefault(const base::ListValue* args) {
args              192 chrome/browser/ui/webui/options/handler_options_handler.cc   CHECK(args->GetList(0, &list));
args              199 chrome/browser/ui/webui/options/handler_options_handler.cc     const base::ListValue* args) const {
args              203 chrome/browser/ui/webui/options/handler_options_handler.cc   bool ok = args->GetString(0, &protocol) && args->GetString(1, &url) &&
args              204 chrome/browser/ui/webui/options/handler_options_handler.cc     args->GetString(2, &title);
args               49 chrome/browser/ui/webui/options/handler_options_handler.h   void SetHandlersEnabled(const base::ListValue* args);
args               52 chrome/browser/ui/webui/options/handler_options_handler.h   void SetDefault(const base::ListValue* args);
args               56 chrome/browser/ui/webui/options/handler_options_handler.h   void ClearDefault(const base::ListValue* args);
args               60 chrome/browser/ui/webui/options/handler_options_handler.h   ProtocolHandler ParseHandlerFromArgs(const base::ListValue* args) const;
args               75 chrome/browser/ui/webui/options/handler_options_handler.h   void RemoveHandler(const base::ListValue* args);
args               79 chrome/browser/ui/webui/options/handler_options_handler.h   void RemoveIgnoredHandler(const base::ListValue* args);
args               47 chrome/browser/ui/webui/options/home_page_overlay_handler.cc     const base::ListValue* args) {
args               49 chrome/browser/ui/webui/options/home_page_overlay_handler.cc   CHECK_EQ(args->GetSize(), 1U);
args               50 chrome/browser/ui/webui/options/home_page_overlay_handler.cc   CHECK(args->GetString(0, &input));
args               38 chrome/browser/ui/webui/options/home_page_overlay_handler.h   void RequestAutocompleteSuggestions(const base::ListValue* args);
args              116 chrome/browser/ui/webui/options/import_data_handler.cc void ImportDataHandler::ImportData(const base::ListValue* args) {
args              120 chrome/browser/ui/webui/options/import_data_handler.cc   if (!args->GetString(0, &string_value) ||
args              127 chrome/browser/ui/webui/options/import_data_handler.cc   if (args->GetString(1, &string_value) && string_value == "true") {
args              130 chrome/browser/ui/webui/options/import_data_handler.cc   if (args->GetString(2, &string_value) && string_value == "true") {
args              133 chrome/browser/ui/webui/options/import_data_handler.cc   if (args->GetString(3, &string_value) && string_value == "true") {
args              136 chrome/browser/ui/webui/options/import_data_handler.cc   if (args->GetString(4, &string_value) && string_value == "true") {
args              230 chrome/browser/ui/webui/options/import_data_handler.cc void ImportDataHandler::HandleChooseBookmarksFile(const base::ListValue* args) {
args              231 chrome/browser/ui/webui/options/import_data_handler.cc   DCHECK(args && args->empty());
args               44 chrome/browser/ui/webui/options/import_data_handler.h   void ImportData(const base::ListValue* args);
args               61 chrome/browser/ui/webui/options/import_data_handler.h   void HandleChooseBookmarksFile(const base::ListValue* args);
args              105 chrome/browser/ui/webui/options/language_dictionary_overlay_handler.cc     const base::ListValue* args) {
args              110 chrome/browser/ui/webui/options/language_dictionary_overlay_handler.cc void LanguageDictionaryOverlayHandler::AddWord(const base::ListValue* args) {
args              112 chrome/browser/ui/webui/options/language_dictionary_overlay_handler.cc   if (!args->GetString(0, &new_word) || new_word.empty() || !dictionary_) {
args              119 chrome/browser/ui/webui/options/language_dictionary_overlay_handler.cc void LanguageDictionaryOverlayHandler::RemoveWord(const base::ListValue* args) {
args              121 chrome/browser/ui/webui/options/language_dictionary_overlay_handler.cc   if (!args->GetString(0, &old_word) || old_word.empty() || !dictionary_) {
args               36 chrome/browser/ui/webui/options/language_dictionary_overlay_handler.h   void RefreshWords(const base::ListValue* args);
args               39 chrome/browser/ui/webui/options/language_dictionary_overlay_handler.h   void AddWord(const base::ListValue* args);
args               42 chrome/browser/ui/webui/options/language_dictionary_overlay_handler.h   void RemoveWord(const base::ListValue* args);
args              127 chrome/browser/ui/webui/options/language_options_handler.cc void LanguageOptionsHandler::RestartCallback(const base::ListValue* args) {
args               40 chrome/browser/ui/webui/options/language_options_handler.h   void RestartCallback(const base::ListValue* args);
args              217 chrome/browser/ui/webui/options/language_options_handler_common.cc     const base::ListValue* args) {
args              229 chrome/browser/ui/webui/options/language_options_handler_common.cc     const base::ListValue* args) {
args              231 chrome/browser/ui/webui/options/language_options_handler_common.cc       base::UTF16ToASCII(ExtractStringValue(args));
args              243 chrome/browser/ui/webui/options/language_options_handler_common.cc     const base::ListValue* args) {
args              245 chrome/browser/ui/webui/options/language_options_handler_common.cc       base::UTF16ToASCII(ExtractStringValue(args));
args              254 chrome/browser/ui/webui/options/language_options_handler_common.cc     const base::ListValue* args) {
args              255 chrome/browser/ui/webui/options/language_options_handler_common.cc   CHECK_EQ(args->GetSize(), 1u);
args              257 chrome/browser/ui/webui/options/language_options_handler_common.cc   args->GetList(0, &language_list);
args              275 chrome/browser/ui/webui/options/language_options_handler_common.cc     const base::ListValue* args) {
args               68 chrome/browser/ui/webui/options/language_options_handler_common.h   void LanguageOptionsOpenCallback(const base::ListValue* args);
args               72 chrome/browser/ui/webui/options/language_options_handler_common.h   void UiLanguageChangeCallback(const base::ListValue* args);
args               76 chrome/browser/ui/webui/options/language_options_handler_common.h   void SpellCheckLanguageChangeCallback(const base::ListValue* args);
args               80 chrome/browser/ui/webui/options/language_options_handler_common.h   void RetrySpellcheckDictionaryDownload(const base::ListValue* args);
args               83 chrome/browser/ui/webui/options/language_options_handler_common.h   void UpdateLanguageListCallback(const base::ListValue* args);
args               58 chrome/browser/ui/webui/options/manage_profile_handler.cc bool GetProfilePathFromArgs(const base::ListValue* args,
args               61 chrome/browser/ui/webui/options/manage_profile_handler.cc   if (!args->Get(0, &file_path_value))
args              217 chrome/browser/ui/webui/options/manage_profile_handler.cc     const base::ListValue* args) {
args              219 chrome/browser/ui/webui/options/manage_profile_handler.cc   bool ok = args->GetString(0, &mode);
args              229 chrome/browser/ui/webui/options/manage_profile_handler.cc     const base::ListValue* args) {
args              288 chrome/browser/ui/webui/options/manage_profile_handler.cc void ManageProfileHandler::SetProfileIconAndName(const base::ListValue* args) {
args              289 chrome/browser/ui/webui/options/manage_profile_handler.cc   DCHECK(args);
args              292 chrome/browser/ui/webui/options/manage_profile_handler.cc   if (!GetProfilePathFromArgs(args, &profile_file_path))
args              307 chrome/browser/ui/webui/options/manage_profile_handler.cc   if (!args->GetString(1, &icon_url))
args              337 chrome/browser/ui/webui/options/manage_profile_handler.cc   if (!args->GetString(2, &new_profile_name))
args              344 chrome/browser/ui/webui/options/manage_profile_handler.cc void ManageProfileHandler::SwitchAppListProfile(const base::ListValue* args) {
args              345 chrome/browser/ui/webui/options/manage_profile_handler.cc   DCHECK(args);
args              350 chrome/browser/ui/webui/options/manage_profile_handler.cc   if (!args->Get(0, &file_path_value) ||
args              365 chrome/browser/ui/webui/options/manage_profile_handler.cc     const base::ListValue* args) {
args              366 chrome/browser/ui/webui/options/manage_profile_handler.cc   DCHECK(args);
args              369 chrome/browser/ui/webui/options/manage_profile_handler.cc   if (!GetProfilePathFromArgs(args, &profile_file_path))
args              377 chrome/browser/ui/webui/options/manage_profile_handler.cc   if (!args->GetString(1, &icon_url))
args              402 chrome/browser/ui/webui/options/manage_profile_handler.cc     const base::ListValue* args) {
args              407 chrome/browser/ui/webui/options/manage_profile_handler.cc   if (!GetProfilePathFromArgs(args, &profile_file_path))
args              426 chrome/browser/ui/webui/options/manage_profile_handler.cc     const base::ListValue* args) {
args              461 chrome/browser/ui/webui/options/manage_profile_handler.cc void ManageProfileHandler::AddProfileShortcut(const base::ListValue* args) {
args              463 chrome/browser/ui/webui/options/manage_profile_handler.cc   if (!GetProfilePathFromArgs(args, &profile_file_path))
args              477 chrome/browser/ui/webui/options/manage_profile_handler.cc void ManageProfileHandler::RemoveProfileShortcut(const base::ListValue* args) {
args              479 chrome/browser/ui/webui/options/manage_profile_handler.cc   if (!GetProfilePathFromArgs(args, &profile_file_path))
args               52 chrome/browser/ui/webui/options/manage_profile_handler.h   void RequestDefaultProfileIcons(const base::ListValue* args);
args               57 chrome/browser/ui/webui/options/manage_profile_handler.h   void RequestNewProfileDefaults(const base::ListValue* args);
args               79 chrome/browser/ui/webui/options/manage_profile_handler.h   void SetProfileIconAndName(const base::ListValue* args);
args               85 chrome/browser/ui/webui/options/manage_profile_handler.h   void SwitchAppListProfile(const base::ListValue* args);
args               90 chrome/browser/ui/webui/options/manage_profile_handler.h   void ProfileIconSelectionChanged(const base::ListValue* args);
args               96 chrome/browser/ui/webui/options/manage_profile_handler.h   void RequestHasProfileShortcuts(const base::ListValue* args);
args              102 chrome/browser/ui/webui/options/manage_profile_handler.h   void RequestCreateProfileUpdate(const base::ListValue* args);
args              115 chrome/browser/ui/webui/options/manage_profile_handler.h   void AddProfileShortcut(const base::ListValue* args);
args              120 chrome/browser/ui/webui/options/manage_profile_handler.h   void RemoveProfileShortcut(const base::ListValue* args);
args               63 chrome/browser/ui/webui/options/managed_user_create_confirm_handler.cc       const base::ListValue* args) {
args               64 chrome/browser/ui/webui/options/managed_user_create_confirm_handler.cc   DCHECK(args);
args               66 chrome/browser/ui/webui/options/managed_user_create_confirm_handler.cc   if (!args->Get(0, &file_path_value))
args               34 chrome/browser/ui/webui/options/managed_user_create_confirm_handler.h   void SwitchToProfile(const base::ListValue* args);
args               59 chrome/browser/ui/webui/options/managed_user_import_handler.h   void RequestManagedUserImportUpdate(const base::ListValue* args);
args               65 chrome/browser/ui/webui/options/media_devices_selection_handler.cc     const base::ListValue* args) {
args               66 chrome/browser/ui/webui/options/media_devices_selection_handler.cc   DCHECK_EQ(2U, args->GetSize());
args               68 chrome/browser/ui/webui/options/media_devices_selection_handler.cc   if (!(args->GetString(0, &type) && args->GetString(1, &device))) {
args               43 chrome/browser/ui/webui/options/media_devices_selection_handler.h   void SetDefaultCaptureDevice(const base::ListValue* args);
args               57 chrome/browser/ui/webui/options/options_browsertest.cc void OptionsBrowserTest::HandleSetPref(const base::ListValue* args) {
args               58 chrome/browser/ui/webui/options/options_browsertest.cc   ASSERT_EQ(2u, args->GetSize());
args               61 chrome/browser/ui/webui/options/options_browsertest.cc   ASSERT_TRUE(args->GetString(0, &pref_name));
args               63 chrome/browser/ui/webui/options/options_browsertest.cc   ASSERT_TRUE(args->Get(1, &pref_value));
args               40 chrome/browser/ui/webui/options/options_browsertest.h   void HandleSetPref(const base::ListValue* args);
args              113 chrome/browser/ui/webui/options/password_manager_handler.cc     const base::ListValue* args) {
args              114 chrome/browser/ui/webui/options/password_manager_handler.cc   std::string string_value = base::UTF16ToUTF8(ExtractStringValue(args));
args              122 chrome/browser/ui/webui/options/password_manager_handler.cc     const base::ListValue* args) {
args              123 chrome/browser/ui/webui/options/password_manager_handler.cc   std::string string_value = base::UTF16ToUTF8(ExtractStringValue(args));
args              132 chrome/browser/ui/webui/options/password_manager_handler.cc     const base::ListValue* args) {
args              134 chrome/browser/ui/webui/options/password_manager_handler.cc   if (!ExtractIntegerValue(args, &index))
args              151 chrome/browser/ui/webui/options/password_manager_handler.cc     const base::ListValue* args) {
args               47 chrome/browser/ui/webui/options/password_manager_handler.h   void HandleUpdatePasswordLists(const base::ListValue* args);
args               51 chrome/browser/ui/webui/options/password_manager_handler.h   void HandleRemoveSavedPassword(const base::ListValue* args);
args               55 chrome/browser/ui/webui/options/password_manager_handler.h   void HandleRemovePasswordException(const base::ListValue* args);
args               59 chrome/browser/ui/webui/options/password_manager_handler.h   void HandleRequestShowPassword(const base::ListValue* args);
args              170 chrome/browser/ui/webui/options/reset_profile_settings_handler.cc     const base::ListValue* args) {
args               60 chrome/browser/ui/webui/options/reset_profile_settings_handler.h   void OnDismissedResetProfileSettingsBanner(const base::ListValue* args);
args              207 chrome/browser/ui/webui/options/search_engine_manager_handler.cc     const base::ListValue* args) {
args              209 chrome/browser/ui/webui/options/search_engine_manager_handler.cc   if (!ExtractIntegerValue(args, &index)) {
args              220 chrome/browser/ui/webui/options/search_engine_manager_handler.cc     const base::ListValue* args) {
args              222 chrome/browser/ui/webui/options/search_engine_manager_handler.cc   if (!ExtractIntegerValue(args, &index)) {
args              233 chrome/browser/ui/webui/options/search_engine_manager_handler.cc void SearchEngineManagerHandler::EditSearchEngine(const base::ListValue* args) {
args              235 chrome/browser/ui/webui/options/search_engine_manager_handler.cc   if (!ExtractIntegerValue(args, &index)) {
args              263 chrome/browser/ui/webui/options/search_engine_manager_handler.cc     const base::ListValue* args)
args              271 chrome/browser/ui/webui/options/search_engine_manager_handler.cc   if (!args->GetString(ENGINE_NAME, &name) ||
args              272 chrome/browser/ui/webui/options/search_engine_manager_handler.cc       !args->GetString(ENGINE_KEYWORD, &keyword) ||
args              273 chrome/browser/ui/webui/options/search_engine_manager_handler.cc       !args->GetString(ENGINE_URL, &url) ||
args              274 chrome/browser/ui/webui/options/search_engine_manager_handler.cc       !args->GetString(3, &modelIndex)) {
args              288 chrome/browser/ui/webui/options/search_engine_manager_handler.cc void SearchEngineManagerHandler::EditCancelled(const base::ListValue* args) {
args              295 chrome/browser/ui/webui/options/search_engine_manager_handler.cc void SearchEngineManagerHandler::EditCompleted(const base::ListValue* args) {
args              301 chrome/browser/ui/webui/options/search_engine_manager_handler.cc   if (!args->GetString(ENGINE_NAME, &name) ||
args              302 chrome/browser/ui/webui/options/search_engine_manager_handler.cc       !args->GetString(ENGINE_KEYWORD, &keyword) ||
args              303 chrome/browser/ui/webui/options/search_engine_manager_handler.cc       !args->GetString(ENGINE_URL, &url)) {
args               52 chrome/browser/ui/webui/options/search_engine_manager_handler.h   void RemoveSearchEngine(const base::ListValue* args);
args               55 chrome/browser/ui/webui/options/search_engine_manager_handler.h   void SetDefaultSearchEngine(const base::ListValue* args);
args               60 chrome/browser/ui/webui/options/search_engine_manager_handler.h   void EditSearchEngine(const base::ListValue* args);
args               64 chrome/browser/ui/webui/options/search_engine_manager_handler.h   void CheckSearchEngineInfoValidity(const base::ListValue* args);
args               68 chrome/browser/ui/webui/options/search_engine_manager_handler.h   void EditCancelled(const base::ListValue* args);
args               72 chrome/browser/ui/webui/options/search_engine_manager_handler.h   void EditCompleted(const base::ListValue* args);
args              134 chrome/browser/ui/webui/options/startup_pages_handler.cc     const base::ListValue* args) {
args              138 chrome/browser/ui/webui/options/startup_pages_handler.cc void StartupPagesHandler::RemoveStartupPages(const base::ListValue* args) {
args              139 chrome/browser/ui/webui/options/startup_pages_handler.cc   for (int i = args->GetSize() - 1; i >= 0; --i) {
args              141 chrome/browser/ui/webui/options/startup_pages_handler.cc     CHECK(args->GetInteger(i, &selected_index));
args              152 chrome/browser/ui/webui/options/startup_pages_handler.cc void StartupPagesHandler::AddStartupPage(const base::ListValue* args) {
args              154 chrome/browser/ui/webui/options/startup_pages_handler.cc   CHECK(args->GetString(0, &url_string));
args              162 chrome/browser/ui/webui/options/startup_pages_handler.cc   if (!args->GetInteger(1, &index) || index > row_count)
args              168 chrome/browser/ui/webui/options/startup_pages_handler.cc void StartupPagesHandler::EditStartupPage(const base::ListValue* args) {
args              171 chrome/browser/ui/webui/options/startup_pages_handler.cc   CHECK_EQ(args->GetSize(), 2U);
args              172 chrome/browser/ui/webui/options/startup_pages_handler.cc   CHECK(args->GetInteger(0, &index));
args              173 chrome/browser/ui/webui/options/startup_pages_handler.cc   CHECK(args->GetString(1, &url_string));
args              185 chrome/browser/ui/webui/options/startup_pages_handler.cc void StartupPagesHandler::DragDropStartupPage(const base::ListValue* args) {
args              186 chrome/browser/ui/webui/options/startup_pages_handler.cc   CHECK_EQ(args->GetSize(), 2U);
args              190 chrome/browser/ui/webui/options/startup_pages_handler.cc   CHECK(args->GetInteger(0, &to_index));
args              193 chrome/browser/ui/webui/options/startup_pages_handler.cc   CHECK(args->GetList(1, &selected));
args              217 chrome/browser/ui/webui/options/startup_pages_handler.cc void StartupPagesHandler::CommitChanges(const base::ListValue* args) {
args              221 chrome/browser/ui/webui/options/startup_pages_handler.cc void StartupPagesHandler::CancelChanges(const base::ListValue* args) {
args              226 chrome/browser/ui/webui/options/startup_pages_handler.cc     const base::ListValue* args) {
args              228 chrome/browser/ui/webui/options/startup_pages_handler.cc   CHECK_EQ(args->GetSize(), 1U);
args              229 chrome/browser/ui/webui/options/startup_pages_handler.cc   CHECK(args->GetString(0, &input));
args               49 chrome/browser/ui/webui/options/startup_pages_handler.h   void CommitChanges(const base::ListValue* args);
args               52 chrome/browser/ui/webui/options/startup_pages_handler.h   void CancelChanges(const base::ListValue* args);
args               55 chrome/browser/ui/webui/options/startup_pages_handler.h   void RemoveStartupPages(const base::ListValue* args);
args               59 chrome/browser/ui/webui/options/startup_pages_handler.h   void AddStartupPage(const base::ListValue* args);
args               63 chrome/browser/ui/webui/options/startup_pages_handler.h   void EditStartupPage(const base::ListValue* args);
args               66 chrome/browser/ui/webui/options/startup_pages_handler.h   void SetStartupPagesToCurrentPages(const base::ListValue* args);
args               69 chrome/browser/ui/webui/options/startup_pages_handler.h   void DragDropStartupPage(const base::ListValue* args);
args               73 chrome/browser/ui/webui/options/startup_pages_handler.h   void RequestAutocompleteSuggestions(const base::ListValue* args);
args              432 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc     const base::ListValue* args) {
args              434 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc   CHECK_EQ(2u, args->GetSize());
args              436 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc   CHECK(args->GetDouble(0, &double_time));
args              438 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc   CHECK(args->GetDouble(1, &double_time));
args              451 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc     const base::ListValue* args) {
args              453 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc   CHECK_EQ(0u, args->GetSize());
args              461 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc     const base::ListValue* args) {
args              463 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc   CHECK_EQ(0u, args->GetSize());
args              475 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc     const base::ListValue* args) {
args              477 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc   CHECK_EQ(0u, args->GetSize());
args              485 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc void PerformanceMonitorHandler::HandleGetEvents(const base::ListValue* args) {
args              487 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc   CHECK_EQ(3u, args->GetSize());
args              490 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc   CHECK(args->GetList(0, &event_type_list));
args              503 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc   CHECK(args->GetDouble(1, &double_time));
args              505 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc   CHECK(args->GetDouble(2, &double_time));
args              518 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc     const base::ListValue* args) {
args              520 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc   CHECK_EQ(0u, args->GetSize());
args              528 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc void PerformanceMonitorHandler::HandleGetMetrics(const base::ListValue* args) {
args              530 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc   CHECK_EQ(5u, args->GetSize());
args              533 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc   CHECK(args->GetList(0, &metric_type_list));
args              546 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc   CHECK(args->GetDouble(1, &time_double));
args              548 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc   CHECK(args->GetDouble(2, &time_double));
args              552 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc   CHECK(args->GetDouble(3, &resolution_in_milliseconds));
args              557 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.cc   CHECK(args->GetDouble(4, &aggregation_double));
args               40 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.h   void HandleGetActiveIntervals(const base::ListValue* args);
args               44 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.h   void HandleGetFlagEnabled(const base::ListValue* args);
args               48 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.h   void HandleGetAggregationTypes(const base::ListValue* args);
args               52 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.h   void HandleGetEventTypes(const base::ListValue* args);
args               56 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.h   void HandleGetEvents(const base::ListValue* args);
args               60 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.h   void HandleGetMetricTypes(const base::ListValue* args);
args               66 chrome/browser/ui/webui/performance_monitor/performance_monitor_handler.h   void HandleGetMetrics(const base::ListValue* args);
args              147 chrome/browser/ui/webui/plugins_ui.cc   void HandleRequestPluginsData(const base::ListValue* args);
args              150 chrome/browser/ui/webui/plugins_ui.cc   void HandleEnablePluginMessage(const base::ListValue* args);
args              153 chrome/browser/ui/webui/plugins_ui.cc   void HandleSaveShowDetailsToPrefs(const base::ListValue* args);
args              156 chrome/browser/ui/webui/plugins_ui.cc   void HandleGetShowDetails(const base::ListValue* args);
args              159 chrome/browser/ui/webui/plugins_ui.cc   void HandleSetPluginAlwaysAllowed(const base::ListValue* args);
args              219 chrome/browser/ui/webui/plugins_ui.cc void PluginsDOMHandler::HandleRequestPluginsData(const base::ListValue* args) {
args              223 chrome/browser/ui/webui/plugins_ui.cc void PluginsDOMHandler::HandleEnablePluginMessage(const base::ListValue* args) {
args              228 chrome/browser/ui/webui/plugins_ui.cc   if (args->GetSize() != 3) {
args              235 chrome/browser/ui/webui/plugins_ui.cc   if (!args->GetString(1, &enable_str) || !args->GetString(2, &is_group_str)) {
args              244 chrome/browser/ui/webui/plugins_ui.cc     if (!args->GetString(0, &group_name)) {
args              263 chrome/browser/ui/webui/plugins_ui.cc     if (!args->GetString(0, &file_path)) {
args              274 chrome/browser/ui/webui/plugins_ui.cc     const base::ListValue* args) {
args              276 chrome/browser/ui/webui/plugins_ui.cc   if (!args->GetString(0, &details_mode)) {
args              283 chrome/browser/ui/webui/plugins_ui.cc void PluginsDOMHandler::HandleGetShowDetails(const base::ListValue* args) {
args              289 chrome/browser/ui/webui/plugins_ui.cc     const base::ListValue* args) {
args              291 chrome/browser/ui/webui/plugins_ui.cc   if (args->GetSize() != 2) {
args              298 chrome/browser/ui/webui/plugins_ui.cc   if (!args->GetString(0, &plugin) || !args->GetBoolean(1, &allowed)) {
args              386 chrome/browser/ui/webui/policy_ui.cc   void HandleInitialized(const base::ListValue* args);
args              387 chrome/browser/ui/webui/policy_ui.cc   void HandleReloadPolicies(const base::ListValue* args);
args              769 chrome/browser/ui/webui/policy_ui.cc void PolicyUIHandler::HandleInitialized(const base::ListValue* args) {
args              775 chrome/browser/ui/webui/policy_ui.cc void PolicyUIHandler::HandleReloadPolicies(const base::ListValue* args) {
args               30 chrome/browser/ui/webui/predictors/predictors_handler.cc     const base::ListValue* args) {
args               33 chrome/browser/ui/webui/predictors/predictors_handler.h   void RequestAutocompleteActionPredictorDb(const base::ListValue* args);
args              193 chrome/browser/ui/webui/print_preview/print_preview_handler.cc base::DictionaryValue* GetSettingsDictionary(const base::ListValue* args) {
args              195 chrome/browser/ui/webui/print_preview/print_preview_handler.cc   if (!args->GetString(0, &json_str)) {
args              579 chrome/browser/ui/webui/print_preview/print_preview_handler.cc void PrintPreviewHandler::HandleGetPrivetPrinters(const base::ListValue* args) {
args              599 chrome/browser/ui/webui/print_preview/print_preview_handler.cc     const base::ListValue* args) {
args              608 chrome/browser/ui/webui/print_preview/print_preview_handler.cc     const base::ListValue* args) {
args              611 chrome/browser/ui/webui/print_preview/print_preview_handler.cc   bool success = args->GetString(0, &name);
args              621 chrome/browser/ui/webui/print_preview/print_preview_handler.cc void PrintPreviewHandler::HandleGetPreview(const base::ListValue* args) {
args              622 chrome/browser/ui/webui/print_preview/print_preview_handler.cc   DCHECK_EQ(3U, args->GetSize());
args              623 chrome/browser/ui/webui/print_preview/print_preview_handler.cc   scoped_ptr<base::DictionaryValue> settings(GetSettingsDictionary(args));
args              674 chrome/browser/ui/webui/print_preview/print_preview_handler.cc     success = args->GetDouble(1, &draft_page_count_double);
args              679 chrome/browser/ui/webui/print_preview/print_preview_handler.cc     success = args->GetBoolean(2, &preview_modifiable);
args              693 chrome/browser/ui/webui/print_preview/print_preview_handler.cc void PrintPreviewHandler::HandlePrint(const base::ListValue* args) {
args              707 chrome/browser/ui/webui/print_preview/print_preview_handler.cc   scoped_ptr<base::DictionaryValue> settings(GetSettingsDictionary(args));
args              866 chrome/browser/ui/webui/print_preview/print_preview_handler.cc void PrintPreviewHandler::HandleSaveAppState(const base::ListValue* args) {
args              869 chrome/browser/ui/webui/print_preview/print_preview_handler.cc   if (args->GetString(0, &data_to_save) && !data_to_save.empty())
args              876 chrome/browser/ui/webui/print_preview/print_preview_handler.cc     const base::ListValue* args) {
args              878 chrome/browser/ui/webui/print_preview/print_preview_handler.cc   bool ret = args->GetString(0, &printer_name);
args              901 chrome/browser/ui/webui/print_preview/print_preview_handler.cc void PrintPreviewHandler::HandleSignin(const base::ListValue* args) {
args              903 chrome/browser/ui/webui/print_preview/print_preview_handler.cc   bool success = args->GetBoolean(0, &add_account);
args              917 chrome/browser/ui/webui/print_preview/print_preview_handler.cc void PrintPreviewHandler::HandleGetAccessToken(const base::ListValue* args) {
args              919 chrome/browser/ui/webui/print_preview/print_preview_handler.cc   if (!args->GetString(0, &type))
args              996 chrome/browser/ui/webui/print_preview/print_preview_handler.cc     const base::ListValue* args) {
args              998 chrome/browser/ui/webui/print_preview/print_preview_handler.cc   if (!args || !args->GetInteger(0, &page_count))
args             1051 chrome/browser/ui/webui/print_preview/print_preview_handler.cc void PrintPreviewHandler::HandleReportUiEvent(const base::ListValue* args) {
args             1053 chrome/browser/ui/webui/print_preview/print_preview_handler.cc   if (!args->GetInteger(0, &event_group) || !args->GetInteger(1, &event_number))
args             1083 chrome/browser/ui/webui/print_preview/print_preview_handler.cc void PrintPreviewHandler::HandleForceOpenNewTab(const base::ListValue* args) {
args             1085 chrome/browser/ui/webui/print_preview/print_preview_handler.cc   if (!args->GetString(0, &url))
args              114 chrome/browser/ui/webui/print_preview/print_preview_handler.h   void HandleGetPrinters(const base::ListValue* args);
args              117 chrome/browser/ui/webui/print_preview/print_preview_handler.h   void HandleGetPrivetPrinters(const base::ListValue* args);
args              120 chrome/browser/ui/webui/print_preview/print_preview_handler.h   void HandleStopGetPrivetPrinters(const base::ListValue* args);
args              124 chrome/browser/ui/webui/print_preview/print_preview_handler.h   void HandleGetPreview(const base::ListValue* args);
args              128 chrome/browser/ui/webui/print_preview/print_preview_handler.h   void HandlePrint(const base::ListValue* args);
args              132 chrome/browser/ui/webui/print_preview/print_preview_handler.h   void HandleHidePreview(const base::ListValue* args);
args              135 chrome/browser/ui/webui/print_preview/print_preview_handler.h   void HandleCancelPendingPrintRequest(const base::ListValue* args);
args              139 chrome/browser/ui/webui/print_preview/print_preview_handler.h   void HandleSaveAppState(const base::ListValue* args);
args              142 chrome/browser/ui/webui/print_preview/print_preview_handler.h   void HandleGetPrinterCapabilities(const base::ListValue* args);
args              146 chrome/browser/ui/webui/print_preview/print_preview_handler.h   void HandleShowSystemDialog(const base::ListValue* args);
args              153 chrome/browser/ui/webui/print_preview/print_preview_handler.h   void HandleSignin(const base::ListValue* args);
args              156 chrome/browser/ui/webui/print_preview/print_preview_handler.h   void HandleGetAccessToken(const base::ListValue* args);
args              160 chrome/browser/ui/webui/print_preview/print_preview_handler.h   void HandleManageCloudPrint(const base::ListValue* args);
args              164 chrome/browser/ui/webui/print_preview/print_preview_handler.h   void HandleClosePreviewDialog(const base::ListValue* args);
args              168 chrome/browser/ui/webui/print_preview/print_preview_handler.h   void HandleManagePrinters(const base::ListValue* args);
args              172 chrome/browser/ui/webui/print_preview/print_preview_handler.h   void HandlePrintWithCloudPrintDialog(const base::ListValue* args);
args              176 chrome/browser/ui/webui/print_preview/print_preview_handler.h   void HandleGetInitialSettings(const base::ListValue* args);
args              180 chrome/browser/ui/webui/print_preview/print_preview_handler.h   void HandleReportUiEvent(const base::ListValue* args);
args              189 chrome/browser/ui/webui/print_preview/print_preview_handler.h   void HandleForceOpenNewTab(const base::ListValue* args);
args              119 chrome/browser/ui/webui/set_as_default_browser_ui.cc   void HandleLaunchSetDefaultBrowserFlow(const base::ListValue* args);
args              185 chrome/browser/ui/webui/set_as_default_browser_ui.cc     const base::ListValue* args) {
args               26 chrome/browser/ui/webui/signin/inline_login_handler.cc void InlineLoginHandler::HandleInitializeMessage(const base::ListValue* args) {
args               41 chrome/browser/ui/webui/signin/inline_login_handler.cc     const base::ListValue* args) {
args               42 chrome/browser/ui/webui/signin/inline_login_handler.cc   CompleteLogin(args);
args               31 chrome/browser/ui/webui/signin/inline_login_handler.h   void HandleInitializeMessage(const base::ListValue* args);
args               34 chrome/browser/ui/webui/signin/inline_login_handler.h   void HandleCompleteLoginMessage(const base::ListValue* args);
args               37 chrome/browser/ui/webui/signin/inline_login_handler.h   virtual void CompleteLogin(const base::ListValue* args) = 0;
args              241 chrome/browser/ui/webui/signin/inline_login_handler_impl.cc     const base::ListValue* args) {
args              243 chrome/browser/ui/webui/signin/inline_login_handler_impl.cc   CHECK(args->GetString(0, &url_str));
args              258 chrome/browser/ui/webui/signin/inline_login_handler_impl.cc void InlineLoginHandlerImpl::CompleteLogin(const base::ListValue* args) {
args              275 chrome/browser/ui/webui/signin/inline_login_handler_impl.cc   args->GetDictionary(0, &dict);
args               40 chrome/browser/ui/webui/signin/inline_login_handler_impl.h   virtual void CompleteLogin(const base::ListValue* args) OVERRIDE;
args               43 chrome/browser/ui/webui/signin/inline_login_handler_impl.h   void HandleSwitchToFullTabMessage(const base::ListValue* args);
args               38 chrome/browser/ui/webui/signin/profile_signin_confirmation_dialog.cc   void OnCancelButtonClicked(const base::ListValue* args);
args               39 chrome/browser/ui/webui/signin/profile_signin_confirmation_dialog.cc   void OnCreateProfileClicked(const base::ListValue* args);
args               40 chrome/browser/ui/webui/signin/profile_signin_confirmation_dialog.cc   void OnContinueButtonClicked(const base::ListValue* args);
args               74 chrome/browser/ui/webui/signin/profile_signin_confirmation_dialog.cc     const base::ListValue* args) {
args               81 chrome/browser/ui/webui/signin/profile_signin_confirmation_dialog.cc     const base::ListValue* args) {
args               87 chrome/browser/ui/webui/signin/profile_signin_confirmation_dialog.cc     const base::ListValue* args) {
args               66 chrome/browser/ui/webui/signin/user_manager_screen_handler.cc void HandleAndDoNothing(const base::ListValue* args) {
args              201 chrome/browser/ui/webui/signin/user_manager_screen_handler.cc void UserManagerScreenHandler::HandleInitialize(const base::ListValue* args) {
args              208 chrome/browser/ui/webui/signin/user_manager_screen_handler.cc void UserManagerScreenHandler::HandleAddUser(const base::ListValue* args) {
args              215 chrome/browser/ui/webui/signin/user_manager_screen_handler.cc     const base::ListValue* args) {
args              217 chrome/browser/ui/webui/signin/user_manager_screen_handler.cc   if (!args->GetString(0, &email_address))
args              221 chrome/browser/ui/webui/signin/user_manager_screen_handler.cc   if (!args->GetString(1, &display_name))
args              225 chrome/browser/ui/webui/signin/user_manager_screen_handler.cc   if (!args->GetString(2, &password))
args              247 chrome/browser/ui/webui/signin/user_manager_screen_handler.cc     args->GetString(0, &email_string);
args              262 chrome/browser/ui/webui/signin/user_manager_screen_handler.cc void UserManagerScreenHandler::HandleRemoveUser(const base::ListValue* args) {
args              263 chrome/browser/ui/webui/signin/user_manager_screen_handler.cc   DCHECK(args);
args              265 chrome/browser/ui/webui/signin/user_manager_screen_handler.cc   if (!args->Get(0, &profile_path_value))
args              286 chrome/browser/ui/webui/signin/user_manager_screen_handler.cc void UserManagerScreenHandler::HandleLaunchGuest(const base::ListValue* args) {
args              292 chrome/browser/ui/webui/signin/user_manager_screen_handler.cc void UserManagerScreenHandler::HandleLaunchUser(const base::ListValue* args) {
args              296 chrome/browser/ui/webui/signin/user_manager_screen_handler.cc   if (!args->GetString(0, &email_address) ||
args              297 chrome/browser/ui/webui/signin/user_manager_screen_handler.cc       !args->GetString(1, &display_name)) {
args               39 chrome/browser/ui/webui/signin/user_manager_screen_handler.h   void HandleInitialize(const base::ListValue* args);
args               40 chrome/browser/ui/webui/signin/user_manager_screen_handler.h   void HandleAddUser(const base::ListValue* args);
args               41 chrome/browser/ui/webui/signin/user_manager_screen_handler.h   void HandleAuthenticatedLaunchUser(const base::ListValue* args);
args               42 chrome/browser/ui/webui/signin/user_manager_screen_handler.h   void HandleLaunchGuest(const base::ListValue* args);
args               43 chrome/browser/ui/webui/signin/user_manager_screen_handler.h   void HandleLaunchUser(const base::ListValue* args);
args               44 chrome/browser/ui/webui/signin/user_manager_screen_handler.h   void HandleRemoveUser(const base::ListValue* args);
args               26 chrome/browser/ui/webui/signin_internals_ui.h                                           const base::ListValue& args) OVERRIDE;
args               28 chrome/browser/ui/webui/sync_file_system_internals/dump_database_handler.cc void DumpDatabaseHandler::GetDatabaseDump(const base::ListValue* args) {
args               24 chrome/browser/ui/webui/sync_file_system_internals/dump_database_handler.h   void GetDatabaseDump(const base::ListValue* args);
args               74 chrome/browser/ui/webui/sync_file_system_internals/extension_statuses_handler.cc     const base::ListValue* args) {
args               75 chrome/browser/ui/webui/sync_file_system_internals/extension_statuses_handler.cc   DCHECK(args);
args               33 chrome/browser/ui/webui/sync_file_system_internals/extension_statuses_handler.h   void GetExtensionStatuses(const base::ListValue* args);
args               46 chrome/browser/ui/webui/sync_file_system_internals/file_metadata_handler.cc     const base::ListValue* args) {
args               48 chrome/browser/ui/webui/sync_file_system_internals/file_metadata_handler.cc   if (!args->GetString(0, &extension_id) || extension_id.empty()) {
args               68 chrome/browser/ui/webui/sync_file_system_internals/file_metadata_handler.cc void FileMetadataHandler::GetExtensions(const base::ListValue* args) {
args               69 chrome/browser/ui/webui/sync_file_system_internals/file_metadata_handler.cc   DCHECK(args);
args               32 chrome/browser/ui/webui/sync_file_system_internals/file_metadata_handler.h   void GetExtensions(const base::ListValue* args);
args               34 chrome/browser/ui/webui/sync_file_system_internals/file_metadata_handler.h   void GetFileMetadata(const base::ListValue* args);
args               85 chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_internals_handler.cc     const base::ListValue* args) {
args               98 chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_internals_handler.cc     const base::ListValue* args) {
args              110 chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_internals_handler.cc     const base::ListValue* args) {
args              115 chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_internals_handler.cc   if (!args->GetInteger(0, &last_log_id_sent))
args              140 chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_internals_handler.cc void SyncFileSystemInternalsHandler::ClearLogs(const base::ListValue* args) {
args               42 chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_internals_handler.h   void GetServiceStatus(const base::ListValue* args);
args               43 chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_internals_handler.h   void GetNotificationSource(const base::ListValue* args);
args               44 chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_internals_handler.h   void GetLog(const base::ListValue* args);
args               45 chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_internals_handler.h   void ClearLogs(const base::ListValue* args);
args               63 chrome/browser/ui/webui/sync_internals_message_handler.cc     const base::ListValue* args) {
args               64 chrome/browser/ui/webui/sync_internals_message_handler.cc   DCHECK(args->empty());
args               76 chrome/browser/ui/webui/sync_internals_message_handler.cc     const base::ListValue* args) {
args               77 chrome/browser/ui/webui/sync_internals_message_handler.cc   DCHECK(args->empty());
args               82 chrome/browser/ui/webui/sync_internals_message_handler.cc     const base::ListValue* args) {
args               83 chrome/browser/ui/webui/sync_internals_message_handler.cc   DCHECK(args->empty());
args               99 chrome/browser/ui/webui/sync_internals_message_handler.cc     const std::string& name, const JsArgList& args) {
args              101 chrome/browser/ui/webui/sync_internals_message_handler.cc            << " with args " << args.ToString();
args              103 chrome/browser/ui/webui/sync_internals_message_handler.cc   std::vector<const base::Value*> arg_list(args.Get().begin(),
args              104 chrome/browser/ui/webui/sync_internals_message_handler.cc                                            args.Get().end());
args              152 chrome/browser/ui/webui/sync_internals_message_handler.cc     const base::ListValue* args) {
args              154 chrome/browser/ui/webui/sync_internals_message_handler.cc     scoped_ptr<base::ListValue> args_copy(args->DeepCopy());
args               41 chrome/browser/ui/webui/sync_internals_message_handler.h   void HandleRegisterForEvents(const base::ListValue* args);
args               44 chrome/browser/ui/webui/sync_internals_message_handler.h   void HandleRequestUpdatedAboutInfo(const base::ListValue* args);
args               47 chrome/browser/ui/webui/sync_internals_message_handler.h   void HandleRequestListOfTypes(const base::ListValue* args);
args               57 chrome/browser/ui/webui/sync_internals_message_handler.h       const syncer::JsArgList& args) OVERRIDE;
args              340 chrome/browser/ui/webui/sync_setup_handler.cc   base::DictionaryValue args;
args              352 chrome/browser/ui/webui/sync_setup_handler.cc     args.SetBoolean(key_name + "Registered",
args              354 chrome/browser/ui/webui/sync_setup_handler.cc     args.SetBoolean(key_name + "Synced", preferred_types.Has(sync_type));
args              357 chrome/browser/ui/webui/sync_setup_handler.cc   args.SetBoolean("passphraseFailed", passphrase_failed);
args              358 chrome/browser/ui/webui/sync_setup_handler.cc   args.SetBoolean("showSyncEverythingPage", !show_advanced);
args              359 chrome/browser/ui/webui/sync_setup_handler.cc   args.SetBoolean("syncAllDataTypes", sync_prefs.HasKeepEverythingSynced());
args              360 chrome/browser/ui/webui/sync_setup_handler.cc   args.SetBoolean("syncNothing", false);  // Always false during initial setup.
args              361 chrome/browser/ui/webui/sync_setup_handler.cc   args.SetBoolean("encryptAllData", service->EncryptEverythingEnabled());
args              366 chrome/browser/ui/webui/sync_setup_handler.cc   args.SetBoolean("showPassphrase", service->IsPassphraseRequired());
args              370 chrome/browser/ui/webui/sync_setup_handler.cc   args.SetBoolean("usePassphrase",
args              377 chrome/browser/ui/webui/sync_setup_handler.cc     args.SetString(
args              381 chrome/browser/ui/webui/sync_setup_handler.cc     args.SetString(
args              387 chrome/browser/ui/webui/sync_setup_handler.cc         args.SetString(
args              393 chrome/browser/ui/webui/sync_setup_handler.cc         args.SetString(
args              399 chrome/browser/ui/webui/sync_setup_handler.cc         args.SetString(
args              405 chrome/browser/ui/webui/sync_setup_handler.cc     args.SetString(
args              409 chrome/browser/ui/webui/sync_setup_handler.cc     args.SetString(
args              416 chrome/browser/ui/webui/sync_setup_handler.cc       "SyncSetupOverlay.showSyncSetupPage", page, args);
args              550 chrome/browser/ui/webui/sync_setup_handler.cc   base::DictionaryValue args;
args              560 chrome/browser/ui/webui/sync_setup_handler.cc       "SyncSetupOverlay.showSyncSetupPage", page, args);
args              573 chrome/browser/ui/webui/sync_setup_handler.cc   base::DictionaryValue args;
args              575 chrome/browser/ui/webui/sync_setup_handler.cc       "SyncSetupOverlay.showSyncSetupPage", page, args);
args              578 chrome/browser/ui/webui/sync_setup_handler.cc void SyncSetupHandler::OnDidClosePage(const base::ListValue* args) {
args              611 chrome/browser/ui/webui/sync_setup_handler.cc void SyncSetupHandler::HandleConfigure(const base::ListValue* args) {
args              614 chrome/browser/ui/webui/sync_setup_handler.cc   if (!args->GetString(0, &json)) {
args              729 chrome/browser/ui/webui/sync_setup_handler.cc void SyncSetupHandler::HandleShowSetupUI(const base::ListValue* args) {
args              764 chrome/browser/ui/webui/sync_setup_handler.cc void SyncSetupHandler::HandleDoSignOutOnAuthError(const base::ListValue* args) {
args              771 chrome/browser/ui/webui/sync_setup_handler.cc void SyncSetupHandler::HandleStartSignin(const base::ListValue* args) {
args              778 chrome/browser/ui/webui/sync_setup_handler.cc void SyncSetupHandler::HandleStopSyncing(const base::ListValue* args) {
args              785 chrome/browser/ui/webui/sync_setup_handler.cc void SyncSetupHandler::HandleCloseTimeout(const base::ListValue* args) {
args              106 chrome/browser/ui/webui/sync_setup_handler.h   void OnDidClosePage(const base::ListValue* args);
args              107 chrome/browser/ui/webui/sync_setup_handler.h   void HandleConfigure(const base::ListValue* args);
args              108 chrome/browser/ui/webui/sync_setup_handler.h   void HandlePassphraseEntry(const base::ListValue* args);
args              109 chrome/browser/ui/webui/sync_setup_handler.h   void HandlePassphraseCancel(const base::ListValue* args);
args              110 chrome/browser/ui/webui/sync_setup_handler.h   void HandleShowSetupUI(const base::ListValue* args);
args              111 chrome/browser/ui/webui/sync_setup_handler.h   void HandleDoSignOutOnAuthError(const base::ListValue* args);
args              112 chrome/browser/ui/webui/sync_setup_handler.h   void HandleStartSignin(const base::ListValue* args);
args              113 chrome/browser/ui/webui/sync_setup_handler.h   void HandleStopSyncing(const base::ListValue* args);
args              114 chrome/browser/ui/webui/sync_setup_handler.h   void HandleCloseTimeout(const base::ListValue* args);
args               96 chrome/browser/ui/webui/sync_setup_handler_unittest.cc   std::string args;
args               97 chrome/browser/ui/webui/sync_setup_handler_unittest.cc   base::JSONWriter::Write(&result, &args);
args               98 chrome/browser/ui/webui/sync_setup_handler_unittest.cc   return args;
args              221 chrome/browser/ui/webui/sync_setup_handler_unittest.cc                                    const base::ListValue& args) OVERRIDE {}
args              233 chrome/browser/ui/webui/sync_setup_handler_unittest.cc       const std::vector<const base::Value*>& args) OVERRIDE {}
args              635 chrome/browser/ui/webui/sync_setup_handler_unittest.cc   std::string args = GetConfiguration(
args              638 chrome/browser/ui/webui/sync_setup_handler_unittest.cc   list_args.Append(new base::StringValue(args));
args              653 chrome/browser/ui/webui/sync_setup_handler_unittest.cc   std::string args = GetConfiguration(
args              656 chrome/browser/ui/webui/sync_setup_handler_unittest.cc   list_args.Append(new base::StringValue(args));
args              668 chrome/browser/ui/webui/sync_setup_handler_unittest.cc   std::string args = GetConfiguration(
args              671 chrome/browser/ui/webui/sync_setup_handler_unittest.cc   list_args.Append(new base::StringValue(args));
args              687 chrome/browser/ui/webui/sync_setup_handler_unittest.cc   std::string args = GetConfiguration(
args              690 chrome/browser/ui/webui/sync_setup_handler_unittest.cc   list_args.Append(new base::StringValue(args));
args              710 chrome/browser/ui/webui/sync_setup_handler_unittest.cc   std::string args = GetConfiguration(&dict,
args              716 chrome/browser/ui/webui/sync_setup_handler_unittest.cc   list_args.Append(new base::StringValue(args));
args              737 chrome/browser/ui/webui/sync_setup_handler_unittest.cc   std::string args = GetConfiguration(&dict,
args              743 chrome/browser/ui/webui/sync_setup_handler_unittest.cc   list_args.Append(new base::StringValue(args));
args              764 chrome/browser/ui/webui/sync_setup_handler_unittest.cc   std::string args = GetConfiguration(&dict,
args              770 chrome/browser/ui/webui/sync_setup_handler_unittest.cc   list_args.Append(new base::StringValue(args));
args              804 chrome/browser/ui/webui/sync_setup_handler_unittest.cc     std::string args = GetConfiguration(NULL,
args              810 chrome/browser/ui/webui/sync_setup_handler_unittest.cc     list_args.Append(new base::StringValue(args));
args              827 chrome/browser/ui/webui/sync_setup_handler_unittest.cc   std::string args = GetConfiguration(NULL,
args              833 chrome/browser/ui/webui/sync_setup_handler_unittest.cc   list_args.Append(new base::StringValue(args));
args              123 chrome/browser/ui/webui/translate_internals/translate_internals_handler.cc void TranslateInternalsHandler::OnRemovePrefItem(const base::ListValue* args) {
args              132 chrome/browser/ui/webui/translate_internals/translate_internals_handler.cc   if (!args->GetString(0, &pref_name))
args              137 chrome/browser/ui/webui/translate_internals/translate_internals_handler.cc     if (!args->GetString(1, &language))
args              142 chrome/browser/ui/webui/translate_internals/translate_internals_handler.cc     if (!args->GetString(1, &language))
args              147 chrome/browser/ui/webui/translate_internals/translate_internals_handler.cc     if (!args->GetString(1, &site))
args              152 chrome/browser/ui/webui/translate_internals/translate_internals_handler.cc     if (!args->GetString(1, &from))
args              154 chrome/browser/ui/webui/translate_internals/translate_internals_handler.cc     if (!args->GetString(2, &to))
args               58 chrome/browser/ui/webui/translate_internals/translate_internals_handler.h   void OnRemovePrefItem(const base::ListValue* args);
args               64 chrome/browser/ui/webui/translate_internals/translate_internals_handler.h   void OnRequestInfo(const base::ListValue* args);
args              181 chrome/browser/ui/webui/uber/uber_ui.cc                                         const base::ListValue& args) {
args              194 chrome/browser/ui/webui/uber/uber_ui.cc   subpage->second->ProcessWebUIMessage(source_url, message, args);
args               30 chrome/browser/ui/webui/uber/uber_ui.h                                           const base::ListValue& args) OVERRIDE;
args               64 chrome/browser/ui/webui/version_handler.cc void VersionHandler::HandleRequestVersionInfo(const base::ListValue* args) {
args               27 chrome/browser/ui/webui/version_handler.h   virtual void HandleRequestVersionInfo(const base::ListValue* args);
args               17 chrome/browser/ui/webui/version_handler_chromeos.cc     const base::ListValue* args) {
args               25 chrome/browser/ui/webui/version_handler_chromeos.cc   VersionHandler::HandleRequestVersionInfo(args);
args               21 chrome/browser/ui/webui/version_handler_chromeos.h   virtual void HandleRequestVersionInfo(const base::ListValue* args) OVERRIDE;
args               45 chrome/browser/ui/webui/welcome_handler_android.cc     const base::ListValue* args) {
args               49 chrome/browser/ui/webui/welcome_handler_android.cc void WelcomeHandler::HandleShowSyncSettings(const base::ListValue* args) {
args               53 chrome/browser/ui/webui/welcome_handler_android.cc void WelcomeHandler::HandleShowTermsOfService(const base::ListValue* args) {
args               29 chrome/browser/ui/webui/welcome_handler_android.h   void HandleUpdateSyncFooterVisibility(const base::ListValue* args);
args               33 chrome/browser/ui/webui/welcome_handler_android.h   void HandleShowSyncSettings(const base::ListValue* args);
args               37 chrome/browser/ui/webui/welcome_handler_android.h   void HandleShowTermsOfService(const base::ListValue* args);
args               38 chrome/common/extensions/update_manifest.cc   va_list args;
args               39 chrome/common/extensions/update_manifest.cc   va_start(args, details);
args               45 chrome/common/extensions/update_manifest.cc   base::StringAppendV(&errors_, details, args);
args               46 chrome/common/extensions/update_manifest.cc   va_end(args);
args               88 chrome/common/extensions/update_manifest.cc   va_list args;
args               89 chrome/common/extensions/update_manifest.cc   va_start(args, message);
args               91 chrome/common/extensions/update_manifest.cc   base::StringAppendV(error, message, args);
args               92 chrome/common/extensions/update_manifest.cc   va_end(args);
args              174 chrome/common/mac/mock_launchd.cc   base::ScopedCFTypeRef<CFArrayRef> args(CFArrayCreate(
args              179 chrome/common/mac/mock_launchd.cc     const void *values[] = { path, args };
args              243 chrome/common/mac/mock_launchd.cc   const void *values[] = { path, args, socket_dict };
args               64 chrome/installer/setup/setup_util.cc   CommandLine::StringVector args(command_line.GetArgs());
args               65 chrome/installer/setup/setup_util.cc   for (CommandLine::StringVector::const_iterator i = args.begin();
args               66 chrome/installer/setup/setup_util.cc        i != args.end(); ++i) {
args               30 chrome/installer/util/product_state_unittest.cc   void ApplyUninstallCommand(const wchar_t* exe_path, const wchar_t* args);
args               96 chrome/installer/util/product_state_unittest.cc                                              const wchar_t* args) {
args              106 chrome/installer/util/product_state_unittest.cc   if (args == NULL) {
args              113 chrome/installer/util/product_state_unittest.cc                                        args));
args             1208 chrome/installer/util/shell_util.cc              const base::string16& args) const;
args             1227 chrome/installer/util/shell_util.cc                            const base::string16& args) const {
args             1230 chrome/installer/util/shell_util.cc   if (require_args_ && args.empty())
args             1288 chrome/installer/util/shell_util.cc   base::string16 args;
args             1289 chrome/installer/util/shell_util.cc   if (!base::win::ResolveShortcut(shortcut_path, NULL, &args))
args             1293 chrome/installer/util/shell_util.cc       L"unused_program %ls", args.c_str())));
args             1306 chrome/installer/util/shell_util.cc     shortcuts->push_back(std::make_pair(shortcut_path, args));
args             1340 chrome/installer/util/shell_util.cc   base::string16 args;
args             1346 chrome/installer/util/shell_util.cc     if (base::win::ResolveShortcut(shortcut_path, &target_path, &args)) {
args             1347 chrome/installer/util/shell_util.cc       if (shortcut_filter.Run(target_path, args) &&
args               84 chrome/renderer/benchmarking_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args,
args               89 chrome/renderer/benchmarking_extension.cc     args[0]->ToString()->WriteUtf8(&name[2], capacity - 3);
args               92 chrome/renderer/benchmarking_extension.cc   static void GetCounter(const v8::FunctionCallbackInfo<v8::Value>& args) {
args               93 chrome/renderer/benchmarking_extension.cc     if (!args.Length() || !args[0]->IsString() || !base::StatsTable::current())
args               97 chrome/renderer/benchmarking_extension.cc     ExtractCounterName(args, name, sizeof(name));
args               99 chrome/renderer/benchmarking_extension.cc     args.GetReturnValue().Set(static_cast<int32_t>(counter));
args              103 chrome/renderer/benchmarking_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args              104 chrome/renderer/benchmarking_extension.cc     if (!args.Length() || !args[0]->IsString() || !base::StatsTable::current())
args              108 chrome/renderer/benchmarking_extension.cc     ExtractCounterName(args, name, sizeof(name));
args              112 chrome/renderer/benchmarking_extension.cc     args.GetReturnValue().Set(static_cast<int32_t>(counter));
args              115 chrome/renderer/benchmarking_extension.cc   static void IsSingleProcess(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              116 chrome/renderer/benchmarking_extension.cc     args.GetReturnValue().Set(
args              120 chrome/renderer/benchmarking_extension.cc   static void HiResTime(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              121 chrome/renderer/benchmarking_extension.cc     args.GetReturnValue().Set(
args               27 chrome/renderer/extensions/api_activity_logger.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               28 chrome/renderer/extensions/api_activity_logger.cc   LogInternal(APICALL, args);
args               33 chrome/renderer/extensions/api_activity_logger.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               34 chrome/renderer/extensions/api_activity_logger.cc   LogInternal(EVENT, args);
args               40 chrome/renderer/extensions/api_activity_logger.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               41 chrome/renderer/extensions/api_activity_logger.cc   DCHECK_GT(args.Length(), 2);
args               42 chrome/renderer/extensions/api_activity_logger.cc   DCHECK(args[0]->IsString());
args               43 chrome/renderer/extensions/api_activity_logger.cc   DCHECK(args[1]->IsString());
args               44 chrome/renderer/extensions/api_activity_logger.cc   DCHECK(args[2]->IsArray());
args               46 chrome/renderer/extensions/api_activity_logger.cc   std::string ext_id = *v8::String::Utf8Value(args[0]);
args               48 chrome/renderer/extensions/api_activity_logger.cc   params.api_call = *v8::String::Utf8Value(args[1]);
args               49 chrome/renderer/extensions/api_activity_logger.cc   if (args.Length() == 4)  // Extras are optional.
args               50 chrome/renderer/extensions/api_activity_logger.cc     params.extra = *v8::String::Utf8Value(args[3]);
args               55 chrome/renderer/extensions/api_activity_logger.cc   v8::Local<v8::Array> arg_array = v8::Local<v8::Array>::Cast(args[2]);
args               65 chrome/renderer/extensions/api_activity_logger.cc                     args.GetIsolate()->GetCurrentContext()));
args               35 chrome/renderer/extensions/api_activity_logger.h    static void LogAPICall(const v8::FunctionCallbackInfo<v8::Value>& args);
args               42 chrome/renderer/extensions/api_activity_logger.h    static void LogEvent(const v8::FunctionCallbackInfo<v8::Value>& args);
args               47 chrome/renderer/extensions/api_activity_logger.h                            const v8::FunctionCallbackInfo<v8::Value>& args);
args               24 chrome/renderer/extensions/api_definitions_natives.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               36 chrome/renderer/extensions/api_definitions_natives.cc   args.GetReturnValue().Set(
args               25 chrome/renderer/extensions/api_definitions_natives.h       const v8::FunctionCallbackInfo<v8::Value>& args);
args               76 chrome/renderer/extensions/app_bindings.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               82 chrome/renderer/extensions/app_bindings.cc   args.GetReturnValue().Set(result);
args               86 chrome/renderer/extensions/app_bindings.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               88 chrome/renderer/extensions/app_bindings.cc   args.GetReturnValue().Set(GetDetailsForFrameImpl(context()->web_frame()));
args               92 chrome/renderer/extensions/app_bindings.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               97 chrome/renderer/extensions/app_bindings.cc   if (args.Length() < 0) {
args              103 chrome/renderer/extensions/app_bindings.cc   if (!args[0]->IsObject()) {
args              110 chrome/renderer/extensions/app_bindings.cc       v8::Local<v8::Object>::Cast(args[0])->CreationContext();
args              115 chrome/renderer/extensions/app_bindings.cc     console::Error(args.GetIsolate()->GetCallingContext(),
args              120 chrome/renderer/extensions/app_bindings.cc   args.GetReturnValue().Set(GetDetailsForFrameImpl(target_frame));
args              145 chrome/renderer/extensions/app_bindings.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              148 chrome/renderer/extensions/app_bindings.cc   if (args.Length() == 1) {
args              149 chrome/renderer/extensions/app_bindings.cc     if (!args[0]->IsInt32()) {
args              154 chrome/renderer/extensions/app_bindings.cc     callback_id = args[0]->Int32Value();
args              166 chrome/renderer/extensions/app_bindings.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              184 chrome/renderer/extensions/app_bindings.cc     args.GetReturnValue().Set(v8::String::NewFromUtf8(
args              201 chrome/renderer/extensions/app_bindings.cc   args.GetReturnValue()
args               33 chrome/renderer/extensions/app_bindings.h   void GetIsInstalled(const v8::FunctionCallbackInfo<v8::Value>& args);
args               34 chrome/renderer/extensions/app_bindings.h   void GetDetails(const v8::FunctionCallbackInfo<v8::Value>& args);
args               35 chrome/renderer/extensions/app_bindings.h   void GetDetailsForFrame(const v8::FunctionCallbackInfo<v8::Value>& args);
args               36 chrome/renderer/extensions/app_bindings.h   void GetInstallState(const v8::FunctionCallbackInfo<v8::Value>& args);
args               37 chrome/renderer/extensions/app_bindings.h   void GetRunningState(const v8::FunctionCallbackInfo<v8::Value>& args);
args               20 chrome/renderer/extensions/app_runtime_custom_bindings.cc void DeserializeString(const v8::FunctionCallbackInfo<v8::Value> &args) {
args               21 chrome/renderer/extensions/app_runtime_custom_bindings.cc   DCHECK(args.Length() == 1);
args               22 chrome/renderer/extensions/app_runtime_custom_bindings.cc   DCHECK(args[0]->IsString());
args               24 chrome/renderer/extensions/app_runtime_custom_bindings.cc   std::string data_v8(*v8::String::Utf8Value(args[0]));
args               28 chrome/renderer/extensions/app_runtime_custom_bindings.cc   args.GetReturnValue().Set(serialized.deserialize());
args               31 chrome/renderer/extensions/app_runtime_custom_bindings.cc void SerializeToString(const v8::FunctionCallbackInfo<v8::Value> &args) {
args               32 chrome/renderer/extensions/app_runtime_custom_bindings.cc   DCHECK(args.Length() == 1);
args               34 chrome/renderer/extensions/app_runtime_custom_bindings.cc       WebSerializedScriptValue::serialize(args[0]);
args               38 chrome/renderer/extensions/app_runtime_custom_bindings.cc   args.GetReturnValue()
args               39 chrome/renderer/extensions/app_runtime_custom_bindings.cc       .Set(v8::String::NewFromUtf8(args.GetIsolate(), v.c_str()));
args               42 chrome/renderer/extensions/app_runtime_custom_bindings.cc void CreateBlob(const v8::FunctionCallbackInfo<v8::Value> &args) {
args               43 chrome/renderer/extensions/app_runtime_custom_bindings.cc   DCHECK(args.Length() == 2);
args               44 chrome/renderer/extensions/app_runtime_custom_bindings.cc   DCHECK(args[0]->IsString());
args               45 chrome/renderer/extensions/app_runtime_custom_bindings.cc   DCHECK(args[1]->IsNumber());
args               47 chrome/renderer/extensions/app_runtime_custom_bindings.cc   std::string blob_file_path(*v8::String::Utf8Value(args[0]));
args               48 chrome/renderer/extensions/app_runtime_custom_bindings.cc   std::string blob_length_string(*v8::String::Utf8Value(args[1]));
args               53 chrome/renderer/extensions/app_runtime_custom_bindings.cc   args.GetReturnValue().Set(web_blob.toV8Value());
args               70 chrome/renderer/extensions/app_window_custom_bindings.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               73 chrome/renderer/extensions/app_window_custom_bindings.cc   if (args.Length() != 2)
args               76 chrome/renderer/extensions/app_window_custom_bindings.cc   if (!args[0]->IsInt32())
args               79 chrome/renderer/extensions/app_window_custom_bindings.cc   if (!args[1]->IsBoolean())
args               82 chrome/renderer/extensions/app_window_custom_bindings.cc   int view_id = args[0]->Int32Value();
args               84 chrome/renderer/extensions/app_window_custom_bindings.cc   bool inject_titlebar = args[1]->BooleanValue();
args              110 chrome/renderer/extensions/app_window_custom_bindings.cc   args.GetReturnValue().Set(window);
args              114 chrome/renderer/extensions/app_window_custom_bindings.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              115 chrome/renderer/extensions/app_window_custom_bindings.cc   CHECK_EQ(args.Length(), 0);
args              117 chrome/renderer/extensions/app_window_custom_bindings.cc   v8::Handle<v8::Value> result = v8::String::Empty(args.GetIsolate());
args              127 chrome/renderer/extensions/app_window_custom_bindings.cc   args.GetReturnValue().Set(result);
args               19 chrome/renderer/extensions/app_window_custom_bindings.h   void GetView(const v8::FunctionCallbackInfo<v8::Value>& args);
args               24 chrome/renderer/extensions/app_window_custom_bindings.h       const v8::FunctionCallbackInfo<v8::Value>& args);
args               15 chrome/renderer/extensions/blob_native_handler.cc void GetBlobUuid(const v8::FunctionCallbackInfo<v8::Value>& args) {
args               16 chrome/renderer/extensions/blob_native_handler.cc   DCHECK_EQ(1, args.Length());
args               17 chrome/renderer/extensions/blob_native_handler.cc   blink::WebBlob blob = blink::WebBlob::fromV8Value(args[0]);
args               18 chrome/renderer/extensions/blob_native_handler.cc   args.GetReturnValue().Set(
args               19 chrome/renderer/extensions/blob_native_handler.cc       v8::String::NewFromUtf8(args.GetIsolate(), blob.uuid().utf8().data()));
args              189 chrome/renderer/extensions/cast_streaming_native_handler.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              190 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK_EQ(3, args.Length());
args              191 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK(args[0]->IsObject());
args              192 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK(args[1]->IsObject());
args              193 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK(args[2]->IsFunction());
args              196 chrome/renderer/extensions/cast_streaming_native_handler.cc       blink::WebDOMMediaStreamTrack::fromV8Value(args[0]);
args              200 chrome/renderer/extensions/cast_streaming_native_handler.cc       blink::WebDOMMediaStreamTrack::fromV8Value(args[1]);
args              212 chrome/renderer/extensions/cast_streaming_native_handler.cc   create_callback_.reset(args[2].As<v8::Function>());
args              284 chrome/renderer/extensions/cast_streaming_native_handler.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              285 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK_EQ(1, args.Length());
args              286 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK(args[0]->IsInt32());
args              288 chrome/renderer/extensions/cast_streaming_native_handler.cc   const int transport_id = args[0]->ToInt32()->Value();
args              295 chrome/renderer/extensions/cast_streaming_native_handler.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              296 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK_EQ(1, args.Length());
args              297 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK(args[0]->IsInt32());
args              299 chrome/renderer/extensions/cast_streaming_native_handler.cc   const int transport_id = args[0]->ToInt32()->Value();
args              307 chrome/renderer/extensions/cast_streaming_native_handler.cc       v8::Array::New(args.GetIsolate(),
args              317 chrome/renderer/extensions/cast_streaming_native_handler.cc   args.GetReturnValue().Set(result);
args              321 chrome/renderer/extensions/cast_streaming_native_handler.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              322 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK_EQ(2, args.Length());
args              323 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK(args[0]->IsInt32());
args              324 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK(args[1]->IsObject());
args              326 chrome/renderer/extensions/cast_streaming_native_handler.cc   const int transport_id = args[0]->ToInt32()->Value();
args              333 chrome/renderer/extensions/cast_streaming_native_handler.cc       converter->FromV8Value(args[1], context()->v8_context()));
args              335 chrome/renderer/extensions/cast_streaming_native_handler.cc     args.GetIsolate()->ThrowException(v8::Exception::TypeError(
args              336 chrome/renderer/extensions/cast_streaming_native_handler.cc         v8::String::NewFromUtf8(args.GetIsolate(), kUnableToConvertParams)));
args              341 chrome/renderer/extensions/cast_streaming_native_handler.cc     args.GetIsolate()->ThrowException(v8::Exception::TypeError(
args              342 chrome/renderer/extensions/cast_streaming_native_handler.cc         v8::String::NewFromUtf8(args.GetIsolate(), kInvalidRtpParams)));
args              367 chrome/renderer/extensions/cast_streaming_native_handler.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              368 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK_EQ(1, args.Length());
args              369 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK(args[0]->IsInt32());
args              371 chrome/renderer/extensions/cast_streaming_native_handler.cc   const int transport_id = args[0]->ToInt32()->Value();
args              379 chrome/renderer/extensions/cast_streaming_native_handler.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              380 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK_EQ(1, args.Length());
args              381 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK(args[0]->IsInt32());
args              383 chrome/renderer/extensions/cast_streaming_native_handler.cc   const int transport_id = args[0]->ToInt32()->Value();
args              390 chrome/renderer/extensions/cast_streaming_native_handler.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              391 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK_EQ(2, args.Length());
args              392 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK(args[0]->IsInt32());
args              393 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK(args[1]->IsObject());
args              395 chrome/renderer/extensions/cast_streaming_native_handler.cc   const int transport_id = args[0]->ToInt32()->Value();
args              402 chrome/renderer/extensions/cast_streaming_native_handler.cc       converter->FromV8Value(args[1], context()->v8_context()));
args              404 chrome/renderer/extensions/cast_streaming_native_handler.cc     args.GetIsolate()->ThrowException(v8::Exception::TypeError(
args              405 chrome/renderer/extensions/cast_streaming_native_handler.cc         v8::String::NewFromUtf8(args.GetIsolate(), kUnableToConvertArgs)));
args              411 chrome/renderer/extensions/cast_streaming_native_handler.cc     args.GetIsolate()->ThrowException(v8::Exception::TypeError(
args              412 chrome/renderer/extensions/cast_streaming_native_handler.cc         v8::String::NewFromUtf8(args.GetIsolate(), kInvalidDestination)));
args              417 chrome/renderer/extensions/cast_streaming_native_handler.cc     args.GetIsolate()->ThrowException(v8::Exception::TypeError(
args              418 chrome/renderer/extensions/cast_streaming_native_handler.cc         v8::String::NewFromUtf8(args.GetIsolate(), kInvalidDestination)));
args              425 chrome/renderer/extensions/cast_streaming_native_handler.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              426 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK_EQ(2, args.Length());
args              427 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK(args[0]->IsInt32());
args              428 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK(args[1]->IsBoolean());
args              430 chrome/renderer/extensions/cast_streaming_native_handler.cc   const int stream_id = args[0]->ToInt32()->Value();
args              435 chrome/renderer/extensions/cast_streaming_native_handler.cc   const bool enable = args[1]->ToBoolean()->Value();
args              440 chrome/renderer/extensions/cast_streaming_native_handler.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              441 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK_EQ(2, args.Length());
args              442 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK(args[0]->IsInt32());
args              443 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK(args[1]->IsFunction());
args              444 chrome/renderer/extensions/cast_streaming_native_handler.cc   const int transport_id = args[0]->ToInt32()->Value();
args              451 chrome/renderer/extensions/cast_streaming_native_handler.cc   callback->reset(args[1].As<v8::Function>());
args              461 chrome/renderer/extensions/cast_streaming_native_handler.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              462 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK_EQ(2, args.Length());
args              463 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK(args[0]->IsInt32());
args              464 chrome/renderer/extensions/cast_streaming_native_handler.cc   CHECK(args[1]->IsFunction());
args              465 chrome/renderer/extensions/cast_streaming_native_handler.cc   const int transport_id = args[0]->ToInt32()->Value();
args              472 chrome/renderer/extensions/cast_streaming_native_handler.cc   callback->reset(args[1].As<v8::Function>());
args               36 chrome/renderer/extensions/cast_streaming_native_handler.h       const v8::FunctionCallbackInfo<v8::Value>& args);
args               39 chrome/renderer/extensions/cast_streaming_native_handler.h       const v8::FunctionCallbackInfo<v8::Value>& args);
args               41 chrome/renderer/extensions/cast_streaming_native_handler.h       const v8::FunctionCallbackInfo<v8::Value>& args);
args               43 chrome/renderer/extensions/cast_streaming_native_handler.h       const v8::FunctionCallbackInfo<v8::Value>& args);
args               45 chrome/renderer/extensions/cast_streaming_native_handler.h       const v8::FunctionCallbackInfo<v8::Value>& args);
args               47 chrome/renderer/extensions/cast_streaming_native_handler.h       const v8::FunctionCallbackInfo<v8::Value>& args);
args               50 chrome/renderer/extensions/cast_streaming_native_handler.h       const v8::FunctionCallbackInfo<v8::Value>& args);
args               52 chrome/renderer/extensions/cast_streaming_native_handler.h       const v8::FunctionCallbackInfo<v8::Value>& args);
args               54 chrome/renderer/extensions/cast_streaming_native_handler.h       const v8::FunctionCallbackInfo<v8::Value>& args);
args               56 chrome/renderer/extensions/cast_streaming_native_handler.h   void ToggleLogging(const v8::FunctionCallbackInfo<v8::Value>& args);
args               57 chrome/renderer/extensions/cast_streaming_native_handler.h   void GetRawEvents(const v8::FunctionCallbackInfo<v8::Value>& args);
args               58 chrome/renderer/extensions/cast_streaming_native_handler.h   void GetStats(const v8::FunctionCallbackInfo<v8::Value>& args);
args              124 chrome/renderer/extensions/chrome_v8_context.cc                                     v8::Handle<v8::Array> args) const {
args              129 chrome/renderer/extensions/chrome_v8_context.cc       v8::String::NewFromUtf8(isolate(), event_name), args};
args              102 chrome/renderer/extensions/chrome_v8_context.h   void DispatchEvent(const char* event_name, v8::Handle<v8::Array> args) const;
args               15 chrome/renderer/extensions/context_menus_custom_bindings.cc void GetNextContextMenuId(const v8::FunctionCallbackInfo<v8::Value>& args) {
args               19 chrome/renderer/extensions/context_menus_custom_bindings.cc   args.GetReturnValue().Set(static_cast<int32_t>(context_menu_id));
args               24 chrome/renderer/extensions/css_native_handler.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               25 chrome/renderer/extensions/css_native_handler.cc   CHECK_EQ(args.Length(), 1);
args               26 chrome/renderer/extensions/css_native_handler.cc   CHECK(args[0]->IsString());
args               28 chrome/renderer/extensions/css_native_handler.cc       blink::WebScriptBindings::toWebString(args[0].As<v8::String>());
args               31 chrome/renderer/extensions/css_native_handler.cc   args.GetReturnValue().Set(blink::WebScriptBindings::toV8String(
args               22 chrome/renderer/extensions/css_native_handler.h       const v8::FunctionCallbackInfo<v8::Value>& args);
args              163 chrome/renderer/extensions/dispatcher.cc   void GetAPIFeatures(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              169 chrome/renderer/extensions/dispatcher.cc     args.GetReturnValue().Set(
args              191 chrome/renderer/extensions/dispatcher.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args              192 chrome/renderer/extensions/dispatcher.cc     args.GetReturnValue().Set(v8::Boolean::New(
args              193 chrome/renderer/extensions/dispatcher.cc         args.GetIsolate(),
args              198 chrome/renderer/extensions/dispatcher.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args              200 chrome/renderer/extensions/dispatcher.cc     CHECK_EQ(args.Length(), 1);
args              201 chrome/renderer/extensions/dispatcher.cc     CHECK(args[0]->IsFunction());
args              203 chrome/renderer/extensions/dispatcher.cc     context()->CallFunction(v8::Handle<v8::Function>::Cast(args[0]),
args              208 chrome/renderer/extensions/dispatcher.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args              210 chrome/renderer/extensions/dispatcher.cc     CHECK_EQ(args.Length(), 1);
args              211 chrome/renderer/extensions/dispatcher.cc     CHECK(args[0]->IsFunction());
args              213 chrome/renderer/extensions/dispatcher.cc     context()->CallFunction(v8::Handle<v8::Function>::Cast(args[0]),
args              233 chrome/renderer/extensions/dispatcher.cc   void GetAvailability(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              234 chrome/renderer/extensions/dispatcher.cc     CHECK_EQ(args.Length(), 1);
args              235 chrome/renderer/extensions/dispatcher.cc     v8::Isolate* isolate = args.GetIsolate();
args              236 chrome/renderer/extensions/dispatcher.cc     std::string api_name = *v8::String::Utf8Value(args[0]->ToString());
args              246 chrome/renderer/extensions/dispatcher.cc     args.GetReturnValue().Set(ret);
args              249 chrome/renderer/extensions/dispatcher.cc   void GetModuleSystem(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              250 chrome/renderer/extensions/dispatcher.cc     CHECK_EQ(args.Length(), 1);
args              251 chrome/renderer/extensions/dispatcher.cc     CHECK(args[0]->IsObject());
args              253 chrome/renderer/extensions/dispatcher.cc         v8::Handle<v8::Object>::Cast(args[0])->CreationContext();
args              256 chrome/renderer/extensions/dispatcher.cc     args.GetReturnValue().Set(context->module_system()->NewInstance());
args              271 chrome/renderer/extensions/dispatcher.cc   void GetChrome(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              272 chrome/renderer/extensions/dispatcher.cc     args.GetReturnValue().Set(GetOrCreateChrome(context()));
args              285 chrome/renderer/extensions/dispatcher.cc   void Print(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              286 chrome/renderer/extensions/dispatcher.cc     if (args.Length() < 1)
args              290 chrome/renderer/extensions/dispatcher.cc     for (int i = 0; i < args.Length(); ++i)
args              291 chrome/renderer/extensions/dispatcher.cc       components.push_back(*v8::String::Utf8Value(args[i]->ToString()));
args              311 chrome/renderer/extensions/dispatcher.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args              322 chrome/renderer/extensions/dispatcher.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args              380 chrome/renderer/extensions/dispatcher.cc   void GetExtensionId(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              381 chrome/renderer/extensions/dispatcher.cc     args.GetReturnValue()
args              382 chrome/renderer/extensions/dispatcher.cc         .Set(v8::String::NewFromUtf8(args.GetIsolate(), extension_id_.c_str()));
args              385 chrome/renderer/extensions/dispatcher.cc   void GetContextType(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              386 chrome/renderer/extensions/dispatcher.cc     args.GetReturnValue()
args              387 chrome/renderer/extensions/dispatcher.cc         .Set(v8::String::NewFromUtf8(args.GetIsolate(), context_type_.c_str()));
args              390 chrome/renderer/extensions/dispatcher.cc   void InIncognitoContext(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              391 chrome/renderer/extensions/dispatcher.cc     args.GetReturnValue().Set(is_incognito_context_);
args              394 chrome/renderer/extensions/dispatcher.cc   void GetManifestVersion(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              395 chrome/renderer/extensions/dispatcher.cc     args.GetReturnValue().Set(static_cast<int32_t>(manifest_version_));
args              398 chrome/renderer/extensions/dispatcher.cc   void IsSendRequestDisabled(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              400 chrome/renderer/extensions/dispatcher.cc       args.GetReturnValue().Set(v8::String::NewFromUtf8(args.GetIsolate(),
args              406 chrome/renderer/extensions/dispatcher.cc   void HasSwitch(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              407 chrome/renderer/extensions/dispatcher.cc     CHECK(args.Length() == 1 && args[0]->IsString());
args              409 chrome/renderer/extensions/dispatcher.cc         *v8::String::Utf8Value(args[0]));
args              410 chrome/renderer/extensions/dispatcher.cc     args.GetReturnValue().Set(v8::Boolean::New(args.GetIsolate(), has_switch));
args              435 chrome/renderer/extensions/dispatcher.cc                       const base::ListValue* args,
args              444 chrome/renderer/extensions/dispatcher.cc   for (base::ListValue::const_iterator it = args->begin(); it != args->end();
args              580 chrome/renderer/extensions/dispatcher.cc                                  const base::ListValue& args,
args              583 chrome/renderer/extensions/dispatcher.cc       NULL, extension_id, module_name, function_name, args, user_gesture);
args             1648 chrome/renderer/extensions/dispatcher.cc   base::ListValue args;
args             1649 chrome/renderer/extensions/dispatcher.cc   args.Set(0, new base::StringValue(event_name));
args             1650 chrome/renderer/extensions/dispatcher.cc   args.Set(1, new base::ListValue());
args             1660 chrome/renderer/extensions/dispatcher.cc                  &args));
args             1668 chrome/renderer/extensions/dispatcher.cc       const base::ListValue& args,
args             1677 chrome/renderer/extensions/dispatcher.cc       base::Bind(&CallModuleMethod, module_name, function_name, &args));
args              143 chrome/renderer/extensions/dispatcher.h       const base::ListValue& args,
args              165 chrome/renderer/extensions/dispatcher.h                        const base::ListValue& args,
args               27 chrome/renderer/extensions/document_custom_bindings.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               28 chrome/renderer/extensions/document_custom_bindings.cc   if (args.Length() != 2 || !args[0]->IsString() || !args[1]->IsObject()) {
args               33 chrome/renderer/extensions/document_custom_bindings.cc   std::string element_name(*v8::String::Utf8Value(args[0]));
args               34 chrome/renderer/extensions/document_custom_bindings.cc   v8::Local<v8::Object> options = args[1]->ToObject();
args               41 chrome/renderer/extensions/document_custom_bindings.cc   args.GetReturnValue().Set(constructor);
args               19 chrome/renderer/extensions/document_custom_bindings.h   void RegisterElement(const v8::FunctionCallbackInfo<v8::Value>& args);
args               95 chrome/renderer/extensions/event_bindings.cc   void AttachEvent(const v8::FunctionCallbackInfo<v8::Value>& args) {
args               96 chrome/renderer/extensions/event_bindings.cc     CHECK_EQ(1, args.Length());
args               97 chrome/renderer/extensions/event_bindings.cc     CHECK(args[0]->IsString());
args               99 chrome/renderer/extensions/event_bindings.cc     std::string event_name = *v8::String::Utf8Value(args[0]->ToString());
args              121 chrome/renderer/extensions/event_bindings.cc   void DetachEvent(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              122 chrome/renderer/extensions/event_bindings.cc     CHECK_EQ(2, args.Length());
args              123 chrome/renderer/extensions/event_bindings.cc     CHECK(args[0]->IsString());
args              124 chrome/renderer/extensions/event_bindings.cc     CHECK(args[1]->IsBoolean());
args              126 chrome/renderer/extensions/event_bindings.cc     std::string event_name = *v8::String::Utf8Value(args[0]);
args              127 chrome/renderer/extensions/event_bindings.cc     bool is_manual = args[1]->BooleanValue();
args              154 chrome/renderer/extensions/event_bindings.cc   void AttachFilteredEvent(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              155 chrome/renderer/extensions/event_bindings.cc     CHECK_EQ(2, args.Length());
args              156 chrome/renderer/extensions/event_bindings.cc     CHECK(args[0]->IsString());
args              157 chrome/renderer/extensions/event_bindings.cc     CHECK(args[1]->IsObject());
args              159 chrome/renderer/extensions/event_bindings.cc     std::string event_name = *v8::String::Utf8Value(args[0]);
args              167 chrome/renderer/extensions/event_bindings.cc       args.GetReturnValue().Set(static_cast<int32_t>(-1));
args              177 chrome/renderer/extensions/event_bindings.cc         converter->FromV8Value(args[1]->ToObject(), context()->v8_context());
args              179 chrome/renderer/extensions/event_bindings.cc       args.GetReturnValue().Set(static_cast<int32_t>(-1));
args              184 chrome/renderer/extensions/event_bindings.cc       args.GetReturnValue().Set(static_cast<int32_t>(-1));
args              201 chrome/renderer/extensions/event_bindings.cc     args.GetReturnValue().Set(static_cast<int32_t>(id));
args              236 chrome/renderer/extensions/event_bindings.cc   void DetachFilteredEvent(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              237 chrome/renderer/extensions/event_bindings.cc     CHECK_EQ(2, args.Length());
args              238 chrome/renderer/extensions/event_bindings.cc     CHECK(args[0]->IsInt32());
args              239 chrome/renderer/extensions/event_bindings.cc     CHECK(args[1]->IsBoolean());
args              240 chrome/renderer/extensions/event_bindings.cc     bool is_manual = args[1]->BooleanValue();
args              246 chrome/renderer/extensions/event_bindings.cc     int matcher_id = args[0]->Int32Value();
args              267 chrome/renderer/extensions/event_bindings.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args              268 chrome/renderer/extensions/event_bindings.cc     v8::Isolate* isolate = args.GetIsolate();
args              271 chrome/renderer/extensions/event_bindings.cc     std::string event_name = *v8::String::Utf8Value(args[0]->ToString());
args              273 chrome/renderer/extensions/event_bindings.cc         ParseFromObject(args[1]->ToObject(), isolate);
args              286 chrome/renderer/extensions/event_bindings.cc     args.GetReturnValue().Set(array);
args              266 chrome/renderer/extensions/extension_helper.cc                                                const base::ListValue& args,
args              269 chrome/renderer/extensions/extension_helper.cc       render_view(), extension_id, module_name, function_name, args,
args               82 chrome/renderer/extensions/extension_helper.h                                 const base::ListValue& args,
args               29 chrome/renderer/extensions/file_browser_handler_custom_bindings.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               33 chrome/renderer/extensions/file_browser_handler_custom_bindings.cc     CHECK(args.Length() == 1);
args               34 chrome/renderer/extensions/file_browser_handler_custom_bindings.cc     CHECK(args[0]->IsObject());
args               35 chrome/renderer/extensions/file_browser_handler_custom_bindings.cc     v8::Local<v8::Object> file_def = args[0]->ToObject();
args               38 chrome/renderer/extensions/file_browser_handler_custom_bindings.cc             v8::String::NewFromUtf8(args.GetIsolate(), "fileSystemName"))));
args               41 chrome/renderer/extensions/file_browser_handler_custom_bindings.cc             v8::String::NewFromUtf8(args.GetIsolate(), "fileSystemRoot"))));
args               44 chrome/renderer/extensions/file_browser_handler_custom_bindings.cc             v8::String::NewFromUtf8(args.GetIsolate(), "fileFullPath"))));
args               46 chrome/renderer/extensions/file_browser_handler_custom_bindings.cc         args.GetIsolate(), "fileIsDirectory"))->ToBoolean()->Value();
args               52 chrome/renderer/extensions/file_browser_handler_custom_bindings.cc     args.GetReturnValue().Set(
args               20 chrome/renderer/extensions/file_browser_handler_custom_bindings.h   void GetExternalFileEntry(const v8::FunctionCallbackInfo<v8::Value>& args);
args               29 chrome/renderer/extensions/file_browser_private_custom_bindings.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               30 chrome/renderer/extensions/file_browser_private_custom_bindings.cc   DCHECK(args.Length() == 2);
args               31 chrome/renderer/extensions/file_browser_private_custom_bindings.cc   DCHECK(args[0]->IsString());
args               32 chrome/renderer/extensions/file_browser_private_custom_bindings.cc   DCHECK(args[1]->IsString());
args               33 chrome/renderer/extensions/file_browser_private_custom_bindings.cc   std::string name(*v8::String::Utf8Value(args[0]));
args               34 chrome/renderer/extensions/file_browser_private_custom_bindings.cc   std::string root_url(*v8::String::Utf8Value(args[1]));
args               39 chrome/renderer/extensions/file_browser_private_custom_bindings.cc   args.GetReturnValue().Set(
args               19 chrome/renderer/extensions/file_browser_private_custom_bindings.h   void GetFileSystem(const v8::FunctionCallbackInfo<v8::Value>& args);
args               41 chrome/renderer/extensions/file_system_natives.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               42 chrome/renderer/extensions/file_system_natives.cc   DCHECK(args.Length() == 1 || args.Length() == 2);
args               43 chrome/renderer/extensions/file_system_natives.cc   DCHECK(args[0]->IsString());
args               44 chrome/renderer/extensions/file_system_natives.cc   std::string file_system_id(*v8::String::Utf8Value(args[0]));
args               59 chrome/renderer/extensions/file_system_natives.cc   if (args.Length() == 2) {
args               60 chrome/renderer/extensions/file_system_natives.cc     DCHECK(args[1]->IsString());
args               61 chrome/renderer/extensions/file_system_natives.cc     optional_root_name = *v8::String::Utf8Value(args[1]);
args               69 chrome/renderer/extensions/file_system_natives.cc   args.GetReturnValue().Set(
args               78 chrome/renderer/extensions/file_system_natives.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               79 chrome/renderer/extensions/file_system_natives.cc   DCHECK(args.Length() == 5);
args               80 chrome/renderer/extensions/file_system_natives.cc   DCHECK(args[0]->IsString());
args               81 chrome/renderer/extensions/file_system_natives.cc   std::string type_string = *v8::String::Utf8Value(args[0]->ToString());
args               89 chrome/renderer/extensions/file_system_natives.cc   DCHECK(args[1]->IsString());
args               90 chrome/renderer/extensions/file_system_natives.cc   DCHECK(args[2]->IsString());
args               91 chrome/renderer/extensions/file_system_natives.cc   DCHECK(args[3]->IsString());
args               92 chrome/renderer/extensions/file_system_natives.cc   std::string file_system_name(*v8::String::Utf8Value(args[1]->ToString()));
args               93 chrome/renderer/extensions/file_system_natives.cc   GURL file_system_root_url(*v8::String::Utf8Value(args[2]->ToString()));
args               94 chrome/renderer/extensions/file_system_natives.cc   std::string file_path_string(*v8::String::Utf8Value(args[3]->ToString()));
args               98 chrome/renderer/extensions/file_system_natives.cc   DCHECK(args[4]->IsBoolean());
args               99 chrome/renderer/extensions/file_system_natives.cc   blink::WebDOMFileSystem::EntryType entry_type = args[4]->BooleanValue()
args              106 chrome/renderer/extensions/file_system_natives.cc   args.GetReturnValue().Set(
args              116 chrome/renderer/extensions/file_system_natives.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              117 chrome/renderer/extensions/file_system_natives.cc   DCHECK_EQ(args.Length(), 1);
args              118 chrome/renderer/extensions/file_system_natives.cc   DCHECK(args[0]->IsString());
args              119 chrome/renderer/extensions/file_system_natives.cc   std::string filesystem_name = *v8::String::Utf8Value(args[0]->ToString());
args              124 chrome/renderer/extensions/file_system_natives.cc   args.GetReturnValue().Set(v8::String::NewFromUtf8(args.GetIsolate(),
args              131 chrome/renderer/extensions/file_system_natives.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              132 chrome/renderer/extensions/file_system_natives.cc   if (args.Length() != 2) {
args              136 chrome/renderer/extensions/file_system_natives.cc   if (!args[0]->IsString()) {
args              140 chrome/renderer/extensions/file_system_natives.cc   if (!args[1]->IsString()) {
args              145 chrome/renderer/extensions/file_system_natives.cc   std::string name(*v8::String::Utf8Value(args[0]));
args              150 chrome/renderer/extensions/file_system_natives.cc   std::string message(*v8::String::Utf8Value(args[1]));
args              156 chrome/renderer/extensions/file_system_natives.cc   args.GetReturnValue().Set(dom_error.toV8Value());
args               19 chrome/renderer/extensions/file_system_natives.h   void GetFileEntry(const v8::FunctionCallbackInfo<v8::Value>& args);
args               20 chrome/renderer/extensions/file_system_natives.h   void GetIsolatedFileSystem(const v8::FunctionCallbackInfo<v8::Value>& args);
args               22 chrome/renderer/extensions/file_system_natives.h       const v8::FunctionCallbackInfo<v8::Value>& args);
args               24 chrome/renderer/extensions/file_system_natives.h   void GetDOMError(const v8::FunctionCallbackInfo<v8::Value>& args);
args               28 chrome/renderer/extensions/i18n_custom_bindings.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               29 chrome/renderer/extensions/i18n_custom_bindings.cc   if (args.Length() != 3 || !args[0]->IsString()) {
args               35 chrome/renderer/extensions/i18n_custom_bindings.cc   if (args[2]->IsNull() || !args[2]->IsString()) {
args               38 chrome/renderer/extensions/i18n_custom_bindings.cc     extension_id = *v8::String::Utf8Value(args[2]->ToString());
args               64 chrome/renderer/extensions/i18n_custom_bindings.cc   std::string message_name = *v8::String::Utf8Value(args[0]);
args               68 chrome/renderer/extensions/i18n_custom_bindings.cc   v8::Isolate* isolate = args.GetIsolate();
args               70 chrome/renderer/extensions/i18n_custom_bindings.cc   if (args[1]->IsArray()) {
args               72 chrome/renderer/extensions/i18n_custom_bindings.cc     v8::Local<v8::Array> placeholders = v8::Local<v8::Array>::Cast(args[1]);
args               81 chrome/renderer/extensions/i18n_custom_bindings.cc   } else if (args[1]->IsString()) {
args               83 chrome/renderer/extensions/i18n_custom_bindings.cc     substitutions.push_back(*v8::String::Utf8Value(args[1]->ToString()));
args               86 chrome/renderer/extensions/i18n_custom_bindings.cc   args.GetReturnValue().Set(
args               92 chrome/renderer/extensions/i18n_custom_bindings.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               93 chrome/renderer/extensions/i18n_custom_bindings.cc   args.GetReturnValue().Set(v8::String::NewFromUtf8(
args               94 chrome/renderer/extensions/i18n_custom_bindings.cc       args.GetIsolate(), content::RenderThread::Get()->GetLocale().c_str()));
args               18 chrome/renderer/extensions/i18n_custom_bindings.h   void GetL10nMessage(const v8::FunctionCallbackInfo<v8::Value>& args);
args               19 chrome/renderer/extensions/i18n_custom_bindings.h   void GetL10nUILanguage(const v8::FunctionCallbackInfo<v8::Value>& args);
args               21 chrome/renderer/extensions/id_generator_custom_bindings.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               28 chrome/renderer/extensions/id_generator_custom_bindings.cc   args.GetReturnValue().Set(next_id);
args               19 chrome/renderer/extensions/id_generator_custom_bindings.h   void GetNextId(const v8::FunctionCallbackInfo<v8::Value>& args);
args               29 chrome/renderer/extensions/logging_native_handler.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               32 chrome/renderer/extensions/logging_native_handler.cc   ParseArgs(args, &check_value, &error_message);
args               37 chrome/renderer/extensions/logging_native_handler.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               40 chrome/renderer/extensions/logging_native_handler.cc   ParseArgs(args, &check_value, &error_message);
args               45 chrome/renderer/extensions/logging_native_handler.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               46 chrome/renderer/extensions/logging_native_handler.cc   args.GetReturnValue().Set(DCHECK_IS_ON);
args               50 chrome/renderer/extensions/logging_native_handler.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               51 chrome/renderer/extensions/logging_native_handler.cc   CHECK_EQ(1, args.Length());
args               52 chrome/renderer/extensions/logging_native_handler.cc   LOG(INFO) << *v8::String::Utf8Value(args[0]);
args               56 chrome/renderer/extensions/logging_native_handler.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               57 chrome/renderer/extensions/logging_native_handler.cc   CHECK_EQ(1, args.Length());
args               58 chrome/renderer/extensions/logging_native_handler.cc   LOG(WARNING) << *v8::String::Utf8Value(args[0]);
args               62 chrome/renderer/extensions/logging_native_handler.cc     const v8::FunctionCallbackInfo<v8::Value>& args,
args               65 chrome/renderer/extensions/logging_native_handler.cc   CHECK_LE(args.Length(), 2);
args               66 chrome/renderer/extensions/logging_native_handler.cc   *check_value = args[0]->BooleanValue();
args               67 chrome/renderer/extensions/logging_native_handler.cc   if (args.Length() == 2) {
args               69 chrome/renderer/extensions/logging_native_handler.cc         *v8::String::Utf8Value(args[1]));
args               73 chrome/renderer/extensions/logging_native_handler.cc       v8::StackTrace::CurrentStackTrace(args.GetIsolate(), 10);
args               23 chrome/renderer/extensions/logging_native_handler.h   void Check(const v8::FunctionCallbackInfo<v8::Value>& args);
args               28 chrome/renderer/extensions/logging_native_handler.h   void Dcheck(const v8::FunctionCallbackInfo<v8::Value>& args);
args               33 chrome/renderer/extensions/logging_native_handler.h   void DcheckIsOn(const v8::FunctionCallbackInfo<v8::Value>& args);
args               38 chrome/renderer/extensions/logging_native_handler.h   void Log(const v8::FunctionCallbackInfo<v8::Value>& args);
args               43 chrome/renderer/extensions/logging_native_handler.h   void Warning(const v8::FunctionCallbackInfo<v8::Value>& args);
args               45 chrome/renderer/extensions/logging_native_handler.h   void ParseArgs(const v8::FunctionCallbackInfo<v8::Value>& args,
args               22 chrome/renderer/extensions/media_galleries_custom_bindings.cc void GetMediaFileSystemObject(const v8::FunctionCallbackInfo<v8::Value>& args) {
args               23 chrome/renderer/extensions/media_galleries_custom_bindings.cc   CHECK_EQ(1, args.Length());
args               24 chrome/renderer/extensions/media_galleries_custom_bindings.cc   CHECK(args[0]->IsString());
args               26 chrome/renderer/extensions/media_galleries_custom_bindings.cc   std::string fs_mount(*v8::String::Utf8Value(args[0]));
args               37 chrome/renderer/extensions/media_galleries_custom_bindings.cc   args.GetReturnValue().Set(
args              107 chrome/renderer/extensions/messaging_bindings.cc   void PostMessage(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              113 chrome/renderer/extensions/messaging_bindings.cc     CHECK(args.Length() == 2 &&
args              114 chrome/renderer/extensions/messaging_bindings.cc           args[0]->IsInt32() &&
args              115 chrome/renderer/extensions/messaging_bindings.cc           args[1]->IsString());
args              117 chrome/renderer/extensions/messaging_bindings.cc     int port_id = args[0]->Int32Value();
args              119 chrome/renderer/extensions/messaging_bindings.cc       args.GetIsolate()->ThrowException(v8::Exception::Error(
args              120 chrome/renderer/extensions/messaging_bindings.cc           v8::String::NewFromUtf8(args.GetIsolate(), kPortClosedError)));
args              126 chrome/renderer/extensions/messaging_bindings.cc         Message(*v8::String::Utf8Value(args[1]),
args              131 chrome/renderer/extensions/messaging_bindings.cc   void CloseChannel(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              133 chrome/renderer/extensions/messaging_bindings.cc     CHECK_EQ(2, args.Length());
args              134 chrome/renderer/extensions/messaging_bindings.cc     CHECK(args[0]->IsInt32());
args              135 chrome/renderer/extensions/messaging_bindings.cc     CHECK(args[1]->IsBoolean());
args              137 chrome/renderer/extensions/messaging_bindings.cc     int port_id = args[0]->Int32Value();
args              142 chrome/renderer/extensions/messaging_bindings.cc     bool notify_browser = args[1]->BooleanValue();
args              153 chrome/renderer/extensions/messaging_bindings.cc   void PortAddRef(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              155 chrome/renderer/extensions/messaging_bindings.cc     CHECK_EQ(1, args.Length());
args              156 chrome/renderer/extensions/messaging_bindings.cc     CHECK(args[0]->IsInt32());
args              158 chrome/renderer/extensions/messaging_bindings.cc     int port_id = args[0]->Int32Value();
args              165 chrome/renderer/extensions/messaging_bindings.cc   void PortRelease(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              167 chrome/renderer/extensions/messaging_bindings.cc     CHECK_EQ(1, args.Length());
args              168 chrome/renderer/extensions/messaging_bindings.cc     CHECK(args[0]->IsInt32());
args              170 chrome/renderer/extensions/messaging_bindings.cc     int port_id = args[0]->Int32Value();
args              230 chrome/renderer/extensions/messaging_bindings.cc   void BindToGC(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              231 chrome/renderer/extensions/messaging_bindings.cc     CHECK(args.Length() == 2 && args[0]->IsObject() && args[1]->IsFunction());
args              232 chrome/renderer/extensions/messaging_bindings.cc     GCCallback::Bind(args[0].As<v8::Object>(),
args              233 chrome/renderer/extensions/messaging_bindings.cc                      args[1].As<v8::Function>(),
args              234 chrome/renderer/extensions/messaging_bindings.cc                      args.GetIsolate());
args              194 chrome/renderer/extensions/module_system.cc   const v8::FunctionCallbackInfo<v8::Value>& args) {
args              195 chrome/renderer/extensions/module_system.cc   v8::Handle<v8::String> module_name = args[0]->ToString();
args              196 chrome/renderer/extensions/module_system.cc   args.GetReturnValue().Set(RequireForJsInner(module_name));
args              243 chrome/renderer/extensions/module_system.cc   v8::Handle<v8::Value> args[] = {
args              264 chrome/renderer/extensions/module_system.cc     context_->CallFunction(func, arraysize(args), args);
args              285 chrome/renderer/extensions/module_system.cc     std::vector<v8::Handle<v8::Value> >* args) {
args              287 chrome/renderer/extensions/module_system.cc       module_name, method_name, args->size(), vector_as_array(args));
args              520 chrome/renderer/extensions/module_system.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              521 chrome/renderer/extensions/module_system.cc   CHECK_EQ(1, args.Length());
args              522 chrome/renderer/extensions/module_system.cc   std::string native_name = *v8::String::Utf8Value(args[0]->ToString());
args              523 chrome/renderer/extensions/module_system.cc   args.GetReturnValue().Set(RequireNativeFromString(native_name));
args              568 chrome/renderer/extensions/module_system.cc void ModuleSystem::Private(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              569 chrome/renderer/extensions/module_system.cc   CHECK_EQ(1, args.Length());
args              570 chrome/renderer/extensions/module_system.cc   CHECK(args[0]->IsObject());
args              571 chrome/renderer/extensions/module_system.cc   v8::Local<v8::Object> obj = args[0].As<v8::Object>();
args              576 chrome/renderer/extensions/module_system.cc     privates = v8::Object::New(args.GetIsolate());
args              579 chrome/renderer/extensions/module_system.cc   args.GetReturnValue().Set(privates);
args               78 chrome/renderer/extensions/module_system.h   void Require(const v8::FunctionCallbackInfo<v8::Value>& args);
args               92 chrome/renderer/extensions/module_system.h       std::vector<v8::Handle<v8::Value> >* args);
args              165 chrome/renderer/extensions/module_system.h   void RequireForJs(const v8::FunctionCallbackInfo<v8::Value>& args);
args              185 chrome/renderer/extensions/module_system.h   void RequireNative(const v8::FunctionCallbackInfo<v8::Value>& args);
args              191 chrome/renderer/extensions/module_system.h   void Private(const v8::FunctionCallbackInfo<v8::Value>& args);
args              195 chrome/renderer/extensions/module_system.h   void CreateFunctionWrapper(const v8::FunctionCallbackInfo<v8::Value>& args);
args               24 chrome/renderer/extensions/module_system_unittest.cc   void Get(const v8::FunctionCallbackInfo<v8::Value>& args) {
args               25 chrome/renderer/extensions/module_system_unittest.cc     args.GetReturnValue().Set(static_cast<int32_t>(counter_));
args               28 chrome/renderer/extensions/module_system_unittest.cc   void Increment(const v8::FunctionCallbackInfo<v8::Value>& args) {
args               40 chrome/renderer/extensions/object_backed_native_handler.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               41 chrome/renderer/extensions/object_backed_native_handler.cc   v8::HandleScope handle_scope(args.GetIsolate());
args               42 chrome/renderer/extensions/object_backed_native_handler.cc   v8::Handle<v8::Object> data = args.Data().As<v8::Object>();
args               45 chrome/renderer/extensions/object_backed_native_handler.cc       data->Get(v8::String::NewFromUtf8(args.GetIsolate(), kHandlerFunction));
args               49 chrome/renderer/extensions/object_backed_native_handler.cc     console::Error(args.GetIsolate()->GetCallingContext(),
args               55 chrome/renderer/extensions/object_backed_native_handler.cc       handler_function_value.As<v8::External>()->Value())->Run(args);
args               52 chrome/renderer/extensions/object_backed_native_handler.h   static void Router(const v8::FunctionCallbackInfo<v8::Value>& args);
args               27 chrome/renderer/extensions/page_actions_custom_bindings.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               28 chrome/renderer/extensions/page_actions_custom_bindings.cc   std::string extension_id = *v8::String::Utf8Value(args[0]->ToString());
args               34 chrome/renderer/extensions/page_actions_custom_bindings.cc   v8::Isolate* isolate = args.GetIsolate();
args               45 chrome/renderer/extensions/page_actions_custom_bindings.cc   args.GetReturnValue().Set(page_action_vector);
args               20 chrome/renderer/extensions/page_actions_custom_bindings.h   void GetCurrentPageActions(const v8::FunctionCallbackInfo<v8::Value>& args);
args               30 chrome/renderer/extensions/page_capture_custom_bindings.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               31 chrome/renderer/extensions/page_capture_custom_bindings.cc   CHECK(args.Length() == 2);
args               32 chrome/renderer/extensions/page_capture_custom_bindings.cc   CHECK(args[0]->IsString());
args               33 chrome/renderer/extensions/page_capture_custom_bindings.cc   CHECK(args[1]->IsInt32());
args               34 chrome/renderer/extensions/page_capture_custom_bindings.cc   blink::WebString path(base::UTF8ToUTF16(*v8::String::Utf8Value(args[0])));
args               36 chrome/renderer/extensions/page_capture_custom_bindings.cc       blink::WebBlob::createFromFile(path, args[1]->Int32Value());
args               37 chrome/renderer/extensions/page_capture_custom_bindings.cc   args.GetReturnValue().Set(blob.toV8Value());
args               41 chrome/renderer/extensions/page_capture_custom_bindings.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               42 chrome/renderer/extensions/page_capture_custom_bindings.cc   CHECK(args.Length() == 1);
args               43 chrome/renderer/extensions/page_capture_custom_bindings.cc   CHECK(args[0]->IsInt32());
args               48 chrome/renderer/extensions/page_capture_custom_bindings.cc         render_view->GetRoutingID(), args[0]->Int32Value()));
args               20 chrome/renderer/extensions/page_capture_custom_bindings.h   void CreateBlob(const v8::FunctionCallbackInfo<v8::Value>& args);
args               21 chrome/renderer/extensions/page_capture_custom_bindings.h   void SendResponseAck(const v8::FunctionCallbackInfo<v8::Value>& args);
args               24 chrome/renderer/extensions/pepper_request_natives.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               25 chrome/renderer/extensions/pepper_request_natives.cc   DCHECK_EQ(3, args.Length());
args               26 chrome/renderer/extensions/pepper_request_natives.cc   DCHECK(args[0]->IsInt32());
args               27 chrome/renderer/extensions/pepper_request_natives.cc   DCHECK(args[1]->IsArray());
args               28 chrome/renderer/extensions/pepper_request_natives.cc   int request_id = args[0]->Int32Value();
args               29 chrome/renderer/extensions/pepper_request_natives.cc   if (args[2]->IsString()) {
args               31 chrome/renderer/extensions/pepper_request_natives.cc         request_id, false, base::ListValue(), *v8::String::Utf8Value(args[2]));
args               38 chrome/renderer/extensions/pepper_request_natives.cc       converter->FromV8Value(args[1], context()->v8_context()));
args               29 chrome/renderer/extensions/pepper_request_natives.h   void SendResponse(const v8::FunctionCallbackInfo<v8::Value>& args);
args               22 chrome/renderer/extensions/pepper_request_proxy.cc                                       const base::ListValue& args,
args               36 chrome/renderer/extensions/pepper_request_proxy.cc   for (base::ListValue::const_iterator it = args.begin(); it != args.end();
args               55 chrome/renderer/extensions/pepper_request_proxy.cc                                             const base::ListValue& args,
args               59 chrome/renderer/extensions/pepper_request_proxy.cc   it->second.Run(success, args, error);
args               44 chrome/renderer/extensions/pepper_request_proxy.h                     const base::ListValue& args,
args               49 chrome/renderer/extensions/pepper_request_proxy.h                           const base::ListValue& args,
args               43 chrome/renderer/extensions/render_view_observer_natives.cc     v8::Handle<v8::Value> args[] = { v8::Boolean::New(isolate, succeeded) };
args               44 chrome/renderer/extensions/render_view_observer_natives.cc     context_->CallFunction(callback_.NewHandle(isolate), 1, args);
args               64 chrome/renderer/extensions/render_view_observer_natives.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               65 chrome/renderer/extensions/render_view_observer_natives.cc   CHECK(args.Length() == 2);
args               66 chrome/renderer/extensions/render_view_observer_natives.cc   CHECK(args[0]->IsInt32());
args               67 chrome/renderer/extensions/render_view_observer_natives.cc   CHECK(args[1]->IsFunction());
args               69 chrome/renderer/extensions/render_view_observer_natives.cc   int view_id = args[0]->Int32Value();
args               77 chrome/renderer/extensions/render_view_observer_natives.cc   new LoadWatcher(context(), view, args[1].As<v8::Function>());
args               79 chrome/renderer/extensions/render_view_observer_natives.cc   args.GetReturnValue().Set(true);
args               26 chrome/renderer/extensions/render_view_observer_natives.h       const v8::FunctionCallbackInfo<v8::Value>& args);
args               49 chrome/renderer/extensions/runtime_custom_bindings.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               57 chrome/renderer/extensions/runtime_custom_bindings.cc   CHECK_EQ(args.Length(), 3);
args               58 chrome/renderer/extensions/runtime_custom_bindings.cc   CHECK(args[0]->IsString() && args[1]->IsString() && args[2]->IsBoolean());
args               68 chrome/renderer/extensions/runtime_custom_bindings.cc   info.target_id = *v8::String::Utf8Value(args[0]->ToString());
args               70 chrome/renderer/extensions/runtime_custom_bindings.cc   std::string channel_name = *v8::String::Utf8Value(args[1]->ToString());
args               72 chrome/renderer/extensions/runtime_custom_bindings.cc       args.Length() > 2 ? args[2]->BooleanValue() : false;
args               77 chrome/renderer/extensions/runtime_custom_bindings.cc   args.GetReturnValue().Set(static_cast<int32_t>(port_id));
args               81 chrome/renderer/extensions/runtime_custom_bindings.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               99 chrome/renderer/extensions/runtime_custom_bindings.cc   CHECK(args.Length() >= 2 &&
args              100 chrome/renderer/extensions/runtime_custom_bindings.cc         args[0]->IsString() &&
args              101 chrome/renderer/extensions/runtime_custom_bindings.cc         args[1]->IsString());
args              103 chrome/renderer/extensions/runtime_custom_bindings.cc   std::string extension_id = *v8::String::Utf8Value(args[0]->ToString());
args              104 chrome/renderer/extensions/runtime_custom_bindings.cc   std::string native_app_name = *v8::String::Utf8Value(args[1]->ToString());
args              112 chrome/renderer/extensions/runtime_custom_bindings.cc   args.GetReturnValue().Set(static_cast<int32_t>(port_id));
args              116 chrome/renderer/extensions/runtime_custom_bindings.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              120 chrome/renderer/extensions/runtime_custom_bindings.cc   args.GetReturnValue().Set(
args              126 chrome/renderer/extensions/runtime_custom_bindings.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              127 chrome/renderer/extensions/runtime_custom_bindings.cc   if (args.Length() != 2)
args              130 chrome/renderer/extensions/runtime_custom_bindings.cc   if (!args[0]->IsInt32() || !args[1]->IsString())
args              135 chrome/renderer/extensions/runtime_custom_bindings.cc   int browser_window_id = args[0]->Int32Value();
args              137 chrome/renderer/extensions/runtime_custom_bindings.cc   std::string view_type_string = *v8::String::Utf8Value(args[1]->ToString());
args              168 chrome/renderer/extensions/runtime_custom_bindings.cc   v8::Local<v8::Array> v8_views = v8::Array::New(args.GetIsolate());
args              176 chrome/renderer/extensions/runtime_custom_bindings.cc       v8_views->Set(v8::Integer::New(args.GetIsolate(), v8_index++), window);
args              180 chrome/renderer/extensions/runtime_custom_bindings.cc   args.GetReturnValue().Set(v8_views);
args               25 chrome/renderer/extensions/runtime_custom_bindings.h   void OpenChannelToExtension(const v8::FunctionCallbackInfo<v8::Value>& args);
args               28 chrome/renderer/extensions/runtime_custom_bindings.h   void OpenChannelToNativeApp(const v8::FunctionCallbackInfo<v8::Value>& args);
args               31 chrome/renderer/extensions/runtime_custom_bindings.h   void GetManifest(const v8::FunctionCallbackInfo<v8::Value>& args);
args               32 chrome/renderer/extensions/runtime_custom_bindings.h   void GetExtensionViews(const v8::FunctionCallbackInfo<v8::Value>& args);
args              177 chrome/renderer/extensions/safe_builtins.cc     v8::Local<v8::Object> args = info[2]->ToObject();
args              184 chrome/renderer/extensions/safe_builtins.cc       CHECK(args->Has(i + first_arg_index));
args              185 chrome/renderer/extensions/safe_builtins.cc       argv[i] = args->Get(i + first_arg_index);
args               32 chrome/renderer/extensions/send_request_natives.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               33 chrome/renderer/extensions/send_request_natives.cc   args.GetReturnValue().Set(static_cast<int32_t>(
args               40 chrome/renderer/extensions/send_request_natives.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               41 chrome/renderer/extensions/send_request_natives.cc   CHECK_EQ(6, args.Length());
args               42 chrome/renderer/extensions/send_request_natives.cc   std::string name = *v8::String::Utf8Value(args[0]);
args               43 chrome/renderer/extensions/send_request_natives.cc   int request_id = args[2]->Int32Value();
args               44 chrome/renderer/extensions/send_request_natives.cc   bool has_callback = args[3]->BooleanValue();
args               45 chrome/renderer/extensions/send_request_natives.cc   bool for_io_thread = args[4]->BooleanValue();
args               46 chrome/renderer/extensions/send_request_natives.cc   bool preserve_null_in_objects = args[5]->BooleanValue();
args               58 chrome/renderer/extensions/send_request_natives.cc       converter->FromV8Value(args[1], context()->v8_context()));
args               70 chrome/renderer/extensions/send_request_natives.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               71 chrome/renderer/extensions/send_request_natives.cc   CHECK_EQ(1, args.Length());
args               72 chrome/renderer/extensions/send_request_natives.cc   CHECK(args[0]->IsObject());
args               73 chrome/renderer/extensions/send_request_natives.cc   args.GetReturnValue().Set(
args               74 chrome/renderer/extensions/send_request_natives.cc       v8::Handle<v8::Object>::Cast(args[0])->CreationContext()->Global());
args               26 chrome/renderer/extensions/send_request_natives.h   void GetNextRequestId(const v8::FunctionCallbackInfo<v8::Value>& args);
args               30 chrome/renderer/extensions/send_request_natives.h   void StartRequest(const v8::FunctionCallbackInfo<v8::Value>& args);
args               33 chrome/renderer/extensions/send_request_natives.h   void GetGlobal(const v8::FunctionCallbackInfo<v8::Value>& args);
args              103 chrome/renderer/extensions/set_icon_natives.cc     const v8::FunctionCallbackInfo<v8::Value>& args,
args              105 chrome/renderer/extensions/set_icon_natives.cc   v8::Local<v8::Object> extension_args = args[1]->ToObject();
args              107 chrome/renderer/extensions/set_icon_natives.cc       ->Get(v8::String::NewFromUtf8(args.GetIsolate(), "0"))->ToObject();
args              109 chrome/renderer/extensions/set_icon_natives.cc       details->Get(v8::String::NewFromUtf8(args.GetIsolate(), "imageData"))
args              115 chrome/renderer/extensions/set_icon_natives.cc             v8::String::NewFromUtf8(args.GetIsolate(), kImageSizeKeys[i])))
args              118 chrome/renderer/extensions/set_icon_natives.cc         ->Get(v8::String::NewFromUtf8(args.GetIsolate(), kImageSizeKeys[i]))
args              129 chrome/renderer/extensions/set_icon_natives.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              132 chrome/renderer/extensions/set_icon_natives.cc   if (!ConvertImageDataSetToBitmapValueSet(args, bitmap_set_value.get()))
args              135 chrome/renderer/extensions/set_icon_natives.cc   v8::Local<v8::Object> extension_args = args[1]->ToObject();
args              137 chrome/renderer/extensions/set_icon_natives.cc       ->Get(v8::String::NewFromUtf8(args.GetIsolate(), "0"))->ToObject();
args              142 chrome/renderer/extensions/set_icon_natives.cc   if (details->Has(v8::String::NewFromUtf8(args.GetIsolate(), "tabId"))) {
args              145 chrome/renderer/extensions/set_icon_natives.cc                          args.GetIsolate(), "tabId"))->Int32Value());
args              151 chrome/renderer/extensions/set_icon_natives.cc   std::string name = *v8::String::Utf8Value(args[0]);
args              152 chrome/renderer/extensions/set_icon_natives.cc   int request_id = args[2]->Int32Value();
args              153 chrome/renderer/extensions/set_icon_natives.cc   bool has_callback = args[3]->BooleanValue();
args              154 chrome/renderer/extensions/set_icon_natives.cc   bool for_io_thread = args[4]->BooleanValue();
args               31 chrome/renderer/extensions/set_icon_natives.h       const v8::FunctionCallbackInfo<v8::Value>& args,
args               33 chrome/renderer/extensions/set_icon_natives.h   void SetIconCommon(const v8::FunctionCallbackInfo<v8::Value>& args);
args               28 chrome/renderer/extensions/sync_file_system_custom_bindings.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               29 chrome/renderer/extensions/sync_file_system_custom_bindings.cc   if (args.Length() != 2) {
args               33 chrome/renderer/extensions/sync_file_system_custom_bindings.cc   if (!args[0]->IsString()) {
args               37 chrome/renderer/extensions/sync_file_system_custom_bindings.cc   if (!args[1]->IsString()) {
args               42 chrome/renderer/extensions/sync_file_system_custom_bindings.cc   std::string name(*v8::String::Utf8Value(args[0]));
args               47 chrome/renderer/extensions/sync_file_system_custom_bindings.cc   std::string root_url(*v8::String::Utf8Value(args[1]));
args               55 chrome/renderer/extensions/sync_file_system_custom_bindings.cc   args.GetReturnValue().Set(
args               22 chrome/renderer/extensions/sync_file_system_custom_bindings.h   void GetSyncFileSystemObject(const v8::FunctionCallbackInfo<v8::Value>& args);
args               26 chrome/renderer/extensions/tabs_custom_bindings.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               33 chrome/renderer/extensions/tabs_custom_bindings.cc   if (args.Length() >= 3 && args[0]->IsInt32() && args[1]->IsString() &&
args               34 chrome/renderer/extensions/tabs_custom_bindings.cc       args[2]->IsString()) {
args               35 chrome/renderer/extensions/tabs_custom_bindings.cc     int tab_id = args[0]->Int32Value();
args               36 chrome/renderer/extensions/tabs_custom_bindings.cc     std::string extension_id = *v8::String::Utf8Value(args[1]->ToString());
args               37 chrome/renderer/extensions/tabs_custom_bindings.cc     std::string channel_name = *v8::String::Utf8Value(args[2]->ToString());
args               42 chrome/renderer/extensions/tabs_custom_bindings.cc     args.GetReturnValue().Set(static_cast<int32_t>(port_id));
args               19 chrome/renderer/extensions/tabs_custom_bindings.h   void OpenChannelToTab(const v8::FunctionCallbackInfo<v8::Value>& args);
args               23 chrome/renderer/extensions/utils_native_handler.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               24 chrome/renderer/extensions/utils_native_handler.cc   CHECK_EQ(2, args.Length());
args               25 chrome/renderer/extensions/utils_native_handler.cc   CHECK(args[0]->IsString());
args               26 chrome/renderer/extensions/utils_native_handler.cc   std::string name = *v8::String::Utf8Value(args[0]);
args               27 chrome/renderer/extensions/utils_native_handler.cc   CHECK(args[1]->IsObject());
args               28 chrome/renderer/extensions/utils_native_handler.cc   v8::Local<v8::Object> obj = args[1].As<v8::Object>();
args               47 chrome/renderer/extensions/utils_native_handler.cc     args.GetReturnValue().SetUndefined();
args               68 chrome/renderer/extensions/utils_native_handler.cc       args.GetReturnValue().SetUndefined();
args               72 chrome/renderer/extensions/utils_native_handler.cc   args.GetReturnValue().Set(result);
args               21 chrome/renderer/extensions/utils_native_handler.h   void CreateClassWrapper(const v8::FunctionCallbackInfo<v8::Value>& args);
args               36 chrome/renderer/extensions/v8_schema_registry.cc   void GetSchema(const v8::FunctionCallbackInfo<v8::Value>& args) {
args               37 chrome/renderer/extensions/v8_schema_registry.cc     args.GetReturnValue().Set(
args               38 chrome/renderer/extensions/v8_schema_registry.cc       registry_->GetSchema(*v8::String::Utf8Value(args[0])));
args               61 chrome/renderer/extensions/webstore_bindings.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               69 chrome/renderer/extensions/webstore_bindings.cc   CHECK(args[0]->IsBoolean());
args               70 chrome/renderer/extensions/webstore_bindings.cc   if (args[0]->BooleanValue())
args               72 chrome/renderer/extensions/webstore_bindings.cc   CHECK(args[1]->IsBoolean());
args               73 chrome/renderer/extensions/webstore_bindings.cc   if (args[1]->BooleanValue())
args               77 chrome/renderer/extensions/webstore_bindings.cc   if (!args[2]->IsUndefined()) {
args               78 chrome/renderer/extensions/webstore_bindings.cc     CHECK(args[2]->IsString());
args               79 chrome/renderer/extensions/webstore_bindings.cc     preferred_store_link_url = std::string(*v8::String::Utf8Value(args[2]));
args               88 chrome/renderer/extensions/webstore_bindings.cc     args.GetIsolate()->ThrowException(
args               89 chrome/renderer/extensions/webstore_bindings.cc         v8::String::NewFromUtf8(args.GetIsolate(), error.c_str()));
args              102 chrome/renderer/extensions/webstore_bindings.cc   args.GetReturnValue().Set(static_cast<int32_t>(install_id));
args               28 chrome/renderer/extensions/webstore_bindings.h   void Install(const v8::FunctionCallbackInfo<v8::Value>& args);
args               55 chrome/renderer/external_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args);
args               59 chrome/renderer/external_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args);
args               98 chrome/renderer/external_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               99 chrome/renderer/external_extension.cc   if (!args.Length() || !args[0]->IsString()) return;
args              101 chrome/renderer/external_extension.cc   std::string name(*v8::String::Utf8Value(args[0]));
args              117 chrome/renderer/external_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              118 chrome/renderer/external_extension.cc   if (!args.Length() || !args[0]->IsString()) return;
args              119 chrome/renderer/external_extension.cc   v8::String::Utf8Value utf8name(args[0]);
args              141 chrome/renderer/external_extension.cc     v8::Isolate* isolate = args.GetIsolate();
args              145 chrome/renderer/external_extension.cc   args.GetReturnValue().Set(static_cast<int32_t>(install));
args              100 chrome/renderer/loadtimes_extension_bindings.cc   static void GetLoadTimes(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              107 chrome/renderer/loadtimes_extension_bindings.cc         v8::Isolate* isolate = args.GetIsolate();
args              162 chrome/renderer/loadtimes_extension_bindings.cc         args.GetReturnValue().Set(load_times);
args              166 chrome/renderer/loadtimes_extension_bindings.cc     args.GetReturnValue().SetNull();
args              169 chrome/renderer/loadtimes_extension_bindings.cc   static void GetCSI(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              176 chrome/renderer/loadtimes_extension_bindings.cc         v8::Isolate* isolate = args.GetIsolate();
args              195 chrome/renderer/loadtimes_extension_bindings.cc         args.GetReturnValue().Set(csi);
args              199 chrome/renderer/loadtimes_extension_bindings.cc     args.GetReturnValue().SetNull();
args               71 chrome/renderer/net_benchmarking_extension.cc   static void ClearCache(const v8::FunctionCallbackInfo<v8::Value>& args) {
args               78 chrome/renderer/net_benchmarking_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args               85 chrome/renderer/net_benchmarking_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args               92 chrome/renderer/net_benchmarking_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args               97 chrome/renderer/net_benchmarking_extension.cc   static void EnableSpdy(const v8::FunctionCallbackInfo<v8::Value>& args) {
args               98 chrome/renderer/net_benchmarking_extension.cc     if (!args.Length() || !args[0]->IsBoolean())
args              102 chrome/renderer/net_benchmarking_extension.cc         args[0]->BooleanValue()));
args              100 chrome/renderer/pepper/pepper_extensions_common_host.cc     const base::ListValue& args) {
args              103 chrome/renderer/pepper/pepper_extensions_common_host.cc       base::Bind(&DoNothing), request_name, args, &error);
args              110 chrome/renderer/pepper/pepper_extensions_common_host.cc     const base::ListValue& args) {
args              119 chrome/renderer/pepper/pepper_extensions_common_host.cc       args,
args               59 chrome/renderer/pepper/pepper_extensions_common_host.h                  const base::ListValue& args);
args               63 chrome/renderer/pepper/pepper_extensions_common_host.h                  const base::ListValue& args);
args               33 chrome/renderer/principals_extension_bindings.cc       const v8::FunctionCallbackInfo<v8::Value>& args);
args               35 chrome/renderer/principals_extension_bindings.cc       const v8::FunctionCallbackInfo<v8::Value>& args);
args               73 chrome/renderer/principals_extension_bindings.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args               76 chrome/renderer/principals_extension_bindings.cc     args.GetReturnValue().SetNull();
args               85 chrome/renderer/principals_extension_bindings.cc   v8::Isolate* isolate = args.GetIsolate();
args               94 chrome/renderer/principals_extension_bindings.cc   args.GetReturnValue().Set(v8_result);
args               98 chrome/renderer/principals_extension_bindings.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              353 chrome/renderer/searchbox/searchbox_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args);
args              357 chrome/renderer/searchbox/searchbox_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args);
args              360 chrome/renderer/searchbox/searchbox_extension.cc   static void Focus(const v8::FunctionCallbackInfo<v8::Value>& args);
args              364 chrome/renderer/searchbox/searchbox_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args);
args              368 chrome/renderer/searchbox/searchbox_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args);
args              372 chrome/renderer/searchbox/searchbox_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args);
args              378 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args);
args              381 chrome/renderer/searchbox/searchbox_extension.cc   static void GetQuery(const v8::FunctionCallbackInfo<v8::Value>& args);
args              384 chrome/renderer/searchbox/searchbox_extension.cc   static void GetRightToLeft(const v8::FunctionCallbackInfo<v8::Value>& args);
args              387 chrome/renderer/searchbox/searchbox_extension.cc   static void GetStartMargin(const v8::FunctionCallbackInfo<v8::Value>& args);
args              391 chrome/renderer/searchbox/searchbox_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args);
args              396 chrome/renderer/searchbox/searchbox_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args);
args              399 chrome/renderer/searchbox/searchbox_extension.cc   static void IsFocused(const v8::FunctionCallbackInfo<v8::Value>& args);
args              403 chrome/renderer/searchbox/searchbox_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args);
args              407 chrome/renderer/searchbox/searchbox_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args);
args              410 chrome/renderer/searchbox/searchbox_extension.cc   static void LogEvent(const v8::FunctionCallbackInfo<v8::Value>& args);
args              414 chrome/renderer/searchbox/searchbox_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args);
args              418 chrome/renderer/searchbox/searchbox_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args);
args              423 chrome/renderer/searchbox/searchbox_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args);
args              426 chrome/renderer/searchbox/searchbox_extension.cc   static void Paste(const v8::FunctionCallbackInfo<v8::Value>& args);
args              430 chrome/renderer/searchbox/searchbox_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args);
args              434 chrome/renderer/searchbox/searchbox_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args);
args              438 chrome/renderer/searchbox/searchbox_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args);
args              442 chrome/renderer/searchbox/searchbox_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args);
args              446 chrome/renderer/searchbox/searchbox_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args);
args              450 chrome/renderer/searchbox/searchbox_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args);
args              621 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              623 chrome/renderer/searchbox/searchbox_extension.cc   if (!render_view || args.Length() == 0 || args[0]->IsUndefined()) return;
args              628 chrome/renderer/searchbox/searchbox_extension.cc       V8ValueToUTF16(args[0]));
args              633 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              635 chrome/renderer/searchbox/searchbox_extension.cc   if (!render_view || !args.Length()) return;
args              638 chrome/renderer/searchbox/searchbox_extension.cc   SearchBox::Get(render_view)->DeleteMostVisitedItem(args[0]->IntegerValue());
args              643 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              653 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              657 chrome/renderer/searchbox/searchbox_extension.cc   args.GetReturnValue().Set(
args              663 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              665 chrome/renderer/searchbox/searchbox_extension.cc   if (!render_view || args.Length() != 5) return;
args              667 chrome/renderer/searchbox/searchbox_extension.cc   bool middle_button = args[0]->BooleanValue();
args              668 chrome/renderer/searchbox/searchbox_extension.cc   bool alt_key = args[1]->BooleanValue();
args              669 chrome/renderer/searchbox/searchbox_extension.cc   bool ctrl_key = args[2]->BooleanValue();
args              670 chrome/renderer/searchbox/searchbox_extension.cc   bool meta_key = args[3]->BooleanValue();
args              671 chrome/renderer/searchbox/searchbox_extension.cc   bool shift_key = args[4]->BooleanValue();
args              678 chrome/renderer/searchbox/searchbox_extension.cc   v8::Isolate* isolate = args.GetIsolate();
args              679 chrome/renderer/searchbox/searchbox_extension.cc   args.GetReturnValue().Set(v8::Int32::New(isolate, disposition));
args              684 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              694 chrome/renderer/searchbox/searchbox_extension.cc   v8::Isolate* isolate = args.GetIsolate();
args              704 chrome/renderer/searchbox/searchbox_extension.cc   args.GetReturnValue().Set(v8_mv_items);
args              709 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              715 chrome/renderer/searchbox/searchbox_extension.cc   if (args.Length() < 1 || !args[0]->IsNumber())
args              719 chrome/renderer/searchbox/searchbox_extension.cc   InstantRestrictedID restricted_id = args[0]->IntegerValue();
args              725 chrome/renderer/searchbox/searchbox_extension.cc   v8::Isolate* isolate = args.GetIsolate();
args              726 chrome/renderer/searchbox/searchbox_extension.cc   args.GetReturnValue().Set(GenerateMostVisitedItem(
args              732 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              737 chrome/renderer/searchbox/searchbox_extension.cc   v8::Isolate* isolate = args.GetIsolate();
args              738 chrome/renderer/searchbox/searchbox_extension.cc   args.GetReturnValue().Set(UTF16ToV8String(isolate, query));
args              743 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              744 chrome/renderer/searchbox/searchbox_extension.cc   args.GetReturnValue().Set(base::i18n::IsRTL());
args              749 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              752 chrome/renderer/searchbox/searchbox_extension.cc   args.GetReturnValue().Set(static_cast<int32_t>(
args              758 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              764 chrome/renderer/searchbox/searchbox_extension.cc   v8::Isolate* isolate = args.GetIsolate();
args              770 chrome/renderer/searchbox/searchbox_extension.cc   args.GetReturnValue().Set(data);
args              775 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              782 chrome/renderer/searchbox/searchbox_extension.cc   v8::Isolate* isolate = args.GetIsolate();
args              925 chrome/renderer/searchbox/searchbox_extension.cc   args.GetReturnValue().Set(info);
args              930 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              936 chrome/renderer/searchbox/searchbox_extension.cc   args.GetReturnValue().Set(is_focused);
args              941 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              948 chrome/renderer/searchbox/searchbox_extension.cc   args.GetReturnValue().Set(is_input_in_progress);
args              953 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              957 chrome/renderer/searchbox/searchbox_extension.cc   args.GetReturnValue().Set(SearchBox::Get(render_view)->
args              963 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              968 chrome/renderer/searchbox/searchbox_extension.cc   if (args.Length() < 1 || !args[0]->IsNumber())
args              973 chrome/renderer/searchbox/searchbox_extension.cc   if (args[0]->Uint32Value() < NTP_NUM_EVENT_TYPES) {
args              975 chrome/renderer/searchbox/searchbox_extension.cc         static_cast<NTPLoggingEventType>(args[0]->Uint32Value());
args              982 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args              987 chrome/renderer/searchbox/searchbox_extension.cc   if (args.Length() < 2 || !args[0]->IsNumber() || args[1]->IsUndefined())
args              993 chrome/renderer/searchbox/searchbox_extension.cc       args[0]->IntegerValue(), V8ValueToUTF16(args[1]));
args              998 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args             1003 chrome/renderer/searchbox/searchbox_extension.cc   if (args.Length() < 2 || !args[0]->IsNumber() || args[1]->IsUndefined())
args             1009 chrome/renderer/searchbox/searchbox_extension.cc       args[0]->IntegerValue(), V8ValueToUTF16(args[1]));
args             1014 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args             1016 chrome/renderer/searchbox/searchbox_extension.cc   if (!render_view || !args.Length()) return;
args             1021 chrome/renderer/searchbox/searchbox_extension.cc   if (args[0]->IsNumber()) {
args             1024 chrome/renderer/searchbox/searchbox_extension.cc             args[0]->IntegerValue(), &item)) {
args             1030 chrome/renderer/searchbox/searchbox_extension.cc     const base::string16& possibly_relative_url = V8ValueToUTF16(args[0]);
args             1041 chrome/renderer/searchbox/searchbox_extension.cc     if (args[1]->IsNumber()) {
args             1042 chrome/renderer/searchbox/searchbox_extension.cc       disposition = (WindowOpenDisposition) args[1]->Uint32Value();
args             1051 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args             1056 chrome/renderer/searchbox/searchbox_extension.cc   if (!args[0]->IsUndefined())
args             1057 chrome/renderer/searchbox/searchbox_extension.cc     text = V8ValueToUTF16(args[0]);
args             1065 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args             1075 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args             1085 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args             1087 chrome/renderer/searchbox/searchbox_extension.cc   if (!render_view || args.Length() < 1) return;
args             1090 chrome/renderer/searchbox/searchbox_extension.cc   SearchBox::Get(render_view)->SetVoiceSearchSupported(args[0]->BooleanValue());
args             1095 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args             1105 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args             1107 chrome/renderer/searchbox/searchbox_extension.cc   if (!render_view || !args.Length()) return;
args             1110 chrome/renderer/searchbox/searchbox_extension.cc   SearchBox::Get(render_view)->UndoMostVisitedDeletion(args[0]->IntegerValue());
args             1115 chrome/renderer/searchbox/searchbox_extension.cc     const v8::FunctionCallbackInfo<v8::Value>& args) {
args             1123 chrome/renderer/searchbox/searchbox_extension.cc   args.GetReturnValue().Set(display_instant_results);
args               80 chrome/test/base/module_system_test.cc   void AssertTrue(const v8::FunctionCallbackInfo<v8::Value>& args) {
args               81 chrome/test/base/module_system_test.cc     CHECK_EQ(1, args.Length());
args               83 chrome/test/base/module_system_test.cc     failed_ = failed_ || !args[0]->ToBoolean()->Value();
args               86 chrome/test/base/module_system_test.cc   void AssertFalse(const v8::FunctionCallbackInfo<v8::Value>& args) {
args               87 chrome/test/base/module_system_test.cc     CHECK_EQ(1, args.Length());
args               89 chrome/test/base/module_system_test.cc     failed_ = failed_ || args[0]->ToBoolean()->Value();
args               18 chrome/test/base/v8_unit_test.cc std::string LogArgs2String(const v8::FunctionCallbackInfo<v8::Value>& args) {
args               21 chrome/test/base/v8_unit_test.cc   for (int i = 0; i < args.Length(); i++) {
args               28 chrome/test/base/v8_unit_test.cc     v8::String::Utf8Value str(args[i]);
args              120 chrome/test/base/v8_unit_test.cc   v8::Handle<v8::Value> args[] = {
args              127 chrome/test/base/v8_unit_test.cc   v8::Handle<v8::Value> result = function->Call(context->Global(), 3, args);
args              274 chrome/test/base/v8_unit_test.cc void V8UnitTest::Log(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              275 chrome/test/base/v8_unit_test.cc   LOG(INFO) << LogArgs2String(args);
args              278 chrome/test/base/v8_unit_test.cc void V8UnitTest::Error(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              280 chrome/test/base/v8_unit_test.cc   LOG(ERROR) << LogArgs2String(args);
args              283 chrome/test/base/v8_unit_test.cc void V8UnitTest::ChromeSend(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              288 chrome/test/base/v8_unit_test.cc   EXPECT_LE(1, args.Length());
args              291 chrome/test/base/v8_unit_test.cc   v8::String::Utf8Value message(args[0]);
args              295 chrome/test/base/v8_unit_test.cc   EXPECT_EQ(2, args.Length());
args              298 chrome/test/base/v8_unit_test.cc   v8::Handle<v8::Array> testResult(args[1].As<v8::Array>());
args               58 chrome/test/base/v8_unit_test.h   static void Log(const v8::FunctionCallbackInfo<v8::Value>& args);
args               63 chrome/test/base/v8_unit_test.h   static void Error(const v8::FunctionCallbackInfo<v8::Value>& args);
args               68 chrome/test/base/v8_unit_test.h   static void ChromeSend(const v8::FunctionCallbackInfo<v8::Value>& args);
args              132 chrome/test/base/web_ui_browsertest.cc   ConstValueVector args;
args              133 chrome/test/base/web_ui_browsertest.cc   args.push_back(arg);
args              134 chrome/test/base/web_ui_browsertest.cc   return RunJavascriptFunction(function_name, args);
args              140 chrome/test/base/web_ui_browsertest.cc   ConstValueVector args;
args              141 chrome/test/base/web_ui_browsertest.cc   args.push_back(arg1);
args              142 chrome/test/base/web_ui_browsertest.cc   args.push_back(arg2);
args              143 chrome/test/base/web_ui_browsertest.cc   return RunJavascriptFunction(function_name, args);
args              156 chrome/test/base/web_ui_browsertest.cc   ConstValueVector args;
args              157 chrome/test/base/web_ui_browsertest.cc   args.push_back(new base::StringValue(test_fixture));
args              158 chrome/test/base/web_ui_browsertest.cc   args.push_back(new base::StringValue(test_name));
args              161 chrome/test/base/web_ui_browsertest.cc     return RunJavascriptAsyncTest("RUN_TEST_F", args);
args              163 chrome/test/base/web_ui_browsertest.cc     return RunJavascriptTest("RUN_TEST_F", args);
args              173 chrome/test/base/web_ui_browsertest.cc   ConstValueVector args;
args              174 chrome/test/base/web_ui_browsertest.cc   args.push_back(arg);
args              175 chrome/test/base/web_ui_browsertest.cc   return RunJavascriptTest(test_name, args);
args              181 chrome/test/base/web_ui_browsertest.cc   ConstValueVector args;
args              182 chrome/test/base/web_ui_browsertest.cc   args.push_back(arg1);
args              183 chrome/test/base/web_ui_browsertest.cc   args.push_back(arg2);
args              184 chrome/test/base/web_ui_browsertest.cc   return RunJavascriptTest(test_name, args);
args              201 chrome/test/base/web_ui_browsertest.cc   ConstValueVector args;
args              202 chrome/test/base/web_ui_browsertest.cc   args.push_back(arg);
args              203 chrome/test/base/web_ui_browsertest.cc   return RunJavascriptAsyncTest(test_name, args);
args              209 chrome/test/base/web_ui_browsertest.cc   ConstValueVector args;
args              210 chrome/test/base/web_ui_browsertest.cc   args.push_back(arg1);
args              211 chrome/test/base/web_ui_browsertest.cc   args.push_back(arg2);
args              212 chrome/test/base/web_ui_browsertest.cc   return RunJavascriptAsyncTest(test_name, args);
args              219 chrome/test/base/web_ui_browsertest.cc   ConstValueVector args;
args              220 chrome/test/base/web_ui_browsertest.cc   args.push_back(arg1);
args              221 chrome/test/base/web_ui_browsertest.cc   args.push_back(arg2);
args              222 chrome/test/base/web_ui_browsertest.cc   args.push_back(arg3);
args              223 chrome/test/base/web_ui_browsertest.cc   return RunJavascriptAsyncTest(test_name, args);
args              237 chrome/test/base/web_ui_browsertest.cc   ConstValueVector args;
args              238 chrome/test/base/web_ui_browsertest.cc   args.push_back(new base::StringValue(preload_test_fixture));
args              239 chrome/test/base/web_ui_browsertest.cc   args.push_back(new base::StringValue(preload_test_name));
args              241 chrome/test/base/web_ui_browsertest.cc       "preloadJavascriptLibraries", args, false, false, preload_host);
args              148 chrome/test/base/web_ui_browsertest.h       const WebUIBrowserTest::ConstValueVector& args);
args              137 chrome/test/chromedriver/capabilities_unittest.cc   base::ListValue args;
args              138 chrome/test/chromedriver/capabilities_unittest.cc   args.AppendString("arg1");
args              139 chrome/test/chromedriver/capabilities_unittest.cc   args.AppendString("arg2=val");
args              141 chrome/test/chromedriver/capabilities_unittest.cc   caps.Set("chromeOptions.args", args.DeepCopy());
args               24 chrome/test/chromedriver/chrome/adb.h                                     const std::string& args) = 0;
args              119 chrome/test/chromedriver/chrome/adb_impl.cc                                    const std::string& args) {
args              122 chrome/test/chromedriver/chrome/adb_impl.cc       base::GetQuotedJSONString(exec_name + " " + args);
args               36 chrome/test/chromedriver/chrome/adb_impl.h                                     const std::string& args) OVERRIDE;
args               18 chrome/test/chromedriver/chrome/automation_extension.cc   base::ListValue args;
args               23 chrome/test/chromedriver/chrome/automation_extension.cc       args,
args               69 chrome/test/chromedriver/chrome/automation_extension.cc   base::ListValue args;
args               73 chrome/test/chromedriver/chrome/automation_extension.cc                                                args,
args               97 chrome/test/chromedriver/chrome/automation_extension.cc   base::ListValue args;
args               98 chrome/test/chromedriver/chrome/automation_extension.cc   args.Append(update_info.DeepCopy());
args              102 chrome/test/chromedriver/chrome/automation_extension.cc                                       args,
args              108 chrome/test/chromedriver/chrome/automation_extension.cc   base::ListValue args;
args              109 chrome/test/chromedriver/chrome/automation_extension.cc   args.AppendString(id);
args              113 chrome/test/chromedriver/chrome/automation_extension.cc                                       args,
args               37 chrome/test/chromedriver/chrome/device_manager.cc                      const std::string& args,
args               96 chrome/test/chromedriver/chrome/device_manager.cc             serial_, kChromeCmdLineFileBeforeM33, exec_name, args);
args               98 chrome/test/chromedriver/chrome/device_manager.cc             serial_, kChromeCmdLineFile, exec_name, args);
args              104 chrome/test/chromedriver/chrome/device_manager.cc             serial_, command_line_file, exec_name, args);
args               28 chrome/test/chromedriver/chrome/device_manager.h                const std::string& args,
args               37 chrome/test/chromedriver/chrome/device_manager_unittest.cc                                     const std::string& args) OVERRIDE {
args               47 chrome/test/chromedriver/chrome/stub_web_view.cc                                  const base::ListValue& args,
args               54 chrome/test/chromedriver/chrome/stub_web_view.cc                                       const base::ListValue& args,
args               62 chrome/test/chromedriver/chrome/stub_web_view.cc                                           const base::ListValue& args,
args               70 chrome/test/chromedriver/chrome/stub_web_view.cc                                        const base::ListValue& args,
args               32 chrome/test/chromedriver/chrome/stub_web_view.h                               const base::ListValue& args,
args               36 chrome/test/chromedriver/chrome/stub_web_view.h                                    const base::ListValue& args,
args               42 chrome/test/chromedriver/chrome/stub_web_view.h       const base::ListValue& args,
args               47 chrome/test/chromedriver/chrome/stub_web_view.h                                     const base::ListValue& args,
args               69 chrome/test/chromedriver/chrome/web_view.h                               const base::ListValue& args,
args               79 chrome/test/chromedriver/chrome/web_view.h                                    const base::ListValue& args,
args               89 chrome/test/chromedriver/chrome/web_view.h                                        const base::ListValue& args,
args               98 chrome/test/chromedriver/chrome/web_view.h                                     const base::ListValue& args,
args              177 chrome/test/chromedriver/chrome/web_view_impl.cc                                  const base::ListValue& args,
args              180 chrome/test/chromedriver/chrome/web_view_impl.cc   base::JSONWriter::Write(&args, &json);
args              197 chrome/test/chromedriver/chrome/web_view_impl.cc                                       const base::ListValue& args,
args              201 chrome/test/chromedriver/chrome/web_view_impl.cc       frame, function, args, false, timeout, result);
args              206 chrome/test/chromedriver/chrome/web_view_impl.cc                                           const base::ListValue& args,
args              210 chrome/test/chromedriver/chrome/web_view_impl.cc       frame, function, args, true, timeout, result);
args              215 chrome/test/chromedriver/chrome/web_view_impl.cc                                        const base::ListValue& args,
args              225 chrome/test/chromedriver/chrome/web_view_impl.cc       client_.get(), context_id, function, args, &found_node, &node_id);
args              249 chrome/test/chromedriver/chrome/web_view_impl.cc       base::ListValue args;
args              250 chrome/test/chromedriver/chrome/web_view_impl.cc       args.AppendInteger(it->x);
args              251 chrome/test/chromedriver/chrome/web_view_impl.cc       args.AppendInteger(it->y);
args              252 chrome/test/chromedriver/chrome/web_view_impl.cc       args.AppendInteger(it->modifiers);
args              255 chrome/test/chromedriver/chrome/web_view_impl.cc           frame, kDispatchContextMenuEventScript, args, &result);
args              402 chrome/test/chromedriver/chrome/web_view_impl.cc   base::ListValue args;
args              403 chrome/test/chromedriver/chrome/web_view_impl.cc   args.Append(element.DeepCopy());
args              408 chrome/test/chromedriver/chrome/web_view_impl.cc       args, &found_node, &node_id);
args              425 chrome/test/chromedriver/chrome/web_view_impl.cc                                               const base::ListValue& args,
args              431 chrome/test/chromedriver/chrome/web_view_impl.cc   async_args.Append(args.DeepCopy());
args              609 chrome/test/chromedriver/chrome/web_view_impl.cc                              const base::ListValue& args,
args              613 chrome/test/chromedriver/chrome/web_view_impl.cc   base::JSONWriter::Write(&args, &json);
args               52 chrome/test/chromedriver/chrome/web_view_impl.h                               const base::ListValue& args,
args               56 chrome/test/chromedriver/chrome/web_view_impl.h                                    const base::ListValue& args,
args               62 chrome/test/chromedriver/chrome/web_view_impl.h       const base::ListValue& args,
args               67 chrome/test/chromedriver/chrome/web_view_impl.h                                     const base::ListValue& args,
args               95 chrome/test/chromedriver/chrome/web_view_impl.h                                    const base::ListValue& args,
args              138 chrome/test/chromedriver/chrome/web_view_impl.h                              const base::ListValue& args,
args              296 chrome/test/chromedriver/commands_unittest.cc                               const base::ListValue& args,
args              325 chrome/test/chromedriver/commands_unittest.cc       args_.reset(args.DeepCopy());
args              508 chrome/test/chromedriver/commands_unittest.cc                               const base::ListValue& args,
args               67 chrome/test/chromedriver/element_commands.cc     base::ListValue args;
args               68 chrome/test/chromedriver/element_commands.cc     args.Append(CreateElement(element_id));
args               71 chrome/test/chromedriver/element_commands.cc         session->GetCurrentFrameId(), kFocusScript, args, &result);
args               85 chrome/test/chromedriver/element_commands.cc   base::ListValue args;
args               86 chrome/test/chromedriver/element_commands.cc   args.Append(CreateElement(element_id));
args               90 chrome/test/chromedriver/element_commands.cc       args,
args              278 chrome/test/chromedriver/element_commands.cc   base::ListValue args;
args              279 chrome/test/chromedriver/element_commands.cc   args.Append(CreateElement(element_id));
args              284 chrome/test/chromedriver/element_commands.cc       args, &result);
args              346 chrome/test/chromedriver/element_commands.cc   base::ListValue args;
args              347 chrome/test/chromedriver/element_commands.cc   args.Append(CreateElement(element_id));
args              351 chrome/test/chromedriver/element_commands.cc       args,
args              361 chrome/test/chromedriver/element_commands.cc   base::ListValue args;
args              362 chrome/test/chromedriver/element_commands.cc   args.Append(CreateElement(element_id));
args              366 chrome/test/chromedriver/element_commands.cc       args,
args              376 chrome/test/chromedriver/element_commands.cc   base::ListValue args;
args              377 chrome/test/chromedriver/element_commands.cc   args.Append(CreateElement(element_id));
args              381 chrome/test/chromedriver/element_commands.cc       args,
args              391 chrome/test/chromedriver/element_commands.cc   base::ListValue args;
args              392 chrome/test/chromedriver/element_commands.cc   args.Append(CreateElement(element_id));
args              396 chrome/test/chromedriver/element_commands.cc       args,
args              406 chrome/test/chromedriver/element_commands.cc   base::ListValue args;
args              407 chrome/test/chromedriver/element_commands.cc   args.Append(CreateElement(element_id));
args              411 chrome/test/chromedriver/element_commands.cc       args,
args              421 chrome/test/chromedriver/element_commands.cc   base::ListValue args;
args              422 chrome/test/chromedriver/element_commands.cc   args.Append(CreateElement(element_id));
args              426 chrome/test/chromedriver/element_commands.cc       args,
args              436 chrome/test/chromedriver/element_commands.cc   base::ListValue args;
args              437 chrome/test/chromedriver/element_commands.cc   args.Append(CreateElement(element_id));
args              441 chrome/test/chromedriver/element_commands.cc       args,
args              451 chrome/test/chromedriver/element_commands.cc   base::ListValue args;
args              452 chrome/test/chromedriver/element_commands.cc   args.Append(CreateElement(element_id));
args              456 chrome/test/chromedriver/element_commands.cc       args,
args              481 chrome/test/chromedriver/element_commands.cc   base::ListValue args;
args              482 chrome/test/chromedriver/element_commands.cc   args.Append(CreateElement(element_id));
args              486 chrome/test/chromedriver/element_commands.cc       args,
args               81 chrome/test/chromedriver/element_util.cc     const base::ListValue& args,
args               84 chrome/test/chromedriver/element_util.cc       frame, webdriver::atoms::asString(atom_function), args, result);
args               92 chrome/test/chromedriver/element_util.cc   base::ListValue args;
args               93 chrome/test/chromedriver/element_util.cc   args.Append(CreateElement(element_id));
args               94 chrome/test/chromedriver/element_util.cc   args.Append(CreateValueFrom(location));
args               98 chrome/test/chromedriver/element_util.cc       args, &result);
args              127 chrome/test/chromedriver/element_util.cc   base::ListValue args;
args              128 chrome/test/chromedriver/element_util.cc   args.Append(CreateElement(element_id));
args              129 chrome/test/chromedriver/element_util.cc   args.AppendBoolean(center);
args              130 chrome/test/chromedriver/element_util.cc   args.Append(CreateValueFrom(region));
args              134 chrome/test/chromedriver/element_util.cc       args, &result);
args              159 chrome/test/chromedriver/element_util.cc   base::ListValue args;
args              160 chrome/test/chromedriver/element_util.cc   args.Append(CreateElement(element_id));
args              161 chrome/test/chromedriver/element_util.cc   args.AppendString(property);
args              165 chrome/test/chromedriver/element_util.cc       args, &result);
args              286 chrome/test/chromedriver/element_util.cc   base::ListValue args;
args              290 chrome/test/chromedriver/element_util.cc       args,
args              314 chrome/test/chromedriver/element_util.cc   base::ListValue args;
args              315 chrome/test/chromedriver/element_util.cc   args.Append(CreateElement(element_id));
args              316 chrome/test/chromedriver/element_util.cc   args.AppendString(attribute_name);
args              319 chrome/test/chromedriver/element_util.cc       args, value);
args              370 chrome/test/chromedriver/element_util.cc     base::ListValue args;
args              371 chrome/test/chromedriver/element_util.cc     args.Append(CreateElement(element_id));
args              374 chrome/test/chromedriver/element_util.cc         session->GetCurrentFrameId(), kGetImageElementForArea, args, &result);
args              430 chrome/test/chromedriver/element_util.cc   base::ListValue args;
args              431 chrome/test/chromedriver/element_util.cc   args.Append(CreateElement(element_id));
args              434 chrome/test/chromedriver/element_util.cc       session->GetCurrentFrameId(), kGetElementRegionScript, args, &result);
args              449 chrome/test/chromedriver/element_util.cc   base::ListValue args;
args              450 chrome/test/chromedriver/element_util.cc   args.Append(CreateElement(element_id));
args              455 chrome/test/chromedriver/element_util.cc       args, &result);
args              468 chrome/test/chromedriver/element_util.cc   base::ListValue args;
args              469 chrome/test/chromedriver/element_util.cc   args.Append(CreateElement(element_id));
args              473 chrome/test/chromedriver/element_util.cc       args, &result);
args              487 chrome/test/chromedriver/element_util.cc   base::ListValue args;
args              488 chrome/test/chromedriver/element_util.cc   args.Append(CreateElement(element_id));
args              489 chrome/test/chromedriver/element_util.cc   args.AppendBoolean(ignore_opacity);
args              493 chrome/test/chromedriver/element_util.cc       args, &result);
args              506 chrome/test/chromedriver/element_util.cc   base::ListValue args;
args              507 chrome/test/chromedriver/element_util.cc   args.Append(CreateElement(element_id));
args              511 chrome/test/chromedriver/element_util.cc       args, &result);
args              524 chrome/test/chromedriver/element_util.cc   base::ListValue args;
args              525 chrome/test/chromedriver/element_util.cc   args.Append(CreateElement(element_id));
args              529 chrome/test/chromedriver/element_util.cc       args, &result);
args              542 chrome/test/chromedriver/element_util.cc   base::ListValue args;
args              543 chrome/test/chromedriver/element_util.cc   args.Append(CreateElement(element_id));
args              547 chrome/test/chromedriver/element_util.cc       args, &result);
args              561 chrome/test/chromedriver/element_util.cc   base::ListValue args;
args              562 chrome/test/chromedriver/element_util.cc   args.Append(CreateElement(element_id));
args              563 chrome/test/chromedriver/element_util.cc   args.AppendBoolean(selected);
args              567 chrome/test/chromedriver/element_util.cc       args, &result);
args              618 chrome/test/chromedriver/element_util.cc     base::ListValue args;
args              619 chrome/test/chromedriver/element_util.cc     args.AppendString(
args              624 chrome/test/chromedriver/element_util.cc         rit->parent_frame_id, kFindSubFrameScript, args, &result);
args              304 chrome/test/chromedriver/session_commands.cc     base::ListValue args;
args              316 chrome/test/chromedriver/session_commands.cc           std::string(), kGetWindowNameScript, args, &result);
args               48 chrome/test/chromedriver/window_commands.cc   base::ListValue args;
args               50 chrome/test/chromedriver/window_commands.cc       frame, "function() { return document.URL; }", args, &value);
args              131 chrome/test/chromedriver/window_commands.cc   base::ListValue args;
args              132 chrome/test/chromedriver/window_commands.cc   args.AppendInteger(x);
args              133 chrome/test/chromedriver/window_commands.cc   args.AppendInteger(y);
args              149 chrome/test/chromedriver/window_commands.cc       args,
args              261 chrome/test/chromedriver/window_commands.cc     const base::ListValue* args;
args              262 chrome/test/chromedriver/window_commands.cc     if (!params.GetList("args", &args))
args              266 chrome/test/chromedriver/window_commands.cc                                   "function(){" + script + "}", *args, value);
args              278 chrome/test/chromedriver/window_commands.cc   const base::ListValue* args;
args              279 chrome/test/chromedriver/window_commands.cc   if (!params.GetList("args", &args))
args              283 chrome/test/chromedriver/window_commands.cc       session->GetCurrentFrameId(), "function(){" + script + "}", *args,
args              302 chrome/test/chromedriver/window_commands.cc   base::ListValue args;
args              306 chrome/test/chromedriver/window_commands.cc     args.Append(id_dict->DeepCopy());
args              324 chrome/test/chromedriver/window_commands.cc     args.Append(new base::StringValue(xpath));
args              328 chrome/test/chromedriver/window_commands.cc       session->GetCurrentFrameId(), script, args, &frame);
args              334 chrome/test/chromedriver/window_commands.cc       session->GetCurrentFrameId(), script, args, &result);
args              370 chrome/test/chromedriver/window_commands.cc   base::ListValue args;
args              371 chrome/test/chromedriver/window_commands.cc   return web_view->CallFunction(std::string(), kGetTitleScript, args, value);
args              383 chrome/test/chromedriver/window_commands.cc   base::ListValue args;
args              385 chrome/test/chromedriver/window_commands.cc       session->GetCurrentFrameId(), kGetPageSource, args, value);
args              642 chrome/test/chromedriver/window_commands.cc   base::ListValue args;
args              643 chrome/test/chromedriver/window_commands.cc   args.Append(new base::StringValue(key));
args              647 chrome/test/chromedriver/window_commands.cc       args,
args              681 chrome/test/chromedriver/window_commands.cc   base::ListValue args;
args              682 chrome/test/chromedriver/window_commands.cc   args.Append(new base::StringValue(key));
args              683 chrome/test/chromedriver/window_commands.cc   args.Append(new base::StringValue(storage_value));
args              687 chrome/test/chromedriver/window_commands.cc       args,
args              700 chrome/test/chromedriver/window_commands.cc   base::ListValue args;
args              701 chrome/test/chromedriver/window_commands.cc   args.Append(new base::StringValue(key));
args              705 chrome/test/chromedriver/window_commands.cc       args,
args              789 chrome/test/chromedriver/window_commands.cc   base::ListValue args;
args              790 chrome/test/chromedriver/window_commands.cc   args.Append(cookie->DeepCopy());
args              793 chrome/test/chromedriver/window_commands.cc       session->GetCurrentFrameId(), kAddCookieScript, args, &result);
args              128 chrome_elf/chrome_elf_util.cc   base::string16 args;
args              131 chrome_elf/chrome_elf_util.cc                           &args)) {
args              134 chrome_elf/chrome_elf_util.cc   return args.find(L"--multi-install") != base::string16::npos;
args              377 chromeos/dbus/fake_bluetooth_device_client.cc   int args;
args              378 chromeos/dbus/fake_bluetooth_device_client.cc   args = fcntl(fds[1], F_GETFL, NULL);
args              379 chromeos/dbus/fake_bluetooth_device_client.cc   if (args < 0) {
args              384 chromeos/dbus/fake_bluetooth_device_client.cc   args |= O_NONBLOCK;
args              385 chromeos/dbus/fake_bluetooth_device_client.cc   if (fcntl(fds[1], F_SETFL, args) < 0) {
args               33 chromeos/system/name_value_pairs_parser.cc   std::vector<std::string> args;
args               35 chromeos/system/name_value_pairs_parser.cc     args.push_back(argv[argn]);
args               36 chromeos/system/name_value_pairs_parser.cc   if (!base::GetAppOutput(args, &output)) {
args              113 chromeos/tools/onc_validator/onc_validator.cc   CommandLine::StringVector args = command_line.GetArgs();
args              114 chromeos/tools/onc_validator/onc_validator.cc   if (args.size() != 2) {
args              119 chromeos/tools/onc_validator/onc_validator.cc   scoped_ptr<base::DictionaryValue> onc_object = ReadDictionary(args[1]);
args              137 chromeos/tools/onc_validator/onc_validator.cc   std::string type_arg(args[0]);
args               64 components/auto_login_parser/auto_login_parser.cc       local_params.args = unescaped_value;
args               67 components/auto_login_parser/auto_login_parser.cc   if (local_params.realm.empty() || local_params.args.empty())
args               33 components/auto_login_parser/auto_login_parser.h   std::string args;
args               17 components/auto_login_parser/auto_login_parser_unittest.cc         header.args.empty();
args               32 components/auto_login_parser/auto_login_parser_unittest.cc   ASSERT_EQ("kfdshfwoeriudslkfsdjfhdskjfhsdkr", header_data.args);
args               75 components/auto_login_parser/auto_login_parser_unittest.cc   ASSERT_EQ("kfdshfwoeriudslkfsdjfhdskjfhsdkr", header_data.args);
args               89 components/auto_login_parser/auto_login_parser_unittest.cc   ASSERT_EQ("kfdshfwoeriudslkfsdjfhdskjfhsdkr", header_data.args);
args              968 components/breakpad/app/breakpad_linux.cc   const char* args[] = {
args             1004 components/breakpad/app/breakpad_linux.cc   const char* args[] = {
args             1018 components/breakpad/app/breakpad_linux.cc   execve(args[0], const_cast<char**>(args), environ);
args               24 components/dom_distiller/webui/dom_distiller_handler.cc                         const base::ListValue* args) {
args               26 components/dom_distiller/webui/dom_distiller_handler.cc   if (args->GetString(0, &url)) {
args               61 components/dom_distiller/webui/dom_distiller_handler.cc void DomDistillerHandler::HandleAddArticle(const base::ListValue* args) {
args               63 components/dom_distiller/webui/dom_distiller_handler.cc   args->GetString(0, &url);
args               75 components/dom_distiller/webui/dom_distiller_handler.cc void DomDistillerHandler::HandleViewUrl(const base::ListValue* args) {
args               76 components/dom_distiller/webui/dom_distiller_handler.cc   GURL view_url = GetViewUrlFromArgs(article_scheme_, args);
args               88 components/dom_distiller/webui/dom_distiller_handler.cc void DomDistillerHandler::HandleSelectArticle(const base::ListValue* args) {
args               90 components/dom_distiller/webui/dom_distiller_handler.cc   args->GetString(0, &entry_id);
args              101 components/dom_distiller/webui/dom_distiller_handler.cc void DomDistillerHandler::HandleRequestEntries(const base::ListValue* args) {
args               31 components/dom_distiller/webui/dom_distiller_handler.h   void HandleRequestEntries(const base::ListValue* args);
args               35 components/dom_distiller/webui/dom_distiller_handler.h   void HandleAddArticle(const base::ListValue* args);
args               40 components/dom_distiller/webui/dom_distiller_handler.h   void HandleSelectArticle(const base::ListValue* args);
args               44 components/dom_distiller/webui/dom_distiller_handler.h   void HandleViewUrl(const base::ListValue* args);
args              884 components/nacl/browser/nacl_process_host.cc     ppapi::PpapiNaClPluginArgs args;
args              885 components/nacl/browser/nacl_process_host.cc     args.off_the_record = nacl_host_message_filter_->off_the_record();
args              886 components/nacl/browser/nacl_process_host.cc     args.permissions = permissions_;
args              887 components/nacl/browser/nacl_process_host.cc     args.keepalive_throttle_interval_milliseconds =
args              898 components/nacl/browser/nacl_process_host.cc         args.switch_names.push_back(flag_whitelist[i]);
args              899 components/nacl/browser/nacl_process_host.cc         args.switch_values.push_back(value);
args              909 components/nacl/browser/nacl_process_host.cc     ipc_proxy_channel_->Send(new PpapiMsg_InitializeNaClDispatcher(args));
args              366 components/nacl/loader/nacl_listener.cc   struct NaClChromeMainArgs* args = NaClChromeMainArgsCreate();
args              367 components/nacl/loader/nacl_listener.cc   if (args == NULL) {
args              373 components/nacl/loader/nacl_listener.cc   args->number_of_cores = number_of_cores_;
args              374 components/nacl/loader/nacl_listener.cc   args->create_memory_object_func = CreateMemoryObject;
args              388 components/nacl/loader/nacl_listener.cc     args->irt_fd = _open_osfhandle(reinterpret_cast<intptr_t>(irt_handle),
args              390 components/nacl/loader/nacl_listener.cc     if (args->irt_fd < 0) {
args              395 components/nacl/loader/nacl_listener.cc     args->irt_fd = irt_handle;
args              399 components/nacl/loader/nacl_listener.cc     args->irt_fd = -1;
args              406 components/nacl/loader/nacl_listener.cc     args->validation_cache = CreateValidationCache(
args              412 components/nacl/loader/nacl_listener.cc   args->imc_bootstrap_handle = nacl::ToNativeHandle(handles[0]);
args              413 components/nacl/loader/nacl_listener.cc   args->enable_exception_handling = params.enable_exception_handling;
args              414 components/nacl/loader/nacl_listener.cc   args->enable_debug_stub = params.enable_debug_stub;
args              415 components/nacl/loader/nacl_listener.cc   args->enable_dyncode_syscalls = params.enable_dyncode_syscalls;
args              424 components/nacl/loader/nacl_listener.cc     args->initial_nexe_max_code_bytes = 32 << 20;  // 32 MB
args              429 components/nacl/loader/nacl_listener.cc     args->pnacl_mode = 1;
args              432 components/nacl/loader/nacl_listener.cc   args->debug_stub_server_bound_socket_fd = nacl::ToNativeHandle(
args              436 components/nacl/loader/nacl_listener.cc   args->broker_duplicate_handle_func = BrokerDuplicateHandle;
args              437 components/nacl/loader/nacl_listener.cc   args->attach_debug_exception_handler_func = AttachDebugExceptionHandler;
args              440 components/nacl/loader/nacl_listener.cc   args->prereserved_sandbox_size = prereserved_sandbox_size_;
args              443 components/nacl/loader/nacl_listener.cc   NaClChromeMainStartApp(nap, args);
args              168 content/browser/accessibility/accessibility_ui.cc void AccessibilityUI::ToggleAccessibility(const base::ListValue* args) {
args              173 content/browser/accessibility/accessibility_ui.cc   CHECK_EQ(2U, args->GetSize());
args              174 content/browser/accessibility/accessibility_ui.cc   CHECK(args->GetString(0, &process_id_str));
args              175 content/browser/accessibility/accessibility_ui.cc   CHECK(args->GetString(1, &route_id_str));
args              192 content/browser/accessibility/accessibility_ui.cc void AccessibilityUI::ToggleGlobalAccessibility(const base::ListValue* args) {
args              202 content/browser/accessibility/accessibility_ui.cc void AccessibilityUI::RequestAccessibilityTree(const base::ListValue* args) {
args              207 content/browser/accessibility/accessibility_ui.cc   CHECK_EQ(2U, args->GetSize());
args              208 content/browser/accessibility/accessibility_ui.cc   CHECK(args->GetString(0, &process_id_str));
args              209 content/browser/accessibility/accessibility_ui.cc   CHECK(args->GetString(1, &route_id_str));
args               22 content/browser/accessibility/accessibility_ui.h   void ToggleAccessibility(const base::ListValue* args);
args               23 content/browser/accessibility/accessibility_ui.h   void ToggleGlobalAccessibility(const base::ListValue* args);
args               24 content/browser/accessibility/accessibility_ui.h   void RequestAccessibilityTree(const base::ListValue* args);
args               53 content/browser/download/download_manager_impl_unittest.cc   return ::std::tr1::get<k>(args).Run(p0);
args              603 content/browser/gpu/gpu_data_manager_impl_private_unittest.cc   std::string args = command_line.GetSwitchValueASCII(
args              605 content/browser/gpu/gpu_data_manager_impl_private_unittest.cc   EXPECT_STREQ("5", args.c_str());
args              617 content/browser/gpu/gpu_data_manager_impl_private_unittest.cc   std::string args = command_line.GetSwitchValueASCII(
args              619 content/browser/gpu/gpu_data_manager_impl_private_unittest.cc   EXPECT_STREQ("5,7", args.c_str());
args              254 content/browser/gpu/gpu_internals_ui.cc void GpuMessageHandler::OnCallAsync(const base::ListValue* args) {
args              255 content/browser/gpu/gpu_internals_ui.cc   DCHECK_GE(args->GetSize(), static_cast<size_t>(2));
args              259 content/browser/gpu/gpu_internals_ui.cc   ok = args->Get(0, &requestId);
args              263 content/browser/gpu/gpu_internals_ui.cc   ok = args->GetString(1, &submessage);
args              267 content/browser/gpu/gpu_internals_ui.cc   for (size_t i = 2; i < args->GetSize(); ++i) {
args              269 content/browser/gpu/gpu_internals_ui.cc     ok = args->Get(i, &arg);
args              302 content/browser/gpu/gpu_internals_ui.cc     const base::ListValue* args) {
args               73 content/browser/indexed_db/indexed_db_internals_ui.cc void IndexedDBInternalsUI::GetAllOrigins(const base::ListValue* args) {
args              120 content/browser/indexed_db/indexed_db_internals_ui.cc     const base::ListValue* args,
args              125 content/browser/indexed_db/indexed_db_internals_ui.cc   if (!args->GetString(0, &path_string))
args              130 content/browser/indexed_db/indexed_db_internals_ui.cc   if (!args->GetString(1, &url_string))
args              157 content/browser/indexed_db/indexed_db_internals_ui.cc void IndexedDBInternalsUI::DownloadOriginData(const base::ListValue* args) {
args              163 content/browser/indexed_db/indexed_db_internals_ui.cc   if (!GetOriginData(args, &partition_path, &origin_url, &context))
args              176 content/browser/indexed_db/indexed_db_internals_ui.cc void IndexedDBInternalsUI::ForceCloseOrigin(const base::ListValue* args) {
args              182 content/browser/indexed_db/indexed_db_internals_ui.cc   if (!GetOriginData(args, &partition_path, &origin_url, &context))
args               33 content/browser/indexed_db/indexed_db_internals_ui.h   void GetAllOrigins(const base::ListValue* args);
args               41 content/browser/indexed_db/indexed_db_internals_ui.h   void DownloadOriginData(const base::ListValue* args);
args               58 content/browser/indexed_db/indexed_db_internals_ui.h   void ForceCloseOrigin(const base::ListValue* args);
args               69 content/browser/indexed_db/indexed_db_internals_ui.h   bool GetOriginData(const base::ListValue* args,
args              173 content/browser/media/media_internals_proxy.cc     const std::string& function, base::Value* args) {
args              175 content/browser/media/media_internals_proxy.cc   scoped_ptr<base::Value> args_value(args);
args               78 content/browser/media/media_internals_proxy.h                                         base::Value* args);
args               75 content/browser/media/webrtc_internals_message_handler.cc                                              const base::Value* args) {
args               78 content/browser/media/webrtc_internals_message_handler.cc   if (args)
args               79 content/browser/media/webrtc_internals_message_handler.cc     args_vector.push_back(args);
args               31 content/browser/media/webrtc_internals_message_handler.h                         const base::Value* args) OVERRIDE;
args               24 content/browser/media/webrtc_internals_ui_observer.h                         const base::Value* args) = 0;
args               67 content/browser/renderer_host/java/java_bound_object.cc                      const NPVariant *args, uint32_t arg_count,
args              110 content/browser/renderer_host/java/java_bound_object.cc                           const NPVariant* args, uint32_t arg_count,
args              114 content/browser/renderer_host/java/java_bound_object.cc   return obj->bound_object->Invoke(name, args, arg_count, result);
args              872 content/browser/renderer_host/java/java_bound_object.cc bool JavaBoundObject::Invoke(const std::string& name, const NPVariant* args,
args              899 content/browser/renderer_host/java/java_bound_object.cc     parameters[i] = CoerceJavaScriptValueToJavaValue(args[i],
args               55 content/browser/renderer_host/java/java_bound_object.h   bool Invoke(const std::string& name, const NPVariant* args, size_t arg_count,
args              457 content/browser/renderer_host/render_widget_host_view_android.cc     const cc::BeginFrameArgs& args) {
args              468 content/browser/renderer_host/render_widget_host_view_android.cc   host_->Send(new ViewMsg_BeginFrame(host_->GetRoutingID(), args));
args              215 content/browser/renderer_host/render_widget_host_view_android.h   void SendBeginFrame(const cc::BeginFrameArgs& args);
args              121 content/browser/service_worker/service_worker_internals_ui.cc void ServiceWorkerInternalsUI::GetAllRegistrations(const ListValue* args) {
args              164 content/browser/service_worker/service_worker_internals_ui.cc     const ListValue* args,
args              169 content/browser/service_worker/service_worker_internals_ui.cc   if (!args->GetString(0, &path_string))
args              174 content/browser/service_worker/service_worker_internals_ui.cc   if (!args->GetString(1, &scope_string))
args              193 content/browser/service_worker/service_worker_internals_ui.cc     const ListValue* args) {
args              198 content/browser/service_worker/service_worker_internals_ui.cc   if (!GetRegistrationInfo(args, &partition_path, &scope, &context))
args              201 content/browser/service_worker/service_worker_internals_ui.cc   scoped_ptr<ListValue> args_copy(args->DeepCopy());
args              212 content/browser/service_worker/service_worker_internals_ui.cc void ServiceWorkerInternalsUI::Unregister(const ListValue* args) {
args              217 content/browser/service_worker/service_worker_internals_ui.cc   if (!GetRegistrationInfo(args, &partition_path, &scope, &context))
args              220 content/browser/service_worker/service_worker_internals_ui.cc   scoped_ptr<ListValue> args_copy(args->DeepCopy());
args              231 content/browser/service_worker/service_worker_internals_ui.cc void ServiceWorkerInternalsUI::StartWorker(const ListValue* args) {
args              236 content/browser/service_worker/service_worker_internals_ui.cc   if (!GetRegistrationInfo(args, &partition_path, &scope, &context))
args              239 content/browser/service_worker/service_worker_internals_ui.cc   scoped_ptr<ListValue> args_copy(args->DeepCopy());
args              250 content/browser/service_worker/service_worker_internals_ui.cc void ServiceWorkerInternalsUI::StopWorker(const ListValue* args) {
args              255 content/browser/service_worker/service_worker_internals_ui.cc   if (!GetRegistrationInfo(args, &partition_path, &scope, &context))
args              258 content/browser/service_worker/service_worker_internals_ui.cc   scoped_ptr<ListValue> args_copy(args->DeepCopy());
args               40 content/browser/service_worker/service_worker_internals_ui.h   void GetAllRegistrations(const base::ListValue* args);
args               41 content/browser/service_worker/service_worker_internals_ui.h   void StartWorker(const base::ListValue* args);
args               42 content/browser/service_worker/service_worker_internals_ui.h   void StopWorker(const base::ListValue* args);
args               43 content/browser/service_worker/service_worker_internals_ui.h   void DispatchSyncEventToWorker(const base::ListValue* args);
args               44 content/browser/service_worker/service_worker_internals_ui.h   void Unregister(const base::ListValue* args);
args               47 content/browser/service_worker/service_worker_internals_ui.h       const base::ListValue* args,
args               97 content/browser/speech/speech_recognizer_impl.h   FSMState ExecuteTransitionAndGetNextState(const FSMEventArgs& args);
args             2559 content/browser/web_contents/web_contents_impl.cc                                   const base::ListValue& args) {
args             2561 content/browser/web_contents/web_contents_impl.cc     delegate_->WebUISend(this, source_url, name, args);
args              712 content/browser/web_contents/web_contents_impl.h                    const base::ListValue& args);
args               28 content/browser/webui/generic_handler.cc void GenericHandler::HandleNavigateToUrl(const base::ListValue* args) {
args               37 content/browser/webui/generic_handler.cc   CHECK(args->GetString(0, &url_string));
args               38 content/browser/webui/generic_handler.cc   CHECK(args->GetString(1, &target_string));
args               39 content/browser/webui/generic_handler.cc   CHECK(args->GetDouble(2, &button));
args               40 content/browser/webui/generic_handler.cc   CHECK(args->GetBoolean(3, &alt_key));
args               41 content/browser/webui/generic_handler.cc   CHECK(args->GetBoolean(4, &ctrl_key));
args               42 content/browser/webui/generic_handler.cc   CHECK(args->GetBoolean(5, &meta_key));
args               43 content/browser/webui/generic_handler.cc   CHECK(args->GetBoolean(6, &shift_key));
args               27 content/browser/webui/generic_handler.h   void HandleNavigateToUrl(const base::ListValue* args);
args               72 content/browser/webui/web_ui_impl.cc                             const base::ListValue& args) {
args               81 content/browser/webui/web_ui_impl.cc   ProcessWebUIMessage(source_url, message, args);
args              152 content/browser/webui/web_ui_impl.cc   std::vector<const base::Value*> args;
args              153 content/browser/webui/web_ui_impl.cc   args.push_back(&arg);
args              154 content/browser/webui/web_ui_impl.cc   ExecuteJavascript(GetJavascriptCall(function_name, args));
args              161 content/browser/webui/web_ui_impl.cc   std::vector<const base::Value*> args;
args              162 content/browser/webui/web_ui_impl.cc   args.push_back(&arg1);
args              163 content/browser/webui/web_ui_impl.cc   args.push_back(&arg2);
args              164 content/browser/webui/web_ui_impl.cc   ExecuteJavascript(GetJavascriptCall(function_name, args));
args              171 content/browser/webui/web_ui_impl.cc   std::vector<const base::Value*> args;
args              172 content/browser/webui/web_ui_impl.cc   args.push_back(&arg1);
args              173 content/browser/webui/web_ui_impl.cc   args.push_back(&arg2);
args              174 content/browser/webui/web_ui_impl.cc   args.push_back(&arg3);
args              175 content/browser/webui/web_ui_impl.cc   ExecuteJavascript(GetJavascriptCall(function_name, args));
args              185 content/browser/webui/web_ui_impl.cc   std::vector<const base::Value*> args;
args              186 content/browser/webui/web_ui_impl.cc   args.push_back(&arg1);
args              187 content/browser/webui/web_ui_impl.cc   args.push_back(&arg2);
args              188 content/browser/webui/web_ui_impl.cc   args.push_back(&arg3);
args              189 content/browser/webui/web_ui_impl.cc   args.push_back(&arg4);
args              190 content/browser/webui/web_ui_impl.cc   ExecuteJavascript(GetJavascriptCall(function_name, args));
args              195 content/browser/webui/web_ui_impl.cc     const std::vector<const base::Value*>& args) {
args              197 content/browser/webui/web_ui_impl.cc   ExecuteJavascript(GetJavascriptCall(function_name, args));
args              207 content/browser/webui/web_ui_impl.cc                                     const base::ListValue& args) {
args              208 content/browser/webui/web_ui_impl.cc   if (controller_->OverrideHandleWebUIMessage(source_url, message, args))
args              216 content/browser/webui/web_ui_impl.cc     callback->second.Run(&args);
args               52 content/browser/webui/web_ui_impl.h                                    const base::ListValue& args) OVERRIDE;
args               71 content/browser/webui/web_ui_impl.h       const std::vector<const base::Value*>& args) OVERRIDE;
args               80 content/browser/webui/web_ui_impl.h                    const base::ListValue& args);
args              149 content/child/npapi/npobject_proxy.cc                              const NPVariant *args,
args              152 content/child/npapi/npobject_proxy.cc   return NPInvokePrivate(0, obj, false, name, args, arg_count, result);
args              156 content/child/npapi/npobject_proxy.cc                                     const NPVariant *args,
args              159 content/child/npapi/npobject_proxy.cc   return NPInvokePrivate(0, npobj, true, 0, args, arg_count, result);
args              166 content/child/npapi/npobject_proxy.cc                                     const NPVariant *args,
args              175 content/child/npapi/npobject_proxy.cc       return obj->_class->invokeDefault(obj, args, arg_count, np_result);
args              177 content/child/npapi/npobject_proxy.cc       return obj->_class->invoke(obj, name, args, arg_count, np_result);
args              198 content/child/npapi/npobject_proxy.cc     CreateNPVariantParam(args[i],
args              401 content/child/npapi/npobject_proxy.cc                                  const NPVariant *args,
args              410 content/child/npapi/npobject_proxy.cc       return obj->_class->construct(obj, args, arg_count, np_result);
args              425 content/child/npapi/npobject_proxy.cc     CreateNPVariantParam(args[i],
args               54 content/child/npapi/npobject_proxy.h                        const NPVariant *args,
args               58 content/child/npapi/npobject_proxy.h                               const NPVariant *args,
args               75 content/child/npapi/npobject_proxy.h                            const NPVariant *args,
args               89 content/child/npapi/npobject_proxy.h                               const NPVariant *args,
args              138 content/child/npapi/npobject_stub.cc                             const std::vector<NPVariant_Param>& args,
args              147 content/child/npapi/npobject_stub.cc   int arg_count = static_cast<int>(args.size());
args              150 content/child/npapi/npobject_stub.cc     if (!CreateNPVariant(args[i],
args              344 content/child/npapi/npobject_stub.cc void NPObjectStub::OnConstruct(const std::vector<NPVariant_Param>& args,
args              352 content/child/npapi/npobject_stub.cc   int arg_count = static_cast<int>(args.size());
args              355 content/child/npapi/npobject_stub.cc     if (!CreateNPVariant(args[i],
args               67 content/child/npapi/npobject_stub.h                 const std::vector<NPVariant_Param>& args,
args               82 content/child/npapi/npobject_stub.h   void OnConstruct(const std::vector<NPVariant_Param>& args,
args               38 content/child/npapi/npobject_util.cc                             const NPVariant *args,
args               41 content/child/npapi/npobject_util.cc   return NPObjectProxy::NPInvokePrivate(npp, npobj, false, methodName, args,
args               47 content/child/npapi/npobject_util.cc                                    const NPVariant *args,
args               50 content/child/npapi/npobject_util.cc   return NPObjectProxy::NPInvokePrivate(npp, npobj, true, 0, args, argCount,
args               80 content/common/sandbox_linux/bpf_gpu_policy_linux.cc intptr_t GpuSIGSYS_Handler(const struct arch_seccomp_data& args,
args               85 content/common/sandbox_linux/bpf_gpu_policy_linux.cc   switch (args.nr) {
args               87 content/common/sandbox_linux/bpf_gpu_policy_linux.cc       return broker_process->Access(reinterpret_cast<const char*>(args.args[0]),
args               88 content/common/sandbox_linux/bpf_gpu_policy_linux.cc                                     static_cast<int>(args.args[1]));
args               90 content/common/sandbox_linux/bpf_gpu_policy_linux.cc       return broker_process->Open(reinterpret_cast<const char*>(args.args[0]),
args               91 content/common/sandbox_linux/bpf_gpu_policy_linux.cc                                   static_cast<int>(args.args[1]));
args               94 content/common/sandbox_linux/bpf_gpu_policy_linux.cc       if (static_cast<int>(args.args[0]) == AT_FDCWD) {
args               96 content/common/sandbox_linux/bpf_gpu_policy_linux.cc             broker_process->Open(reinterpret_cast<const char*>(args.args[1]),
args               97 content/common/sandbox_linux/bpf_gpu_policy_linux.cc                                  static_cast<int>(args.args[2]));
args               69 content/public/android/java/src/org/chromium/content/app/ChildProcessService.java         public int setupConnection(Bundle args, IChildProcessCallback callback) {
args               75 content/public/android/java/src/org/chromium/content/app/ChildProcessService.java                     mCommandLineParams = args.getStringArray(
args               80 content/public/android/java/src/org/chromium/content/app/ChildProcessService.java                 mCpuCount = args.getInt(ChildProcessConnection.EXTRA_CPU_COUNT);
args               81 content/public/android/java/src/org/chromium/content/app/ChildProcessService.java                 mCpuFeatures = args.getLong(ChildProcessConnection.EXTRA_CPU_FEATURES);
args               88 content/public/android/java/src/org/chromium/content/app/ChildProcessService.java                     ParcelFileDescriptor parcel = args.getParcelable(fdName);
args               96 content/public/android/java/src/org/chromium/content/app/ChildProcessService.java                     mFileIds.add(args.getInt(idName));
args               98 content/public/android/java/src/org/chromium/content/app/ChildProcessService.java                 Bundle sharedRelros = args.getBundle(Linker.EXTRA_LINKER_SHARED_RELROS);
args              134 content/public/android/javatests/src/org/chromium/content/browser/ContentCommandLineTest.java         String[] args = new String[INIT_SWITCHES.length - 1];
args              135 content/public/android/javatests/src/org/chromium/content/browser/ContentCommandLineTest.java         System.arraycopy(INIT_SWITCHES, 1, args, 0, args.length);
args              136 content/public/android/javatests/src/org/chromium/content/browser/ContentCommandLineTest.java         CommandLine.getInstance().appendSwitchesAndArguments(args);
args              123 content/public/android/javatests/src/org/chromium/content/browser/DownloadInfoTest.java     Object invokeMethod(Method method, Object instance, Object... args) throws Exception {
args              125 content/public/android/javatests/src/org/chromium/content/browser/DownloadInfoTest.java             return method.invoke(instance, args);
args              409 content/public/browser/web_contents_delegate.h                          const base::ListValue& args) {}
args               95 content/public/browser/web_ui.h                                    const base::ListValue& args) = 0;
args              120 content/public/browser/web_ui.h       const std::vector<const base::Value*>& args) = 0;
args               11 content/public/browser/web_ui_controller.cc                                                  const base::ListValue& args) {
args               34 content/public/browser/web_ui_controller.h                                           const base::ListValue& args);
args              113 content/renderer/browser_plugin/browser_plugin_bindings.cc                                  const NPVariant* args, uint32 arg_count,
args              122 content/renderer/browser_plugin/browser_plugin_bindings.cc   return bindings->InvokeMethod(name, args, arg_count, result);
args              126 content/renderer/browser_plugin/browser_plugin_bindings.cc                                         const NPVariant* args,
args              221 content/renderer/browser_plugin/browser_plugin_bindings.cc                       const NPVariant* args,
args              239 content/renderer/browser_plugin/browser_plugin_bindings.cc                       const NPVariant* args,
args              245 content/renderer/browser_plugin/browser_plugin_bindings.cc     v8::Handle<v8::Value> obj(blink::WebBindings::toV8Value(&args[0]));
args              273 content/renderer/browser_plugin/browser_plugin_bindings.cc                       const NPVariant* args,
args              276 content/renderer/browser_plugin/browser_plugin_bindings.cc     WebBindings::getNode(NPVARIANT_TO_OBJECT(args[0]), &node);
args              277 content/renderer/browser_plugin/browser_plugin_bindings.cc     int window_id = IntFromNPVariant(args[1]);
args              704 content/renderer/browser_plugin/browser_plugin_bindings.cc                                          const NPVariant* args,
args              711 content/renderer/browser_plugin/browser_plugin_bindings.cc       return (*iter)->Invoke(this, args, result);
args               42 content/renderer/browser_plugin/browser_plugin_bindings.h                     const NPVariant* args,
args               58 content/renderer/dom_automation_controller.cc bool DomAutomationController::SendMsg(const gin::Arguments& args) {
args               75 content/renderer/dom_automation_controller.cc   if (args.PeekNext()->IsString() || args.PeekNext()->IsBoolean() ||
args               76 content/renderer/dom_automation_controller.cc       args.PeekNext()->IsNumber()) {
args               79 content/renderer/dom_automation_controller.cc         conv.FromV8Value(args.PeekNext(), args.isolate()->GetCurrentContext()));
args               97 content/renderer/dom_automation_controller.h   bool SendMsg(const gin::Arguments& args);
args              166 content/renderer/gpu/compositor_output_surface.cc void CompositorOutputSurface::OnBeginImplFrame(const cc::BeginFrameArgs& args) {
args              168 content/renderer/gpu/compositor_output_surface.cc   BeginImplFrame(args);
args               96 content/renderer/gpu/compositor_output_surface.h   void OnBeginImplFrame(const cc::BeginFrameArgs& args);
args              365 content/renderer/gpu/gpu_benchmarking_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args              374 content/renderer/gpu/gpu_benchmarking_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args              383 content/renderer/gpu/gpu_benchmarking_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args              384 content/renderer/gpu/gpu_benchmarking_extension.cc     if (args.Length() != 1)
args              387 content/renderer/gpu/gpu_benchmarking_extension.cc     v8::String::Utf8Value dirname(args[0]);
args              405 content/renderer/gpu/gpu_benchmarking_extension.cc       v8::Isolate* isolate = args.GetIsolate();
args              432 content/renderer/gpu/gpu_benchmarking_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args              435 content/renderer/gpu/gpu_benchmarking_extension.cc     args.GetReturnValue().Set(true);
args              437 content/renderer/gpu/gpu_benchmarking_extension.cc     args.GetReturnValue().Set(false);
args              442 content/renderer/gpu/gpu_benchmarking_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args              448 content/renderer/gpu/gpu_benchmarking_extension.cc     int arglen = args.Length();
args              450 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[0]->IsNumber() ||
args              451 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[1]->IsFunction() ||
args              452 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[2]->IsNumber() ||
args              453 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[3]->IsString() ||
args              454 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[4]->IsNumber() ||
args              455 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[5]->IsBoolean()) {
args              456 content/renderer/gpu/gpu_benchmarking_extension.cc       args.GetReturnValue().Set(false);
args              461 content/renderer/gpu/gpu_benchmarking_extension.cc         v8::Local<v8::Function>::Cast(args[1]);
args              464 content/renderer/gpu/gpu_benchmarking_extension.cc         new CallbackAndContext(args.GetIsolate(),
args              474 content/renderer/gpu/gpu_benchmarking_extension.cc     int gesture_source_type = args[2]->IntegerValue();
args              477 content/renderer/gpu/gpu_benchmarking_extension.cc       args.GetReturnValue().Set(false);
args              484 content/renderer/gpu/gpu_benchmarking_extension.cc     gesture_params->speed_in_pixels_s = args[4]->IntegerValue();
args              485 content/renderer/gpu/gpu_benchmarking_extension.cc     gesture_params->prevent_fling = args[5]->BooleanValue();
args              489 content/renderer/gpu/gpu_benchmarking_extension.cc     if (args[6]->IsUndefined() || args[7]->IsUndefined()) {
args              492 content/renderer/gpu/gpu_benchmarking_extension.cc     } else if (args[6]->IsNumber() && args[7]->IsNumber()) {
args              493 content/renderer/gpu/gpu_benchmarking_extension.cc       anchor.SetPoint(args[6]->IntegerValue() * page_scale_factor,
args              494 content/renderer/gpu/gpu_benchmarking_extension.cc                       args[7]->IntegerValue() * page_scale_factor);
args              496 content/renderer/gpu/gpu_benchmarking_extension.cc       args.GetReturnValue().Set(false);
args              501 content/renderer/gpu/gpu_benchmarking_extension.cc     int distance_length = args[0]->IntegerValue() * page_scale_factor;
args              503 content/renderer/gpu/gpu_benchmarking_extension.cc     v8::String::Utf8Value direction(args[3]);
args              515 content/renderer/gpu/gpu_benchmarking_extension.cc       args.GetReturnValue().Set(false);
args              528 content/renderer/gpu/gpu_benchmarking_extension.cc     args.GetReturnValue().Set(true);
args              532 content/renderer/gpu/gpu_benchmarking_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args              538 content/renderer/gpu/gpu_benchmarking_extension.cc     int arglen = args.Length();
args              540 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[0]->IsString() ||
args              541 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[1]->IsNumber() ||
args              542 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[2]->IsNumber() ||
args              543 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[3]->IsNumber() ||
args              544 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[4]->IsFunction() ||
args              545 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[5]->IsNumber()) {
args              546 content/renderer/gpu/gpu_benchmarking_extension.cc       args.GetReturnValue().Set(false);
args              551 content/renderer/gpu/gpu_benchmarking_extension.cc         v8::Local<v8::Function>::Cast(args[4]);
args              554 content/renderer/gpu/gpu_benchmarking_extension.cc         new CallbackAndContext(args.GetIsolate(),
args              564 content/renderer/gpu/gpu_benchmarking_extension.cc     gesture_params->speed_in_pixels_s = args[5]->IntegerValue();
args              568 content/renderer/gpu/gpu_benchmarking_extension.cc     if (args[6]->IsUndefined() || args[7]->IsUndefined()) {
args              571 content/renderer/gpu/gpu_benchmarking_extension.cc     } else if (args[6]->IsNumber() && args[7]->IsNumber()) {
args              572 content/renderer/gpu/gpu_benchmarking_extension.cc       start.SetPoint(args[6]->IntegerValue() * page_scale_factor,
args              573 content/renderer/gpu/gpu_benchmarking_extension.cc                      args[7]->IntegerValue() * page_scale_factor);
args              575 content/renderer/gpu/gpu_benchmarking_extension.cc       args.GetReturnValue().Set(false);
args              579 content/renderer/gpu/gpu_benchmarking_extension.cc     int distance_length = args[1]->IntegerValue() * page_scale_factor;
args              580 content/renderer/gpu/gpu_benchmarking_extension.cc     int overscroll_length = args[2]->IntegerValue() * page_scale_factor;
args              583 content/renderer/gpu/gpu_benchmarking_extension.cc     v8::String::Utf8Value direction(args[0]);
args              603 content/renderer/gpu/gpu_benchmarking_extension.cc       args.GetReturnValue().Set(false);
args              607 content/renderer/gpu/gpu_benchmarking_extension.cc     int repeat_count = args[3]->IntegerValue();
args              622 content/renderer/gpu/gpu_benchmarking_extension.cc     args.GetReturnValue().Set(true);
args              626 content/renderer/gpu/gpu_benchmarking_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args              631 content/renderer/gpu/gpu_benchmarking_extension.cc     int arglen = args.Length();
args              633 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[0]->IsBoolean() ||
args              634 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[1]->IsNumber() ||
args              635 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[2]->IsNumber() ||
args              636 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[3]->IsNumber() ||
args              637 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[4]->IsFunction() ||
args              638 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[5]->IsNumber()) {
args              639 content/renderer/gpu/gpu_benchmarking_extension.cc       args.GetReturnValue().Set(false);
args              649 content/renderer/gpu/gpu_benchmarking_extension.cc     gesture_params->zoom_in = args[0]->BooleanValue();
args              651 content/renderer/gpu/gpu_benchmarking_extension.cc         args[1]->IntegerValue() * page_scale_factor;
args              653 content/renderer/gpu/gpu_benchmarking_extension.cc         args[2]->IntegerValue() * page_scale_factor,
args              654 content/renderer/gpu/gpu_benchmarking_extension.cc         args[3]->IntegerValue() * page_scale_factor);
args              656 content/renderer/gpu/gpu_benchmarking_extension.cc         args[5]->IntegerValue();
args              659 content/renderer/gpu/gpu_benchmarking_extension.cc         v8::Local<v8::Function>::Cast(args[4]);
args              662 content/renderer/gpu/gpu_benchmarking_extension.cc         new CallbackAndContext(args.GetIsolate(),
args              675 content/renderer/gpu/gpu_benchmarking_extension.cc     args.GetReturnValue().Set(true);
args              679 content/renderer/gpu/gpu_benchmarking_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args              684 content/renderer/gpu/gpu_benchmarking_extension.cc     int arglen = args.Length();
args              686 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[0]->IsNumber() ||
args              687 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[1]->IsNumber() ||
args              688 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[2]->IsFunction() ||
args              689 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[3]->IsNumber() ||
args              690 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[4]->IsNumber()) {
args              691 content/renderer/gpu/gpu_benchmarking_extension.cc       args.GetReturnValue().Set(false);
args              702 content/renderer/gpu/gpu_benchmarking_extension.cc         args[0]->IntegerValue() * page_scale_factor,
args              703 content/renderer/gpu/gpu_benchmarking_extension.cc         args[1]->IntegerValue() * page_scale_factor);
args              704 content/renderer/gpu/gpu_benchmarking_extension.cc     gesture_params->duration_ms = args[3]->IntegerValue();
args              706 content/renderer/gpu/gpu_benchmarking_extension.cc     int gesture_source_type = args[4]->IntegerValue();
args              709 content/renderer/gpu/gpu_benchmarking_extension.cc       args.GetReturnValue().Set(false);
args              717 content/renderer/gpu/gpu_benchmarking_extension.cc         v8::Local<v8::Function>::Cast(args[2]);
args              720 content/renderer/gpu/gpu_benchmarking_extension.cc         new CallbackAndContext(args.GetIsolate(),
args              733 content/renderer/gpu/gpu_benchmarking_extension.cc     args.GetReturnValue().Set(true);
args              784 content/renderer/gpu/gpu_benchmarking_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args              789 content/renderer/gpu/gpu_benchmarking_extension.cc     if (!args[0]->IsFunction())
args              793 content/renderer/gpu/gpu_benchmarking_extension.cc         v8::Local<v8::Function>::Cast(args[0]);
args              796 content/renderer/gpu/gpu_benchmarking_extension.cc         new CallbackAndContext(args.GetIsolate(),
args              805 content/renderer/gpu/gpu_benchmarking_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args              832 content/renderer/gpu/gpu_benchmarking_extension.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args              835 content/renderer/gpu/gpu_benchmarking_extension.cc       args.GetReturnValue().Set(false);
args              839 content/renderer/gpu/gpu_benchmarking_extension.cc     if (args.Length() != 3 ||
args              840 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[0]->IsString() ||
args              841 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[1]->IsFunction() ||
args              842 content/renderer/gpu/gpu_benchmarking_extension.cc         !args[2]->IsObject()) {
args              843 content/renderer/gpu/gpu_benchmarking_extension.cc       args.GetReturnValue().Set(false);
args              848 content/renderer/gpu/gpu_benchmarking_extension.cc         v8::Local<v8::Function>::Cast(args[1]);
args              851 content/renderer/gpu/gpu_benchmarking_extension.cc         new CallbackAndContext(args.GetIsolate(),
args              859 content/renderer/gpu/gpu_benchmarking_extension.cc         make_scoped_ptr(converter->FromV8Value(args[2], v8_context));
args              861 content/renderer/gpu/gpu_benchmarking_extension.cc     v8::String::Utf8Value benchmark(args[0]);
args              863 content/renderer/gpu/gpu_benchmarking_extension.cc     args.GetReturnValue().Set(context.compositor()->ScheduleMicroBenchmark(
args              869 content/renderer/gpu/gpu_benchmarking_extension.cc   static void HasGpuProcess(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              871 content/renderer/gpu/gpu_benchmarking_extension.cc     args.GetReturnValue().Set(!!gpu_channel);
args               68 content/renderer/memory_benchmarking_extension.cc void MemoryBenchmarkingExtension::HeapProfilerDump(gin::Arguments* args) {
args               72 content/renderer/memory_benchmarking_extension.cc   if (args->PeekNext()->IsString()) {
args               73 content/renderer/memory_benchmarking_extension.cc     args->GetNext(&process_type);
args               74 content/renderer/memory_benchmarking_extension.cc     if (args->PeekNext()->IsString())
args               75 content/renderer/memory_benchmarking_extension.cc       args->GetNext(&reason);
args               38 content/renderer/memory_benchmarking_extension.h   void HeapProfilerDump(gin::Arguments* args);
args              149 content/renderer/pepper/message_channel.cc                           const NPVariant* args, uint32 arg_count,
args              158 content/renderer/pepper/message_channel.cc       message_channel->NPVariantToPPVar(&args[0]);
args              167 content/renderer/pepper/message_channel.cc     return WebBindings::invoke(NULL, passthrough, name, args, arg_count,
args              174 content/renderer/pepper/message_channel.cc                                  const NPVariant* args,
args              183 content/renderer/pepper/message_channel.cc     return WebBindings::invokeDefault(NULL, passthrough, args, arg_count,
args               78 content/renderer/pepper/plugin_object.cc   PPVarArrayFromNPVariantArray args(accessor.object()->instance(),
args               89 content/renderer/pepper/plugin_object.cc       argc, args.array(), result_converter.exception()));
args               98 content/renderer/pepper/plugin_object.cc   PPVarArrayFromNPVariantArray args(obj->instance(), argc, argv);
args              108 content/renderer/pepper/plugin_object.cc       obj->ppp_class_data(), PP_MakeUndefined(), argc, args.array(),
args              230 content/renderer/pepper/plugin_object.cc   PPVarArrayFromNPVariantArray args(obj->instance(), argc, argv);
args              233 content/renderer/pepper/plugin_object.cc       obj->ppp_class_data(), argc, args.array(),
args              292 content/renderer/pepper/ppb_var_deprecated_impl.cc   scoped_ptr<NPVariant[]> args;
args              294 content/renderer/pepper/ppb_var_deprecated_impl.cc     args.reset(new NPVariant[argc]);
args              296 content/renderer/pepper/ppb_var_deprecated_impl.cc       if (!PPVarToNPVariantNoCopy(argv[i], &args[i])) {
args              309 content/renderer/pepper/ppb_var_deprecated_impl.cc                              identifier, args.get(), argc, &result);
args              312 content/renderer/pepper/ppb_var_deprecated_impl.cc                                     args.get(), argc, &result);
args              352 content/renderer/pepper/ppb_var_deprecated_impl.cc   scoped_ptr<NPVariant[]> args;
args              354 content/renderer/pepper/ppb_var_deprecated_impl.cc     args.reset(new NPVariant[argc]);
args              356 content/renderer/pepper/ppb_var_deprecated_impl.cc       if (!PPVarToNPVariantNoCopy(argv[i], &args[i])) {
args              366 content/renderer/pepper/ppb_var_deprecated_impl.cc                               args.get(), argc, &result)) {
args              115 content/renderer/skia_benchmarking_extension.cc void SkiaBenchmarking::Rasterize(gin::Arguments* args) {
args              116 content/renderer/skia_benchmarking_extension.cc   v8::Isolate* isolate = args->isolate();
args              117 content/renderer/skia_benchmarking_extension.cc   if (args->PeekNext().IsEmpty())
args              120 content/renderer/skia_benchmarking_extension.cc   args->GetNext(&picture_handle);
args              131 content/renderer/skia_benchmarking_extension.cc   if (!args->PeekNext().IsEmpty()) {
args              133 content/renderer/skia_benchmarking_extension.cc     args->GetNext(&params);
args              205 content/renderer/skia_benchmarking_extension.cc   args->Return(result);
args              208 content/renderer/skia_benchmarking_extension.cc void SkiaBenchmarking::GetOps(gin::Arguments* args) {
args              209 content/renderer/skia_benchmarking_extension.cc   v8::Isolate* isolate = args->isolate();
args              210 content/renderer/skia_benchmarking_extension.cc   if (args->PeekNext().IsEmpty())
args              213 content/renderer/skia_benchmarking_extension.cc   args->GetNext(&picture_handle);
args              248 content/renderer/skia_benchmarking_extension.cc   args->Return(result.As<v8::Object>());
args              251 content/renderer/skia_benchmarking_extension.cc void SkiaBenchmarking::GetOpTimings(gin::Arguments* args) {
args              252 content/renderer/skia_benchmarking_extension.cc   v8::Isolate* isolate = args->isolate();
args              253 content/renderer/skia_benchmarking_extension.cc   if (args->PeekNext().IsEmpty())
args              256 content/renderer/skia_benchmarking_extension.cc   args->GetNext(&picture_handle);
args              287 content/renderer/skia_benchmarking_extension.cc   args->Return(result);
args              290 content/renderer/skia_benchmarking_extension.cc void SkiaBenchmarking::GetInfo(gin::Arguments* args) {
args              291 content/renderer/skia_benchmarking_extension.cc   v8::Isolate* isolate = args->isolate();
args              292 content/renderer/skia_benchmarking_extension.cc   if (args->PeekNext().IsEmpty())
args              295 content/renderer/skia_benchmarking_extension.cc   args->GetNext(&picture_handle);
args              307 content/renderer/skia_benchmarking_extension.cc   args->Return(result);
args               53 content/renderer/skia_benchmarking_extension.h   void Rasterize(gin::Arguments* args);
args               59 content/renderer/skia_benchmarking_extension.h   void GetOps(gin::Arguments* args);
args               65 content/renderer/skia_benchmarking_extension.h   void GetOpTimings(gin::Arguments* args);
args               71 content/renderer/skia_benchmarking_extension.h   void GetInfo(gin::Arguments* args);
args               89 content/renderer/web_ui_extension.cc void WebUIExtension::Send(gin::Arguments* args) {
args               96 content/renderer/web_ui_extension.cc   if (!args->GetNext(&message)) {
args               97 content/renderer/web_ui_extension.cc     args->ThrowError();
args              104 content/renderer/web_ui_extension.cc   if (args->PeekNext().IsEmpty() || args->PeekNext()->IsUndefined()) {
args              108 content/renderer/web_ui_extension.cc     if (!args->GetNext(&obj)) {
args              109 content/renderer/web_ui_extension.cc       args->ThrowError();
args               27 content/renderer/web_ui_extension.h   static void Send(gin::Arguments* args);
args               44 content/renderer/web_ui_mojo_context_state.cc   v8::Handle<v8::Value> args[] = {
args               46 content/renderer/web_ui_mojo_context_state.cc   runner->Call(start, runner->global(), 1, args);
args               68 content/shell/android/browsertests_apk/content_browser_tests_android.cc   std::vector<std::string> args;
args               69 content/shell/android/browsertests_apk/content_browser_tests_android.cc   ParseArgsFromCommandLineFile(kCommandLineFilePath, &args);
args               72 content/shell/android/browsertests_apk/content_browser_tests_android.cc   int argc = ArgsToArgv(args, &argv);
args               95 content/shell/browser/shell_browser_main.cc bool GetNextTest(const CommandLine::StringVector& args,
args               98 content/shell/browser/shell_browser_main.cc   if (*position >= args.size())
args              100 content/shell/browser/shell_browser_main.cc   if (args[*position] == FILE_PATH_LITERAL("-"))
args              103 content/shell/browser/shell_browser_main.cc   *test = base::WideToUTF8(args[(*position)++]);
args              105 content/shell/browser/shell_browser_main.cc   *test = args[(*position)++];
args              199 content/shell/browser/shell_browser_main.cc     CommandLine::StringVector args =
args              207 content/shell/browser/shell_browser_main.cc     while (GetNextTest(args, &command_line_position, &test_string)) {
args               61 content/shell/browser/shell_browser_main_parts.cc   const CommandLine::StringVector& args = command_line->GetArgs();
args               68 content/shell/browser/shell_browser_main_parts.cc   if (args.empty())
args               71 content/shell/browser/shell_browser_main_parts.cc   GURL url(args[0]);
args               75 content/shell/browser/shell_browser_main_parts.cc   return net::FilePathToFileURL(base::FilePath(args[0]));
args               46 content/shell/renderer/gc_controller.cc void GCController::Collect(const gin::Arguments& args) {
args               47 content/shell/renderer/gc_controller.cc   args.isolate()->RequestGarbageCollectionForTesting(
args               51 content/shell/renderer/gc_controller.cc void GCController::CollectAll(const gin::Arguments& args) {
args               60 content/shell/renderer/gc_controller.cc     args.isolate()->RequestGarbageCollectionForTesting(
args               65 content/shell/renderer/gc_controller.cc void GCController::MinorCollect(const gin::Arguments& args) {
args               66 content/shell/renderer/gc_controller.cc   args.isolate()->RequestGarbageCollectionForTesting(
args               34 content/shell/renderer/gc_controller.h   void Collect(const gin::Arguments& args);
args               35 content/shell/renderer/gc_controller.h   void CollectAll(const gin::Arguments& args);
args               36 content/shell/renderer/gc_controller.h   void MinorCollect(const gin::Arguments& args);
args              343 content/shell/renderer/test_runner/event_sender.cc   void SetPageScaleFactor(gin::Arguments* args);
args              359 content/shell/renderer/test_runner/event_sender.cc   void AddTouchPoint(gin::Arguments* args);
args              363 content/shell/renderer/test_runner/event_sender.cc   void GestureScrollBegin(gin::Arguments* args);
args              364 content/shell/renderer/test_runner/event_sender.cc   void GestureScrollEnd(gin::Arguments* args);
args              365 content/shell/renderer/test_runner/event_sender.cc   void GestureScrollUpdate(gin::Arguments* args);
args              366 content/shell/renderer/test_runner/event_sender.cc   void GestureScrollUpdateWithoutPropagation(gin::Arguments* args);
args              367 content/shell/renderer/test_runner/event_sender.cc   void GestureTap(gin::Arguments* args);
args              368 content/shell/renderer/test_runner/event_sender.cc   void GestureTapDown(gin::Arguments* args);
args              369 content/shell/renderer/test_runner/event_sender.cc   void GestureShowPress(gin::Arguments* args);
args              370 content/shell/renderer/test_runner/event_sender.cc   void GestureTapCancel(gin::Arguments* args);
args              371 content/shell/renderer/test_runner/event_sender.cc   void GestureLongPress(gin::Arguments* args);
args              372 content/shell/renderer/test_runner/event_sender.cc   void GestureLongTap(gin::Arguments* args);
args              373 content/shell/renderer/test_runner/event_sender.cc   void GestureTwoFingerTap(gin::Arguments* args);
args              374 content/shell/renderer/test_runner/event_sender.cc   void ContinuousMouseScrollBy(gin::Arguments* args);
args              376 content/shell/renderer/test_runner/event_sender.cc   void MouseMoveTo(gin::Arguments* args);
args              377 content/shell/renderer/test_runner/event_sender.cc   void MouseScrollBy(gin::Arguments* args);
args              378 content/shell/renderer/test_runner/event_sender.cc   void MouseMomentumScrollBy(gin::Arguments* args);
args              380 content/shell/renderer/test_runner/event_sender.cc   void ScheduleAsynchronousClick(gin::Arguments* args);
args              381 content/shell/renderer/test_runner/event_sender.cc   void ScheduleAsynchronousKeyDown(gin::Arguments* args);
args              382 content/shell/renderer/test_runner/event_sender.cc   void MouseDown(gin::Arguments* args);
args              383 content/shell/renderer/test_runner/event_sender.cc   void MouseUp(gin::Arguments* args);
args              384 content/shell/renderer/test_runner/event_sender.cc   void KeyDown(gin::Arguments* args);
args              589 content/shell/renderer/test_runner/event_sender.cc void EventSenderBindings::SetPageScaleFactor(gin::Arguments* args) {
args              595 content/shell/renderer/test_runner/event_sender.cc   if (args->PeekNext().IsEmpty())
args              597 content/shell/renderer/test_runner/event_sender.cc   args->GetNext(&scale_factor);
args              598 content/shell/renderer/test_runner/event_sender.cc   if (args->PeekNext().IsEmpty())
args              600 content/shell/renderer/test_runner/event_sender.cc   args->GetNext(&x);
args              601 content/shell/renderer/test_runner/event_sender.cc   if (args->PeekNext().IsEmpty())
args              603 content/shell/renderer/test_runner/event_sender.cc   args->GetNext(&y);
args              687 content/shell/renderer/test_runner/event_sender.cc void EventSenderBindings::AddTouchPoint(gin::Arguments* args) {
args              689 content/shell/renderer/test_runner/event_sender.cc     sender_->AddTouchPoint(args);
args              707 content/shell/renderer/test_runner/event_sender.cc void EventSenderBindings::GestureScrollBegin(gin::Arguments* args) {
args              709 content/shell/renderer/test_runner/event_sender.cc     sender_->GestureScrollBegin(args);
args              712 content/shell/renderer/test_runner/event_sender.cc void EventSenderBindings::GestureScrollEnd(gin::Arguments* args) {
args              714 content/shell/renderer/test_runner/event_sender.cc     sender_->GestureScrollEnd(args);
args              717 content/shell/renderer/test_runner/event_sender.cc void EventSenderBindings::GestureScrollUpdate(gin::Arguments* args) {
args              719 content/shell/renderer/test_runner/event_sender.cc     sender_->GestureScrollUpdate(args);
args              723 content/shell/renderer/test_runner/event_sender.cc     gin::Arguments* args) {
args              725 content/shell/renderer/test_runner/event_sender.cc     sender_->GestureScrollUpdateWithoutPropagation(args);
args              728 content/shell/renderer/test_runner/event_sender.cc void EventSenderBindings::GestureTap(gin::Arguments* args) {
args              730 content/shell/renderer/test_runner/event_sender.cc     sender_->GestureTap(args);
args              733 content/shell/renderer/test_runner/event_sender.cc void EventSenderBindings::GestureTapDown(gin::Arguments* args) {
args              735 content/shell/renderer/test_runner/event_sender.cc     sender_->GestureTapDown(args);
args              738 content/shell/renderer/test_runner/event_sender.cc void EventSenderBindings::GestureShowPress(gin::Arguments* args) {
args              740 content/shell/renderer/test_runner/event_sender.cc     sender_->GestureShowPress(args);
args              743 content/shell/renderer/test_runner/event_sender.cc void EventSenderBindings::GestureTapCancel(gin::Arguments* args) {
args              745 content/shell/renderer/test_runner/event_sender.cc     sender_->GestureTapCancel(args);
args              748 content/shell/renderer/test_runner/event_sender.cc void EventSenderBindings::GestureLongPress(gin::Arguments* args) {
args              750 content/shell/renderer/test_runner/event_sender.cc     sender_->GestureLongPress(args);
args              753 content/shell/renderer/test_runner/event_sender.cc void EventSenderBindings::GestureLongTap(gin::Arguments* args) {
args              755 content/shell/renderer/test_runner/event_sender.cc     sender_->GestureLongTap(args);
args              758 content/shell/renderer/test_runner/event_sender.cc void EventSenderBindings::GestureTwoFingerTap(gin::Arguments* args) {
args              760 content/shell/renderer/test_runner/event_sender.cc     sender_->GestureTwoFingerTap(args);
args              763 content/shell/renderer/test_runner/event_sender.cc void EventSenderBindings::ContinuousMouseScrollBy(gin::Arguments* args) {
args              765 content/shell/renderer/test_runner/event_sender.cc     sender_->ContinuousMouseScrollBy(args);
args              773 content/shell/renderer/test_runner/event_sender.cc void EventSenderBindings::MouseMoveTo(gin::Arguments* args) {
args              775 content/shell/renderer/test_runner/event_sender.cc     sender_->MouseMoveTo(args);
args              778 content/shell/renderer/test_runner/event_sender.cc void EventSenderBindings::MouseScrollBy(gin::Arguments* args) {
args              780 content/shell/renderer/test_runner/event_sender.cc     sender_->MouseScrollBy(args);
args              783 content/shell/renderer/test_runner/event_sender.cc void EventSenderBindings::MouseMomentumScrollBy(gin::Arguments* args) {
args              785 content/shell/renderer/test_runner/event_sender.cc     sender_->MouseMomentumScrollBy(args);
args              793 content/shell/renderer/test_runner/event_sender.cc void EventSenderBindings::ScheduleAsynchronousClick(gin::Arguments* args) {
args              799 content/shell/renderer/test_runner/event_sender.cc   if (!args->PeekNext().IsEmpty()) {
args              800 content/shell/renderer/test_runner/event_sender.cc     args->GetNext(&button_number);
args              801 content/shell/renderer/test_runner/event_sender.cc     if (!args->PeekNext().IsEmpty())
args              802 content/shell/renderer/test_runner/event_sender.cc       modifiers = GetKeyModifiersFromV8(args->PeekNext());
args              807 content/shell/renderer/test_runner/event_sender.cc void EventSenderBindings::ScheduleAsynchronousKeyDown(gin::Arguments* args) {
args              814 content/shell/renderer/test_runner/event_sender.cc   args->GetNext(&code_str);
args              815 content/shell/renderer/test_runner/event_sender.cc   if (!args->PeekNext().IsEmpty()) {
args              817 content/shell/renderer/test_runner/event_sender.cc     args->GetNext(&value);
args              819 content/shell/renderer/test_runner/event_sender.cc     if (!args->PeekNext().IsEmpty())
args              820 content/shell/renderer/test_runner/event_sender.cc       args->GetNext(&location);
args              826 content/shell/renderer/test_runner/event_sender.cc void EventSenderBindings::MouseDown(gin::Arguments* args) {
args              832 content/shell/renderer/test_runner/event_sender.cc   if (!args->PeekNext().IsEmpty()) {
args              833 content/shell/renderer/test_runner/event_sender.cc     args->GetNext(&button_number);
args              834 content/shell/renderer/test_runner/event_sender.cc     if (!args->PeekNext().IsEmpty())
args              835 content/shell/renderer/test_runner/event_sender.cc       modifiers = GetKeyModifiersFromV8(args->PeekNext());
args              840 content/shell/renderer/test_runner/event_sender.cc void EventSenderBindings::MouseUp(gin::Arguments* args) {
args              846 content/shell/renderer/test_runner/event_sender.cc   if (!args->PeekNext().IsEmpty()) {
args              847 content/shell/renderer/test_runner/event_sender.cc     args->GetNext(&button_number);
args              848 content/shell/renderer/test_runner/event_sender.cc     if (!args->PeekNext().IsEmpty())
args              849 content/shell/renderer/test_runner/event_sender.cc       modifiers = GetKeyModifiersFromV8(args->PeekNext());
args              854 content/shell/renderer/test_runner/event_sender.cc void EventSenderBindings::KeyDown(gin::Arguments* args) {
args              861 content/shell/renderer/test_runner/event_sender.cc   args->GetNext(&code_str);
args              862 content/shell/renderer/test_runner/event_sender.cc   if (!args->PeekNext().IsEmpty()) {
args              864 content/shell/renderer/test_runner/event_sender.cc     args->GetNext(&value);
args              866 content/shell/renderer/test_runner/event_sender.cc     if (!args->PeekNext().IsEmpty())
args              867 content/shell/renderer/test_runner/event_sender.cc       args->GetNext(&location);
args             1548 content/shell/renderer/test_runner/event_sender.cc void EventSender::AddTouchPoint(gin::Arguments* args) {
args             1551 content/shell/renderer/test_runner/event_sender.cc   args->GetNext(&x);
args             1552 content/shell/renderer/test_runner/event_sender.cc   args->GetNext(&y);
args             1559 content/shell/renderer/test_runner/event_sender.cc   if (!args->PeekNext().IsEmpty()) {
args             1561 content/shell/renderer/test_runner/event_sender.cc     if (!args->GetNext(&radius_x)) {
args             1562 content/shell/renderer/test_runner/event_sender.cc       args->ThrowError();
args             1567 content/shell/renderer/test_runner/event_sender.cc     if (!args->PeekNext().IsEmpty()) {
args             1568 content/shell/renderer/test_runner/event_sender.cc       if (!args->GetNext(&radius_y)) {
args             1569 content/shell/renderer/test_runner/event_sender.cc         args->ThrowError();
args             1629 content/shell/renderer/test_runner/event_sender.cc void EventSender::GestureScrollBegin(gin::Arguments* args) {
args             1630 content/shell/renderer/test_runner/event_sender.cc   GestureEvent(WebInputEvent::GestureScrollBegin, args);
args             1633 content/shell/renderer/test_runner/event_sender.cc void EventSender::GestureScrollEnd(gin::Arguments* args) {
args             1634 content/shell/renderer/test_runner/event_sender.cc   GestureEvent(WebInputEvent::GestureScrollEnd, args);
args             1637 content/shell/renderer/test_runner/event_sender.cc void EventSender::GestureScrollUpdate(gin::Arguments* args) {
args             1638 content/shell/renderer/test_runner/event_sender.cc   GestureEvent(WebInputEvent::GestureScrollUpdate, args);
args             1641 content/shell/renderer/test_runner/event_sender.cc void EventSender::GestureScrollUpdateWithoutPropagation(gin::Arguments* args) {
args             1642 content/shell/renderer/test_runner/event_sender.cc   GestureEvent(WebInputEvent::GestureScrollUpdateWithoutPropagation, args);
args             1645 content/shell/renderer/test_runner/event_sender.cc void EventSender::GestureTap(gin::Arguments* args) {
args             1646 content/shell/renderer/test_runner/event_sender.cc   GestureEvent(WebInputEvent::GestureTap, args);
args             1649 content/shell/renderer/test_runner/event_sender.cc void EventSender::GestureTapDown(gin::Arguments* args) {
args             1650 content/shell/renderer/test_runner/event_sender.cc   GestureEvent(WebInputEvent::GestureTapDown, args);
args             1653 content/shell/renderer/test_runner/event_sender.cc void EventSender::GestureShowPress(gin::Arguments* args) {
args             1654 content/shell/renderer/test_runner/event_sender.cc   GestureEvent(WebInputEvent::GestureShowPress, args);
args             1657 content/shell/renderer/test_runner/event_sender.cc void EventSender::GestureTapCancel(gin::Arguments* args) {
args             1658 content/shell/renderer/test_runner/event_sender.cc   GestureEvent(WebInputEvent::GestureTapCancel, args);
args             1661 content/shell/renderer/test_runner/event_sender.cc void EventSender::GestureLongPress(gin::Arguments* args) {
args             1662 content/shell/renderer/test_runner/event_sender.cc   GestureEvent(WebInputEvent::GestureLongPress, args);
args             1665 content/shell/renderer/test_runner/event_sender.cc void EventSender::GestureLongTap(gin::Arguments* args) {
args             1666 content/shell/renderer/test_runner/event_sender.cc   GestureEvent(WebInputEvent::GestureLongTap, args);
args             1669 content/shell/renderer/test_runner/event_sender.cc void EventSender::GestureTwoFingerTap(gin::Arguments* args) {
args             1670 content/shell/renderer/test_runner/event_sender.cc   GestureEvent(WebInputEvent::GestureTwoFingerTap, args);
args             1673 content/shell/renderer/test_runner/event_sender.cc void EventSender::ContinuousMouseScrollBy(gin::Arguments* args) {
args             1675 content/shell/renderer/test_runner/event_sender.cc   InitMouseWheelEvent(args, true, &event);
args             1695 content/shell/renderer/test_runner/event_sender.cc void EventSender::MouseMoveTo(gin::Arguments* args) {
args             1701 content/shell/renderer/test_runner/event_sender.cc   args->GetNext(&x);
args             1702 content/shell/renderer/test_runner/event_sender.cc   args->GetNext(&y);
args             1706 content/shell/renderer/test_runner/event_sender.cc   if (!args->PeekNext().IsEmpty())
args             1707 content/shell/renderer/test_runner/event_sender.cc     modifiers = GetKeyModifiersFromV8(args->PeekNext());
args             1729 content/shell/renderer/test_runner/event_sender.cc void EventSender::MouseScrollBy(gin::Arguments* args) {
args             1731 content/shell/renderer/test_runner/event_sender.cc   InitMouseWheelEvent(args, false, &event);
args             1735 content/shell/renderer/test_runner/event_sender.cc void EventSender::MouseMomentumScrollBy(gin::Arguments* args) {
args             1737 content/shell/renderer/test_runner/event_sender.cc   InitMouseWheelEvent(args, true, &event);
args             1802 content/shell/renderer/test_runner/event_sender.cc                                gin::Arguments* args) {
args             1805 content/shell/renderer/test_runner/event_sender.cc   args->GetNext(&x);
args             1806 content/shell/renderer/test_runner/event_sender.cc   args->GetNext(&y);
args             1835 content/shell/renderer/test_runner/event_sender.cc       if (!args->PeekNext().IsEmpty()) {
args             1837 content/shell/renderer/test_runner/event_sender.cc         if (!args->GetNext(&tap_count)) {
args             1838 content/shell/renderer/test_runner/event_sender.cc           args->ThrowError();
args             1850 content/shell/renderer/test_runner/event_sender.cc       if (!args->PeekNext().IsEmpty()) {
args             1852 content/shell/renderer/test_runner/event_sender.cc         if (!args->GetNext(&tap_count)) {
args             1853 content/shell/renderer/test_runner/event_sender.cc           args->ThrowError();
args             1866 content/shell/renderer/test_runner/event_sender.cc       if (!args->PeekNext().IsEmpty()) {
args             1868 content/shell/renderer/test_runner/event_sender.cc         if (!args->GetNext(&width)) {
args             1869 content/shell/renderer/test_runner/event_sender.cc           args->ThrowError();
args             1874 content/shell/renderer/test_runner/event_sender.cc       if (!args->PeekNext().IsEmpty()) {
args             1876 content/shell/renderer/test_runner/event_sender.cc         if (!args->GetNext(&height)) {
args             1877 content/shell/renderer/test_runner/event_sender.cc           args->ThrowError();
args             1886 content/shell/renderer/test_runner/event_sender.cc       if (!args->PeekNext().IsEmpty()) {
args             1888 content/shell/renderer/test_runner/event_sender.cc         if (!args->GetNext(&width)) {
args             1889 content/shell/renderer/test_runner/event_sender.cc           args->ThrowError();
args             1893 content/shell/renderer/test_runner/event_sender.cc         if (!args->PeekNext().IsEmpty()) {
args             1895 content/shell/renderer/test_runner/event_sender.cc           if (!args->GetNext(&height)) {
args             1896 content/shell/renderer/test_runner/event_sender.cc             args->ThrowError();
args             1910 content/shell/renderer/test_runner/event_sender.cc       if (!args->PeekNext().IsEmpty()) {
args             1912 content/shell/renderer/test_runner/event_sender.cc         if (!args->GetNext(&width)) {
args             1913 content/shell/renderer/test_runner/event_sender.cc           args->ThrowError();
args             1917 content/shell/renderer/test_runner/event_sender.cc         if (!args->PeekNext().IsEmpty()) {
args             1919 content/shell/renderer/test_runner/event_sender.cc           if (!args->GetNext(&height)) {
args             1920 content/shell/renderer/test_runner/event_sender.cc             args->ThrowError();
args             1930 content/shell/renderer/test_runner/event_sender.cc       if (!args->PeekNext().IsEmpty()) {
args             1932 content/shell/renderer/test_runner/event_sender.cc         if (!args->GetNext(&width)) {
args             1933 content/shell/renderer/test_runner/event_sender.cc           args->ThrowError();
args             1937 content/shell/renderer/test_runner/event_sender.cc         if (!args->PeekNext().IsEmpty()) {
args             1939 content/shell/renderer/test_runner/event_sender.cc           if (!args->GetNext(&height)) {
args             1940 content/shell/renderer/test_runner/event_sender.cc             args->ThrowError();
args             1950 content/shell/renderer/test_runner/event_sender.cc       if (!args->PeekNext().IsEmpty()) {
args             1952 content/shell/renderer/test_runner/event_sender.cc         if (!args->GetNext(&first_finger_width)) {
args             1953 content/shell/renderer/test_runner/event_sender.cc           args->ThrowError();
args             1957 content/shell/renderer/test_runner/event_sender.cc         if (!args->PeekNext().IsEmpty()) {
args             1959 content/shell/renderer/test_runner/event_sender.cc           if (!args->GetNext(&first_finger_height)) {
args             1960 content/shell/renderer/test_runner/event_sender.cc             args->ThrowError();
args             2008 content/shell/renderer/test_runner/event_sender.cc void EventSender::InitMouseWheelEvent(gin::Arguments* args,
args             2018 content/shell/renderer/test_runner/event_sender.cc   if (!args->GetNext(&horizontal)) {
args             2019 content/shell/renderer/test_runner/event_sender.cc     args->ThrowError();
args             2023 content/shell/renderer/test_runner/event_sender.cc   if (!args->GetNext(&vertical)) {
args             2024 content/shell/renderer/test_runner/event_sender.cc     args->ThrowError();
args             2031 content/shell/renderer/test_runner/event_sender.cc   if (!args->PeekNext().IsEmpty()) {
args             2032 content/shell/renderer/test_runner/event_sender.cc     args->GetNext(&paged);
args             2033 content/shell/renderer/test_runner/event_sender.cc     if (!args->PeekNext().IsEmpty()) {
args             2034 content/shell/renderer/test_runner/event_sender.cc       args->GetNext(&has_precise_scrolling_deltas);
args             2035 content/shell/renderer/test_runner/event_sender.cc       if (!args->PeekNext().IsEmpty())
args             2036 content/shell/renderer/test_runner/event_sender.cc         modifiers = GetKeyModifiersFromV8(args->PeekNext());
args              126 content/shell/renderer/test_runner/event_sender.h   void AddTouchPoint(gin::Arguments* args);
args              132 content/shell/renderer/test_runner/event_sender.h   void GestureScrollBegin(gin::Arguments* args);
args              133 content/shell/renderer/test_runner/event_sender.h   void GestureScrollEnd(gin::Arguments* args);
args              134 content/shell/renderer/test_runner/event_sender.h   void GestureScrollUpdate(gin::Arguments* args);
args              135 content/shell/renderer/test_runner/event_sender.h   void GestureScrollUpdateWithoutPropagation(gin::Arguments* args);
args              136 content/shell/renderer/test_runner/event_sender.h   void GestureTap(gin::Arguments* args);
args              137 content/shell/renderer/test_runner/event_sender.h   void GestureTapDown(gin::Arguments* args);
args              138 content/shell/renderer/test_runner/event_sender.h   void GestureShowPress(gin::Arguments* args);
args              139 content/shell/renderer/test_runner/event_sender.h   void GestureTapCancel(gin::Arguments* args);
args              140 content/shell/renderer/test_runner/event_sender.h   void GestureLongPress(gin::Arguments* args);
args              141 content/shell/renderer/test_runner/event_sender.h   void GestureLongTap(gin::Arguments* args);
args              142 content/shell/renderer/test_runner/event_sender.h   void GestureTwoFingerTap(gin::Arguments* args);
args              144 content/shell/renderer/test_runner/event_sender.h   void ContinuousMouseScrollBy(gin::Arguments* args);
args              146 content/shell/renderer/test_runner/event_sender.h   void MouseMoveTo(gin::Arguments* args);
args              147 content/shell/renderer/test_runner/event_sender.h   void MouseScrollBy(gin::Arguments* args);
args              148 content/shell/renderer/test_runner/event_sender.h   void MouseMomentumScrollBy(gin::Arguments* args);
args              165 content/shell/renderer/test_runner/event_sender.h   void InitMouseWheelEvent(gin::Arguments* args,
args              133 content/shell/renderer/test_runner/test_runner.cc   void QueueLoad(gin::Arguments* args);
args              134 content/shell/renderer/test_runner/test_runner.cc   void QueueLoadHTMLString(gin::Arguments* args);
args              135 content/shell/renderer/test_runner/test_runner.cc   void SetCustomPolicyDelegate(gin::Arguments* args);
args              138 content/shell/renderer/test_runner/test_runner.cc   void SetCloseRemainingWindowsWhenComplete(gin::Arguments* args);
args              141 content/shell/renderer/test_runner/test_runner.cc   void ExecCommand(gin::Arguments* args);
args              176 content/shell/renderer/test_runner/test_runner.cc   void SetMockDeviceMotion(gin::Arguments* args);
args              177 content/shell/renderer/test_runner/test_runner.cc   void SetMockDeviceOrientation(gin::Arguments* args);
args              226 content/shell/renderer/test_runner/test_runner.cc   void ShowWebInspector(gin::Arguments* args);
args              239 content/shell/renderer/test_runner/test_runner.cc   void GrantWebNotificationPermission(gin::Arguments* args);
args              265 content/shell/renderer/test_runner/test_runner.cc   void NotImplemented(const gin::Arguments& args);
args              574 content/shell/renderer/test_runner/test_runner.cc void TestRunnerBindings::QueueLoad(gin::Arguments* args) {
args              578 content/shell/renderer/test_runner/test_runner.cc     args->GetNext(&url);
args              579 content/shell/renderer/test_runner/test_runner.cc     args->GetNext(&target);
args              584 content/shell/renderer/test_runner/test_runner.cc void TestRunnerBindings::QueueLoadHTMLString(gin::Arguments* args) {
args              586 content/shell/renderer/test_runner/test_runner.cc     runner_->QueueLoadHTMLString(args);
args              589 content/shell/renderer/test_runner/test_runner.cc void TestRunnerBindings::SetCustomPolicyDelegate(gin::Arguments* args) {
args              591 content/shell/renderer/test_runner/test_runner.cc     runner_->SetCustomPolicyDelegate(args);
args              606 content/shell/renderer/test_runner/test_runner.cc     gin::Arguments* args) {
args              613 content/shell/renderer/test_runner/test_runner.cc   if (args->GetNext(&close_remaining_windows))
args              628 content/shell/renderer/test_runner/test_runner.cc void TestRunnerBindings::ExecCommand(gin::Arguments* args) {
args              630 content/shell/renderer/test_runner/test_runner.cc     runner_->ExecCommand(args);
args              772 content/shell/renderer/test_runner/test_runner.cc void TestRunnerBindings::SetMockDeviceMotion(gin::Arguments* args) {
args              796 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(&has_acceleration_x);
args              797 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(& acceleration_x);
args              798 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(&has_acceleration_y);
args              799 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(& acceleration_y);
args              800 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(&has_acceleration_z);
args              801 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(& acceleration_z);
args              802 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(&has_acceleration_including_gravity_x);
args              803 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(& acceleration_including_gravity_x);
args              804 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(&has_acceleration_including_gravity_y);
args              805 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(& acceleration_including_gravity_y);
args              806 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(&has_acceleration_including_gravity_z);
args              807 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(& acceleration_including_gravity_z);
args              808 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(&has_rotation_rate_alpha);
args              809 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(& rotation_rate_alpha);
args              810 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(&has_rotation_rate_beta);
args              811 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(& rotation_rate_beta);
args              812 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(&has_rotation_rate_gamma);
args              813 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(& rotation_rate_gamma);
args              814 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(& interval);
args              834 content/shell/renderer/test_runner/test_runner.cc void TestRunnerBindings::SetMockDeviceOrientation(gin::Arguments* args) {
args              847 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(&has_alpha);
args              848 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(&alpha);
args              849 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(&has_beta);
args              850 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(&beta);
args              851 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(&has_gamma);
args              852 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(&gamma);
args              853 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(&has_absolute);
args              854 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(&absolute);
args             1107 content/shell/renderer/test_runner/test_runner.cc void TestRunnerBindings::ShowWebInspector(gin::Arguments* args) {
args             1110 content/shell/renderer/test_runner/test_runner.cc     args->GetNext(&str);
args             1179 content/shell/renderer/test_runner/test_runner.cc void TestRunnerBindings::GrantWebNotificationPermission(gin::Arguments* args) {
args             1183 content/shell/renderer/test_runner/test_runner.cc     args->GetNext(&origin);
args             1184 content/shell/renderer/test_runner/test_runner.cc     args->GetNext(&permission_granted);
args             1297 content/shell/renderer/test_runner/test_runner.cc void TestRunnerBindings::NotImplemented(const gin::Arguments& args) {
args             1875 content/shell/renderer/test_runner/test_runner.cc void TestRunner::QueueLoadHTMLString(gin::Arguments* args) {
args             1877 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(&html);
args             1880 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(&base_url_str);
args             1883 content/shell/renderer/test_runner/test_runner.cc   if (args->PeekNext()->IsString()) {
args             1885 content/shell/renderer/test_runner/test_runner.cc     args->GetNext(&unreachable_url_str);
args             1894 content/shell/renderer/test_runner/test_runner.cc void TestRunner::SetCustomPolicyDelegate(gin::Arguments* args) {
args             1895 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(&policy_delegate_enabled_);
args             1896 content/shell/renderer/test_runner/test_runner.cc   if (!args->PeekNext().IsEmpty() && args->PeekNext()->IsBoolean())
args             1897 content/shell/renderer/test_runner/test_runner.cc     args->GetNext(&policy_delegate_is_permissive_);
args             1924 content/shell/renderer/test_runner/test_runner.cc void TestRunner::ExecCommand(gin::Arguments* args) {
args             1926 content/shell/renderer/test_runner/test_runner.cc   args->GetNext(&command);
args             1929 content/shell/renderer/test_runner/test_runner.cc   if (args->Length() >= 3) {
args             1932 content/shell/renderer/test_runner/test_runner.cc     args->Skip();
args             1933 content/shell/renderer/test_runner/test_runner.cc     args->GetNext(&value);
args              188 content/shell/renderer/test_runner/test_runner.h   void QueueLoadHTMLString(gin::Arguments* args);
args              193 content/shell/renderer/test_runner/test_runner.h   void SetCustomPolicyDelegate(gin::Arguments* args);
args              211 content/shell/renderer/test_runner/test_runner.h   void ExecCommand(gin::Arguments* args);
args               80 content/shell/tools/plugin/PluginObject.cpp void pluginLogWithArguments(NPP instance, const char* format, va_list args) {
args               87 content/shell/tools/plugin/PluginObject.cpp                              args);
args              106 content/shell/tools/plugin/PluginObject.cpp   va_list args;
args              107 content/shell/tools/plugin/PluginObject.cpp   va_start(args, format);
args              108 content/shell/tools/plugin/PluginObject.cpp   pluginLogWithArguments(instance, format, args);
args              109 content/shell/tools/plugin/PluginObject.cpp   va_end(args);
args              119 content/shell/tools/plugin/PluginObject.cpp                          const NPVariant* args,
args              500 content/shell/tools/plugin/PluginObject.cpp                                    const NPVariant* args,
args              505 content/shell/tools/plugin/PluginObject.cpp   NPIdentifier identifier = variantToIdentifier(args[0]);
args              516 content/shell/tools/plugin/PluginObject.cpp                                 const NPVariant* args,
args              521 content/shell/tools/plugin/PluginObject.cpp   NPIdentifier identifier = variantToIdentifier(args[0]);
args              530 content/shell/tools/plugin/PluginObject.cpp                                const NPVariant* args,
args              533 content/shell/tools/plugin/PluginObject.cpp   if (argCount != 2 || !NPVARIANT_IS_STRING(args[0]))
args              539 content/shell/tools/plugin/PluginObject.cpp   NPUTF8* callbackString = createCStringFromNPVariant(&args[0]);
args              548 content/shell/tools/plugin/PluginObject.cpp                   &args[1],
args              558 content/shell/tools/plugin/PluginObject.cpp                          const NPVariant* args,
args              561 content/shell/tools/plugin/PluginObject.cpp   if (!argCount || !NPVARIANT_IS_STRING(args[0]))
args              567 content/shell/tools/plugin/PluginObject.cpp   NPUTF8* callbackString = createCStringFromNPVariant(&args[0]);
args              588 content/shell/tools/plugin/PluginObject.cpp                                const NPVariant* args,
args              591 content/shell/tools/plugin/PluginObject.cpp   if (argCount != 1 || !NPVARIANT_IS_STRING(args[0]))
args              597 content/shell/tools/plugin/PluginObject.cpp   NPUTF8* callbackString = createCStringFromNPVariant(&args[0]);
args              624 content/shell/tools/plugin/PluginObject.cpp                    const NPVariant* args,
args              627 content/shell/tools/plugin/PluginObject.cpp   if (argCount == 2 && NPVARIANT_IS_STRING(args[0]) &&
args              628 content/shell/tools/plugin/PluginObject.cpp       NPVARIANT_IS_STRING(args[1])) {
args              629 content/shell/tools/plugin/PluginObject.cpp     NPUTF8* urlString = createCStringFromNPVariant(&args[0]);
args              630 content/shell/tools/plugin/PluginObject.cpp     NPUTF8* targetString = createCStringFromNPVariant(&args[1]);
args              638 content/shell/tools/plugin/PluginObject.cpp   if (argCount == 1 && NPVARIANT_IS_STRING(args[0])) {
args              639 content/shell/tools/plugin/PluginObject.cpp     NPUTF8* urlString = createCStringFromNPVariant(&args[0]);
args              650 content/shell/tools/plugin/PluginObject.cpp                          const NPVariant* args,
args              653 content/shell/tools/plugin/PluginObject.cpp   if (argCount != 3 || !NPVARIANT_IS_STRING(args[0]) ||
args              654 content/shell/tools/plugin/PluginObject.cpp       (!NPVARIANT_IS_STRING(args[1]) && !NPVARIANT_IS_NULL(args[1])) ||
args              655 content/shell/tools/plugin/PluginObject.cpp       !NPVARIANT_IS_STRING(args[2]))
args              658 content/shell/tools/plugin/PluginObject.cpp   NPUTF8* urlString = createCStringFromNPVariant(&args[0]);
args              660 content/shell/tools/plugin/PluginObject.cpp       (NPVARIANT_IS_STRING(args[1]) ? createCStringFromNPVariant(&args[1]) : 0);
args              661 content/shell/tools/plugin/PluginObject.cpp   NPUTF8* callbackString = createCStringFromNPVariant(&args[2]);
args              676 content/shell/tools/plugin/PluginObject.cpp                               const NPVariant* args,
args              679 content/shell/tools/plugin/PluginObject.cpp   if (!NPVARIANT_IS_OBJECT(args[0]))
args              682 content/shell/tools/plugin/PluginObject.cpp   NPObject* callback = NPVARIANT_TO_OBJECT(args[0]);
args              699 content/shell/tools/plugin/PluginObject.cpp                           const NPVariant* args,
args              709 content/shell/tools/plugin/PluginObject.cpp                               const NPVariant* args,
args              718 content/shell/tools/plugin/PluginObject.cpp                           const NPVariant* args,
args              721 content/shell/tools/plugin/PluginObject.cpp   if (argCount != 2 || !NPVARIANT_IS_OBJECT(args[0]) ||
args              722 content/shell/tools/plugin/PluginObject.cpp       !NPVARIANT_IS_OBJECT(args[1]))
args              728 content/shell/tools/plugin/PluginObject.cpp           obj->npp, NPVARIANT_TO_OBJECT(args[0]), &identifiers, &count)) {
args              729 content/shell/tools/plugin/PluginObject.cpp     NPObject* outArray = NPVARIANT_TO_OBJECT(args[1]);
args              738 content/shell/tools/plugin/PluginObject.cpp       NPVariant args[1];
args              739 content/shell/tools/plugin/PluginObject.cpp       STRINGZ_TO_NPVARIANT(string, args[0]);
args              742 content/shell/tools/plugin/PluginObject.cpp               obj->npp, outArray, pushIdentifier, args, 1, &browserResult))
args              755 content/shell/tools/plugin/PluginObject.cpp                                  const NPVariant* args,
args              758 content/shell/tools/plugin/PluginObject.cpp   if (argCount != 1 || !NPVARIANT_IS_DOUBLE(args[0]))
args              762 content/shell/tools/plugin/PluginObject.cpp       browser->getintidentifier((int)NPVARIANT_TO_DOUBLE(args[0]));
args              768 content/shell/tools/plugin/PluginObject.cpp                             const NPVariant* args,
args              778 content/shell/tools/plugin/PluginObject.cpp     assert(NPVARIANT_IS_STRING(args[i]));
args              779 content/shell/tools/plugin/PluginObject.cpp     NPUTF8* propertyString = createCStringFromNPVariant(&args[i]);
args              806 content/shell/tools/plugin/PluginObject.cpp                             const NPVariant* args,
args              809 content/shell/tools/plugin/PluginObject.cpp   if (argCount != 2 || !NPVARIANT_IS_OBJECT(args[0]) ||
args              810 content/shell/tools/plugin/PluginObject.cpp       !NPVARIANT_IS_STRING(args[1]))
args              813 content/shell/tools/plugin/PluginObject.cpp   NPUTF8* propertyString = createCStringFromNPVariant(&args[1]);
args              819 content/shell/tools/plugin/PluginObject.cpp       obj->npp, NPVARIANT_TO_OBJECT(args[0]), propertyIdentifier);
args              826 content/shell/tools/plugin/PluginObject.cpp                           const NPVariant* args,
args              829 content/shell/tools/plugin/PluginObject.cpp   if (argCount != 2 || !NPVARIANT_IS_OBJECT(args[0]) ||
args              830 content/shell/tools/plugin/PluginObject.cpp       !NPVARIANT_IS_STRING(args[1]))
args              833 content/shell/tools/plugin/PluginObject.cpp   NPUTF8* propertyString = createCStringFromNPVariant(&args[1]);
args              839 content/shell/tools/plugin/PluginObject.cpp       obj->npp, NPVARIANT_TO_OBJECT(args[0]), propertyIdentifier);
args              846 content/shell/tools/plugin/PluginObject.cpp                          const NPVariant* args,
args              849 content/shell/tools/plugin/PluginObject.cpp   if (argCount != 1 || !NPVARIANT_IS_STRING(args[0]))
args              854 content/shell/tools/plugin/PluginObject.cpp   NPString s = NPVARIANT_TO_STRING(args[0]);
args              862 content/shell/tools/plugin/PluginObject.cpp                                        const NPVariant* args,
args              865 content/shell/tools/plugin/PluginObject.cpp   if (argCount != 2 || !NPVARIANT_IS_OBJECT(args[0]) ||
args              866 content/shell/tools/plugin/PluginObject.cpp       !NPVARIANT_IS_STRING(args[1]))
args              869 content/shell/tools/plugin/PluginObject.cpp   NPUTF8* propertyString = createCStringFromNPVariant(&args[1]);
args              876 content/shell/tools/plugin/PluginObject.cpp       obj->npp, NPVARIANT_TO_OBJECT(args[0]), propertyIdentifier, &variant);
args              893 content/shell/tools/plugin/PluginObject.cpp                             const NPVariant* args,
args              896 content/shell/tools/plugin/PluginObject.cpp   if (argCount != 4 || !NPVARIANT_IS_STRING(args[0]) ||
args              897 content/shell/tools/plugin/PluginObject.cpp       !NPVARIANT_IS_STRING(args[1]) || !NPVARIANT_IS_STRING(args[2]) ||
args              898 content/shell/tools/plugin/PluginObject.cpp       !NPVARIANT_IS_STRING(args[3]))
args              901 content/shell/tools/plugin/PluginObject.cpp   NPString urlString = NPVARIANT_TO_STRING(args[0]);
args              904 content/shell/tools/plugin/PluginObject.cpp   NPString targetString = NPVARIANT_TO_STRING(args[1]);
args              907 content/shell/tools/plugin/PluginObject.cpp   NPString pathString = NPVARIANT_TO_STRING(args[2]);
args              910 content/shell/tools/plugin/PluginObject.cpp   NPString contentsString = NPVARIANT_TO_STRING(args[3]);
args              934 content/shell/tools/plugin/PluginObject.cpp                           const NPVariant* args,
args              937 content/shell/tools/plugin/PluginObject.cpp   if (!argCount || !NPVARIANT_IS_OBJECT(args[0]))
args              941 content/shell/tools/plugin/PluginObject.cpp       obj->npp, NPVARIANT_TO_OBJECT(args[0]), args + 1, argCount - 1, result);
args              947 content/shell/tools/plugin/PluginObject.cpp                                    const NPVariant* args,
args              950 content/shell/tools/plugin/PluginObject.cpp   if (argCount != 2 || !NPVARIANT_IS_STRING(args[0]) ||
args              951 content/shell/tools/plugin/PluginObject.cpp       !NPVARIANT_IS_STRING(args[1]))
args              957 content/shell/tools/plugin/PluginObject.cpp   NPUTF8* callbackString = createCStringFromNPVariant(&args[0]);
args              967 content/shell/tools/plugin/PluginObject.cpp                   &args[1],
args              975 content/shell/tools/plugin/PluginObject.cpp   NPUTF8* object_mehod_string = createCStringFromNPVariant(&args[1]);
args             1101 content/shell/tools/plugin/PluginObject.cpp                           const NPVariant* args,
args             1105 content/shell/tools/plugin/PluginObject.cpp   if (argCount && NPVARIANT_IS_STRING(args[0])) {
args             1106 content/shell/tools/plugin/PluginObject.cpp     NPString statusString = NPVARIANT_TO_STRING(args[0]);
args             1117 content/shell/tools/plugin/PluginObject.cpp                          const NPVariant* args,
args             1131 content/shell/tools/plugin/PluginObject.cpp                       args,
args             1147 content/shell/tools/plugin/PluginObject.cpp                               const NPVariant* args,
args             1161 content/shell/tools/plugin/PluginObject.cpp                       args,
args             1170 content/shell/tools/plugin/PluginObject.cpp                            const NPVariant* args,
args             1177 content/shell/tools/plugin/PluginObject.cpp   rect.left = static_cast<int>(NPVARIANT_TO_DOUBLE(args[0]));
args             1178 content/shell/tools/plugin/PluginObject.cpp   rect.top = static_cast<int>(NPVARIANT_TO_DOUBLE(args[1]));
args             1179 content/shell/tools/plugin/PluginObject.cpp   rect.right = static_cast<int>(NPVARIANT_TO_DOUBLE(args[2]));
args             1180 content/shell/tools/plugin/PluginObject.cpp   rect.bottom = static_cast<int>(NPVARIANT_TO_DOUBLE(args[3]));
args             1187 content/shell/tools/plugin/PluginObject.cpp                            const NPVariant* args,
args             1190 content/shell/tools/plugin/PluginObject.cpp   if (argCount != 2 || !NPVARIANT_IS_OBJECT(args[0]) ||
args             1191 content/shell/tools/plugin/PluginObject.cpp       !NPVARIANT_IS_OBJECT(args[1]))
args             1195 content/shell/tools/plugin/PluginObject.cpp       NPVARIANT_TO_OBJECT(args[0]) == NPVARIANT_TO_OBJECT(args[1]), *result);
args             1201 content/shell/tools/plugin/PluginObject.cpp                          const NPVariant* args,
args             1206 content/shell/tools/plugin/PluginObject.cpp     return testCallback(plugin, args, argCount, result);
args             1208 content/shell/tools/plugin/PluginObject.cpp     return testCallbackReturn(plugin, args, argCount, result);
args             1210 content/shell/tools/plugin/PluginObject.cpp     return getURL(plugin, args, argCount, result);
args             1212 content/shell/tools/plugin/PluginObject.cpp     return testDOMAccess(plugin, args, argCount, result);
args             1214 content/shell/tools/plugin/PluginObject.cpp     return getURLNotify(plugin, args, argCount, result);
args             1216 content/shell/tools/plugin/PluginObject.cpp     return testInvokeDefault(plugin, args, argCount, result);
args             1218 content/shell/tools/plugin/PluginObject.cpp     return testEnumerate(plugin, args, argCount, result);
args             1220 content/shell/tools/plugin/PluginObject.cpp     return destroyStream(plugin, args, argCount, result);
args             1222 content/shell/tools/plugin/PluginObject.cpp     return testGetIntIdentifier(plugin, args, argCount, result);
args             1224 content/shell/tools/plugin/PluginObject.cpp     return testEvaluate(plugin, args, argCount, result);
args             1226 content/shell/tools/plugin/PluginObject.cpp     return testGetProperty(plugin, args, argCount, result);
args             1228 content/shell/tools/plugin/PluginObject.cpp     return testGetPropertyReturnValue(plugin, args, argCount, result);
args             1230 content/shell/tools/plugin/PluginObject.cpp     return testHasProperty(plugin, args, argCount, result);
args             1232 content/shell/tools/plugin/PluginObject.cpp     return testHasMethod(plugin, args, argCount, result);
args             1234 content/shell/tools/plugin/PluginObject.cpp     return testIdentifierToString(plugin, args, argCount, result);
args             1236 content/shell/tools/plugin/PluginObject.cpp     return testIdentifierToInt(plugin, args, argCount, result);
args             1238 content/shell/tools/plugin/PluginObject.cpp     return testPassTestObject(plugin, args, argCount, result);
args             1240 content/shell/tools/plugin/PluginObject.cpp     return testPostURLFile(plugin, args, argCount, result);
args             1242 content/shell/tools/plugin/PluginObject.cpp     return testConstruct(plugin, args, argCount, result);
args             1244 content/shell/tools/plugin/PluginObject.cpp     return testScriptObjectInvoke(plugin, args, argCount, result);
args             1253 content/shell/tools/plugin/PluginObject.cpp         plugin->npp, windowScriptObject, name, args, argCount, result);
args             1271 content/shell/tools/plugin/PluginObject.cpp     return destroyNullStream(plugin, args, argCount, result);
args             1282 content/shell/tools/plugin/PluginObject.cpp                          NPVARIANT_TO_OBJECT(args[0]),
args             1283 content/shell/tools/plugin/PluginObject.cpp                          stringVariantToIdentifier(args[1]),
args             1289 content/shell/tools/plugin/PluginObject.cpp                          NPVARIANT_TO_OBJECT(args[0]),
args             1290 content/shell/tools/plugin/PluginObject.cpp                          stringVariantToIdentifier(args[1]),
args             1291 content/shell/tools/plugin/PluginObject.cpp                          &args[2]);
args             1297 content/shell/tools/plugin/PluginObject.cpp     plugin->rememberedObject = NPVARIANT_TO_OBJECT(args[0]);
args             1315 content/shell/tools/plugin/PluginObject.cpp     uint32_t refCount = NPVARIANT_TO_OBJECT(args[0])->referenceCount;
args             1320 content/shell/tools/plugin/PluginObject.cpp     return testSetStatus(plugin, args, argCount, result);
args             1322 content/shell/tools/plugin/PluginObject.cpp     return testResizeTo(plugin, args, argCount, result);
args             1324 content/shell/tools/plugin/PluginObject.cpp     return normalizeOverride(plugin, args, argCount, result);
args             1326 content/shell/tools/plugin/PluginObject.cpp     return invalidateRect(plugin, args, argCount, result);
args             1328 content/shell/tools/plugin/PluginObject.cpp     return objectsAreSame(plugin, args, argCount, result);
args             1407 content/shell/tools/plugin/PluginObject.cpp   NPVariant args[2];
args             1414 content/shell/tools/plugin/PluginObject.cpp   INT32_TO_NPVARIANT(reason, args[0]);
args             1433 content/shell/tools/plugin/PluginObject.cpp     STRINGN_TO_NPVARIANT(strHdr, len, args[1]);
args             1435 content/shell/tools/plugin/PluginObject.cpp     NULL_TO_NPVARIANT(args[1]);
args             1441 content/shell/tools/plugin/PluginObject.cpp                       args,
args             1469 content/shell/tools/plugin/PluginObject.cpp   NPVariant args[7];
args             1471 content/shell/tools/plugin/PluginObject.cpp   VOID_TO_NPVARIANT(args[0]);
args             1472 content/shell/tools/plugin/PluginObject.cpp   NULL_TO_NPVARIANT(args[1]);
args             1473 content/shell/tools/plugin/PluginObject.cpp   BOOLEAN_TO_NPVARIANT(true, args[2]);
args             1474 content/shell/tools/plugin/PluginObject.cpp   INT32_TO_NPVARIANT(242, args[3]);
args             1475 content/shell/tools/plugin/PluginObject.cpp   DOUBLE_TO_NPVARIANT(242.242, args[4]);
args             1476 content/shell/tools/plugin/PluginObject.cpp   STRINGZ_TO_NPVARIANT("Hello, World", args[5]);
args             1477 content/shell/tools/plugin/PluginObject.cpp   OBJECT_TO_NPVARIANT(windowScriptObject, args[6]);
args             1480 content/shell/tools/plugin/PluginObject.cpp   if (browser->invoke(npp, windowScriptObject, testNPInvoke, args, 7, &result))
args               93 content/shell/tools/plugin/PluginObject.h                                    va_list args);
args              158 content/shell/tools/plugin/PluginTest.cpp                             const NPVariant* args,
args              161 content/shell/tools/plugin/PluginTest.cpp   return browser->invoke(m_npp, npobj, methodName, args, argCount, result);
args              248 content/shell/tools/plugin/PluginTest.cpp   va_list args;
args              249 content/shell/tools/plugin/PluginTest.cpp   va_start(args, format);
args              250 content/shell/tools/plugin/PluginTest.cpp   pluginLogWithArguments(m_npp, format, args);
args              251 content/shell/tools/plugin/PluginTest.cpp   va_end(args);
args              109 content/shell/tools/plugin/PluginTest.h                   const NPVariant* args,
args               43 content/shell/tools/plugin/TestObject.cpp                        const NPVariant* args,
args               51 content/shell/tools/plugin/TestObject.cpp                           const NPVariant* args,
args               53 content/shell/tools/plugin/Tests/NPRuntimeObjectFromDestroyedPlugin.cpp         bool invoke(NPIdentifier methodName, const NPVariant* args, uint32_t argCount, NPVariant* result)
args               58 content/shell/tools/plugin/Tests/NPRuntimeObjectFromDestroyedPlugin.cpp             if (argCount != 1 || !NPVARIANT_IS_STRING(args[0]))
args               61 content/shell/tools/plugin/Tests/NPRuntimeObjectFromDestroyedPlugin.cpp             return pluginTest()->executeScript(&NPVARIANT_TO_STRING(args[0]), result);
args              450 content/zygote/zygote_linux.cc   std::vector<std::string> args;
args              468 content/zygote/zygote_linux.cc     args.push_back(arg);
args              503 content/zygote/zygote_linux.cc     CommandLine::ForCurrentProcess()->InitFromArgv(args);
args               42 courgette/courgette_tool.cc   va_list args;
args               43 courgette/courgette_tool.cc   va_start(args, format);
args               44 courgette/courgette_tool.cc   vfprintf(stderr, format, args);
args               46 courgette/courgette_tool.cc   va_end(args);
args              450 courgette/courgette_tool.cc   const CommandLine::StringVector& args = command_line.GetArgs();
args              451 courgette/courgette_tool.cc   for (size_t i = 0; i < args.size(); ++i) {
args              452 courgette/courgette_tool.cc     values.push_back(base::FilePath(args[i]));
args              131 extensions/browser/api/sockets_tcp/tcp_socket_event_dispatcher.cc     scoped_ptr<base::ListValue> args =
args              134 extensions/browser/api/sockets_tcp/tcp_socket_event_dispatcher.cc         new Event(sockets_tcp::OnReceive::kEventName, args.Pass()));
args              152 extensions/browser/api/sockets_tcp/tcp_socket_event_dispatcher.cc     scoped_ptr<base::ListValue> args =
args              155 extensions/browser/api/sockets_tcp/tcp_socket_event_dispatcher.cc         new Event(sockets_tcp::OnReceiveError::kEventName, args.Pass()));
args              135 extensions/browser/api/sockets_tcp_server/tcp_server_socket_event_dispatcher.cc     scoped_ptr<base::ListValue> args =
args              138 extensions/browser/api/sockets_tcp_server/tcp_server_socket_event_dispatcher.cc         new Event(sockets_tcp_server::OnAccept::kEventName, args.Pass()));
args              153 extensions/browser/api/sockets_tcp_server/tcp_server_socket_event_dispatcher.cc     scoped_ptr<base::ListValue> args =
args              156 extensions/browser/api/sockets_tcp_server/tcp_server_socket_event_dispatcher.cc         new Event(sockets_tcp_server::OnAcceptError::kEventName, args.Pass()));
args              117 extensions/browser/api/sockets_udp/udp_socket_event_dispatcher.cc     scoped_ptr<base::ListValue> args =
args              120 extensions/browser/api/sockets_udp/udp_socket_event_dispatcher.cc         new Event(sockets_udp::OnReceive::kEventName, args.Pass()));
args              138 extensions/browser/api/sockets_udp/udp_socket_event_dispatcher.cc     scoped_ptr<base::ListValue> args =
args              141 extensions/browser/api/sockets_udp/udp_socket_event_dispatcher.cc         new Event(sockets_udp::OnReceiveError::kEventName, args.Pass()));
args               46 extensions/browser/api/storage/storage_frontend.cc     scoped_ptr<base::ListValue> args(new base::ListValue());
args               47 extensions/browser/api/storage/storage_frontend.cc     args->Append(base::JSONReader::Read(change_json));
args               48 extensions/browser/api/storage/storage_frontend.cc     args->Append(new base::StringValue(settings_namespace::ToString(
args               51 extensions/browser/api/storage/storage_frontend.cc         core_api::storage::OnChanged::kEventName, args.Pass()));
args               31 extensions/browser/api_activity_monitor.h                                    scoped_ptr<base::ListValue> args) = 0;
args               53 extensions/browser/event_router.cc                               scoped_ptr<ListValue> args) {
args               63 extensions/browser/event_router.cc                    base::Passed(&args)));
args               74 extensions/browser/event_router.cc     monitor->OnApiEventDispatched(extension_id, event_name, args.Pass());
args              111 extensions/browser/event_router.cc   ListValue args;
args              112 extensions/browser/event_router.cc   args.Set(0, new base::StringValue(event_name));
args              113 extensions/browser/event_router.cc   args.Set(1, event_args);
args              114 extensions/browser/event_router.cc   args.Set(2, info.AsValue().release());
args              120 extensions/browser/event_router.cc       args,
args              126 extensions/browser/event_router.cc   args.Remove(1, &removed_event_args);
args              106 extensions/browser/extension_function.cc void ExtensionFunction::SetArgs(const base::ListValue* args) {
args              108 extensions/browser/extension_function.cc   args_.reset(args->DeepCopy());
args              143 extensions/browser/extension_function.h   virtual void SetArgs(const base::ListValue* args);
args               48 extensions/browser/extension_function_dispatcher.cc                              scoped_ptr<base::ListValue> args,
args               58 extensions/browser/extension_function_dispatcher.cc                                        base::Passed(&args),
args               69 extensions/browser/extension_function_dispatcher.cc     monitor->OnApiFunctionCalled(extension_id, api_name, args.Pass());
args              269 extensions/browser/extension_function_dispatcher.cc     scoped_ptr<base::ListValue> args(params.arguments.DeepCopy());
args              272 extensions/browser/extension_function_dispatcher.cc                             args.Pass(),
args              376 extensions/browser/extension_function_dispatcher.cc     scoped_ptr<base::ListValue> args(params.arguments.DeepCopy());
args              379 extensions/browser/extension_function_dispatcher.cc         extension->id(), params.name, args.Pass(), browser_context_);
args               42 extensions/browser/quota_service.cc                                  const base::ListValue* args,
args               70 extensions/browser/quota_service.cc     if (!(*heuristic)->ApplyToArgs(args, event_time)) {
args              111 extensions/browser/quota_service.cc     const base::ListValue* args,
args              123 extensions/browser/quota_service.cc bool QuotaLimitHeuristic::ApplyToArgs(const base::ListValue* args,
args              126 extensions/browser/quota_service.cc   bucket_mapper_->GetBucketsForArgs(args, &buckets);
args               60 extensions/browser/quota_service.h                      const base::ListValue* args,
args              157 extensions/browser/quota_service.h     virtual void GetBucketsForArgs(const base::ListValue* args,
args              167 extensions/browser/quota_service.h     virtual void GetBucketsForArgs(const base::ListValue* args,
args              185 extensions/browser/quota_service.h   bool ApplyToArgs(const base::ListValue* args,
args               39 extensions/browser/quota_service_unittest.cc   virtual void GetBucketsForArgs(const base::ListValue* args,
args               41 extensions/browser/quota_service_unittest.cc     for (size_t i = 0; i < args->GetSize(); i++) {
args               43 extensions/browser/quota_service_unittest.cc       ASSERT_TRUE(args->GetInteger(i, &id));
args               58 extensions/browser/quota_service_unittest.cc   virtual void GetBucketsForArgs(const base::ListValue* args,
args               66 extensions/browser/quota_service_unittest.cc   virtual void SetArgs(const base::ListValue* args) OVERRIDE {}
args              220 extensions/browser/quota_service_unittest.cc   base::ListValue args;
args              221 extensions/browser/quota_service_unittest.cc   EXPECT_EQ("", service_->Assess(extension_a_, f.get(), &args, kStartTime));
args              226 extensions/browser/quota_service_unittest.cc   base::ListValue args;
args              227 extensions/browser/quota_service_unittest.cc   args.Append(new base::FundamentalValue(1));
args              228 extensions/browser/quota_service_unittest.cc   EXPECT_NE("", service_->Assess(extension_a_, f.get(), &args, kStartTime));
args              233 extensions/browser/quota_service_unittest.cc   base::ListValue args;
args              234 extensions/browser/quota_service_unittest.cc   args.Append(new base::FundamentalValue(1));
args              235 extensions/browser/quota_service_unittest.cc   EXPECT_EQ("", service_->Assess(extension_a_, f.get(), &args, kStartTime));
args              239 extensions/browser/quota_service_unittest.cc                              &args,
args              244 extensions/browser/quota_service_unittest.cc                              &args,
args              259 extensions/browser/quota_service_unittest.cc             service_->Assess(extension_b_, f.get(), &args, kStartTime + peace));
args              263 extensions/browser/quota_service_unittest.cc                              &args,
args              274 extensions/browser/quota_service_unittest.cc   EXPECT_EQ("", service_->Assess(extension_c_, f.get(), &args, kStartTime));
args              283 extensions/browser/quota_service_unittest.cc                              &args,
args              293 extensions/browser/quota_service_unittest.cc                              &args,
args              304 extensions/browser/quota_service_unittest.cc   base::ListValue args;
args              305 extensions/browser/quota_service_unittest.cc   args.Append(new base::FundamentalValue(1));
args              315 extensions/browser/quota_service_unittest.cc                          &args,
args              323 extensions/browser/quota_service_unittest.cc                              &args,
args              332 extensions/browser/quota_service_unittest.cc                          &args,
args              338 extensions/browser/quota_service_unittest.cc                          &args,
args              344 extensions/browser/quota_service_unittest.cc                          &args,
args              351 extensions/browser/quota_service_unittest.cc                              &args,
args               96 gin/function_template.h       Arguments* args,
args              104 gin/function_template.h     args->Return(callback.Run(a1, a2, a3, a4, a5, a6));
args              111 gin/function_template.h       Arguments* args,
args              127 gin/function_template.h       Arguments* args,
args              134 gin/function_template.h     args->Return(callback.Run(a1, a2, a3, a4, a5));
args              140 gin/function_template.h       Arguments* args,
args              154 gin/function_template.h       Arguments* args,
args              160 gin/function_template.h     args->Return(callback.Run(a1, a2, a3, a4));
args              166 gin/function_template.h       Arguments* args,
args              179 gin/function_template.h       Arguments* args,
args              184 gin/function_template.h     args->Return(callback.Run(a1, a2, a3));
args              190 gin/function_template.h       Arguments* args,
args              202 gin/function_template.h       Arguments* args,
args              206 gin/function_template.h     args->Return(callback.Run(a1, a2));
args              212 gin/function_template.h       Arguments* args,
args              223 gin/function_template.h       Arguments* args,
args              226 gin/function_template.h     args->Return(callback.Run(a1));
args              232 gin/function_template.h       Arguments* args,
args              242 gin/function_template.h       Arguments* args,
args              244 gin/function_template.h     args->Return(callback.Run());
args              250 gin/function_template.h       Arguments* args,
args              258 gin/function_template.h bool GetNextArgument(Arguments* args, int create_flags, bool is_first,
args              261 gin/function_template.h     return args->GetHolder(result);
args              263 gin/function_template.h     return args->GetNext(result);
args              269 gin/function_template.h inline bool GetNextArgument(Arguments* args, int create_flags, bool is_first,
args              271 gin/function_template.h   *result = *args;
args              274 gin/function_template.h inline bool GetNextArgument(Arguments* args, int create_flags, bool is_first,
args              276 gin/function_template.h   *result = args;
args              281 gin/function_template.h inline bool GetNextArgument(Arguments* args, int create_flags,
args              283 gin/function_template.h   *result = args->isolate();
args              298 gin/function_template.h     Arguments args(info);
args              300 gin/function_template.h     CHECK(args.GetData(&v8_holder));
args              307 gin/function_template.h     Invoker<R>::Go(&args, holder->callback);
args              315 gin/function_template.h     Arguments args(info);
args              317 gin/function_template.h     CHECK(args.GetData(&v8_holder));
args              325 gin/function_template.h     if (!GetNextArgument(&args, holder->flags, true, &a1)) {
args              326 gin/function_template.h       args.ThrowError();
args              330 gin/function_template.h     Invoker<R, P1>::Go(&args, holder->callback, a1);
args              338 gin/function_template.h     Arguments args(info);
args              340 gin/function_template.h     CHECK(args.GetData(&v8_holder));
args              349 gin/function_template.h     if (!GetNextArgument(&args, holder->flags, true, &a1) ||
args              350 gin/function_template.h         !GetNextArgument(&args, holder->flags, false, &a2)) {
args              351 gin/function_template.h       args.ThrowError();
args              355 gin/function_template.h     Invoker<R, P1, P2>::Go(&args, holder->callback, a1, a2);
args              363 gin/function_template.h     Arguments args(info);
args              365 gin/function_template.h     CHECK(args.GetData(&v8_holder));
args              375 gin/function_template.h     if (!GetNextArgument(&args, holder->flags, true, &a1) ||
args              376 gin/function_template.h         !GetNextArgument(&args, holder->flags, false, &a2) ||
args              377 gin/function_template.h         !GetNextArgument(&args, holder->flags, false, &a3)) {
args              378 gin/function_template.h       args.ThrowError();
args              382 gin/function_template.h     Invoker<R, P1, P2, P3>::Go(&args, holder->callback, a1, a2, a3);
args              390 gin/function_template.h     Arguments args(info);
args              392 gin/function_template.h     CHECK(args.GetData(&v8_holder));
args              403 gin/function_template.h     if (!GetNextArgument(&args, holder->flags, true, &a1) ||
args              404 gin/function_template.h         !GetNextArgument(&args, holder->flags, false, &a2) ||
args              405 gin/function_template.h         !GetNextArgument(&args, holder->flags, false, &a3) ||
args              406 gin/function_template.h         !GetNextArgument(&args, holder->flags, false, &a4)) {
args              407 gin/function_template.h       args.ThrowError();
args              411 gin/function_template.h     Invoker<R, P1, P2, P3, P4>::Go(&args, holder->callback, a1, a2, a3, a4);
args              420 gin/function_template.h     Arguments args(info);
args              422 gin/function_template.h     CHECK(args.GetData(&v8_holder));
args              434 gin/function_template.h     if (!GetNextArgument(&args, holder->flags, true, &a1) ||
args              435 gin/function_template.h         !GetNextArgument(&args, holder->flags, false, &a2) ||
args              436 gin/function_template.h         !GetNextArgument(&args, holder->flags, false, &a3) ||
args              437 gin/function_template.h         !GetNextArgument(&args, holder->flags, false, &a4) ||
args              438 gin/function_template.h         !GetNextArgument(&args, holder->flags, false, &a5)) {
args              439 gin/function_template.h       args.ThrowError();
args              443 gin/function_template.h     Invoker<R, P1, P2, P3, P4, P5>::Go(&args, holder->callback, a1, a2, a3, a4,
args              453 gin/function_template.h     Arguments args(info);
args              455 gin/function_template.h     CHECK(args.GetData(&v8_holder));
args              468 gin/function_template.h     if (!GetNextArgument(&args, holder->flags, true, &a1) ||
args              469 gin/function_template.h         !GetNextArgument(&args, holder->flags, false, &a2) ||
args              470 gin/function_template.h         !GetNextArgument(&args, holder->flags, false, &a3) ||
args              471 gin/function_template.h         !GetNextArgument(&args, holder->flags, false, &a4) ||
args              472 gin/function_template.h         !GetNextArgument(&args, holder->flags, false, &a5) ||
args              473 gin/function_template.h         !GetNextArgument(&args, holder->flags, false, &a6)) {
args              474 gin/function_template.h       args.ThrowError();
args              478 gin/function_template.h     Invoker<R, P1, P2, P3, P4, P5, P6>::Go(&args, holder->callback, a1, a2, a3,
args               22 gin/modules/console.cc void Log(Arguments* args) {
args               24 gin/modules/console.cc   if (!args->GetRemaining(&messages)) {
args               25 gin/modules/console.cc     args->ThrowError();
args               60 gin/modules/module_registry.cc   Arguments args(info);
args               63 gin/modules/module_registry.cc     return args.ThrowTypeError("At least one argument is required.");
args               69 gin/modules/module_registry.cc   if (args.PeekNext()->IsString())
args               70 gin/modules/module_registry.cc     args.GetNext(&id);
args               71 gin/modules/module_registry.cc   if (args.PeekNext()->IsArray())
args               72 gin/modules/module_registry.cc     args.GetNext(&dependencies);
args               73 gin/modules/module_registry.cc   if (!args.GetNext(&factory))
args               74 gin/modules/module_registry.cc     return args.ThrowError();
args               79 gin/modules/module_registry.cc   pending->factory.Reset(args.isolate(), factory);
args               82 gin/modules/module_registry.cc       ModuleRegistry::From(args.isolate()->GetCurrentContext());
args               83 gin/modules/module_registry.cc   registry->AddPendingModule(args.isolate(), pending.Pass());
args               76 gin/shell/gin_main.cc   CommandLine::StringVector args = CommandLine::ForCurrentProcess()->GetArgs();
args               77 gin/shell/gin_main.cc   for (CommandLine::StringVector::const_iterator it = args.begin();
args               78 gin/shell/gin_main.cc        it != args.end(); ++it) {
args               57 google_apis/cup/client_update_protocol.cc   const std::vector<uint8>* args[] = { h1, h2, h3 };
args               58 google_apis/cup/client_update_protocol.cc   for (size_t i = 0; i != arraysize(args); ++i) {
args               59 google_apis/cup/client_update_protocol.cc     if (args[i]) {
args               60 google_apis/cup/client_update_protocol.cc       DCHECK_EQ(args[i]->size(), HashDigestSize());
args               61 google_apis/cup/client_update_protocol.cc       result.insert(result.end(), args[i]->begin(), args[i]->end());
args              130 gpu/command_buffer/client/cmd_buffer_helper_test.cc                             CommandBufferEntry *args) {
args              138 gpu/command_buffer/client/cmd_buffer_helper_test.cc       cmds[put++] = args[ii];
args              142 gpu/command_buffer/client/cmd_buffer_helper_test.cc         Truly(AsyncAPIMock::IsArgs(arg_count, args))))
args              170 gpu/command_buffer/client/cmd_buffer_helper_test.cc     std::vector<CommandBufferEntry> args(num_args);
args              172 gpu/command_buffer/client/cmd_buffer_helper_test.cc       args[ii].value_uint32 = ii + 1;
args              178 gpu/command_buffer/client/cmd_buffer_helper_test.cc           error::kNoError, ii + kUnusedCommandId, num_args, &args[0]);
args              195 gpu/command_buffer/client/cmd_buffer_helper_test.cc                            &args[0]);
args              530 gpu/command_buffer/client/cmd_buffer_helper_test.cc   CommandBufferEntry args[2];
args              531 gpu/command_buffer/client/cmd_buffer_helper_test.cc   args[0].value_uint32 = 3;
args              532 gpu/command_buffer/client/cmd_buffer_helper_test.cc   args[1].value_float = 4.f;
args              537 gpu/command_buffer/client/cmd_buffer_helper_test.cc   AddCommandWithExpect(error::kNoError, kUnusedCommandId + 3, 2, args);
args              538 gpu/command_buffer/client/cmd_buffer_helper_test.cc   AddCommandWithExpect(error::kNoError, kUnusedCommandId + 4, 2, args);
args              547 gpu/command_buffer/client/cmd_buffer_helper_test.cc   AddCommandWithExpect(error::kNoError, kUnusedCommandId + 5, 2, args);
args              561 gpu/command_buffer/client/cmd_buffer_helper_test.cc   CommandBufferEntry args[2];
args              562 gpu/command_buffer/client/cmd_buffer_helper_test.cc   args[0].value_uint32 = 3;
args              563 gpu/command_buffer/client/cmd_buffer_helper_test.cc   args[1].value_float = 4.f;
args              566 gpu/command_buffer/client/cmd_buffer_helper_test.cc   AddCommandWithExpect(error::kNoError, kUnusedCommandId + 3, 2, args);
args              575 gpu/command_buffer/client/cmd_buffer_helper_test.cc   AddCommandWithExpect(error::kNoError, kUnusedCommandId + 4, 2, args);
args               39 gpu/command_buffer/client/gles2_implementation.h     #define GPU_CLIENT_LOG(args)
args               45 gpu/command_buffer/client/gles2_implementation.h     #define GPU_CLIENT_LOG(args)  DLOG_IF(INFO, debug_) << args;
args               52 gpu/command_buffer/client/gles2_implementation.h   #define GPU_CLIENT_LOG(args)
args               37 gpu/command_buffer/service/cmd_parser_test.cc                           CommandBufferEntry *args) {
args               39 gpu/command_buffer/service/cmd_parser_test.cc         Truly(AsyncAPIMock::IsArgs(arg_count, args))))
args              171 gpu/command_buffer/service/common_decoder.cc     const cmd::Noop& args) {
args              177 gpu/command_buffer/service/common_decoder.cc     const cmd::SetToken& args) {
args              178 gpu/command_buffer/service/common_decoder.cc   engine_->set_token(args.token);
args              184 gpu/command_buffer/service/common_decoder.cc     const cmd::SetBucketSize& args) {
args              185 gpu/command_buffer/service/common_decoder.cc   uint32 bucket_id = args.bucket_id;
args              186 gpu/command_buffer/service/common_decoder.cc   uint32 size = args.size;
args              195 gpu/command_buffer/service/common_decoder.cc     const cmd::SetBucketData& args) {
args              196 gpu/command_buffer/service/common_decoder.cc   uint32 bucket_id = args.bucket_id;
args              197 gpu/command_buffer/service/common_decoder.cc   uint32 offset = args.offset;
args              198 gpu/command_buffer/service/common_decoder.cc   uint32 size = args.size;
args              200 gpu/command_buffer/service/common_decoder.cc       args.shared_memory_id, args.shared_memory_offset, size);
args              217 gpu/command_buffer/service/common_decoder.cc     const cmd::SetBucketDataImmediate& args) {
args              218 gpu/command_buffer/service/common_decoder.cc   const void* data = GetImmediateDataAs<const void*>(args);
args              219 gpu/command_buffer/service/common_decoder.cc   uint32 bucket_id = args.bucket_id;
args              220 gpu/command_buffer/service/common_decoder.cc   uint32 offset = args.offset;
args              221 gpu/command_buffer/service/common_decoder.cc   uint32 size = args.size;
args              237 gpu/command_buffer/service/common_decoder.cc     const cmd::GetBucketStart& args) {
args              238 gpu/command_buffer/service/common_decoder.cc   uint32 bucket_id = args.bucket_id;
args              240 gpu/command_buffer/service/common_decoder.cc       args.result_memory_id, args.result_memory_offset, sizeof(*result));
args              241 gpu/command_buffer/service/common_decoder.cc   int32 data_memory_id = args.data_memory_id;
args              242 gpu/command_buffer/service/common_decoder.cc   uint32 data_memory_offset = args.data_memory_offset;
args              243 gpu/command_buffer/service/common_decoder.cc   uint32 data_memory_size = args.data_memory_size;
args              247 gpu/command_buffer/service/common_decoder.cc         args.data_memory_id, args.data_memory_offset, args.data_memory_size);
args              274 gpu/command_buffer/service/common_decoder.cc     const cmd::GetBucketData& args) {
args              275 gpu/command_buffer/service/common_decoder.cc   uint32 bucket_id = args.bucket_id;
args              276 gpu/command_buffer/service/common_decoder.cc   uint32 offset = args.offset;
args              277 gpu/command_buffer/service/common_decoder.cc   uint32 size = args.size;
args              279 gpu/command_buffer/service/common_decoder.cc       args.shared_memory_id, args.shared_memory_offset, size);
args              160 gpu/command_buffer/service/common_decoder.h        const cmd::name& args);                           \
args              578 gpu/command_buffer/service/gles2_cmd_decoder.cc                           const void* args) OVERRIDE;
args             1632 gpu/command_buffer/service/gles2_cmd_decoder.cc        const cmds::name& args);        \
args             8220 gpu/command_buffer/service/gles2_cmd_decoder.cc   TextureManager::DoTextImage2DArguments args = {
args             8224 gpu/command_buffer/service/gles2_cmd_decoder.cc       &texture_state_, &state_, &framebuffer_state_, args);
args             10491 gpu/command_buffer/service/gles2_cmd_decoder.cc   TextureManager::DoTextImage2DArguments args = {
args             10497 gpu/command_buffer/service/gles2_cmd_decoder.cc       &state_, "glAsyncTexImage2DCHROMIUM", args, &texture_ref)) {
args               25 gpu/command_buffer/service/mocks.cc   const cmd::SetToken* args =
args               27 gpu/command_buffer/service/mocks.cc   engine_->set_token(args->token);
args               35 gpu/command_buffer/service/mocks.h     IsArgs(unsigned int arg_count, const void* args)
args               37 gpu/command_buffer/service/mocks.h           args_(static_cast<CommandBufferEntry*>(const_cast<void*>(args))) {
args               41 gpu/command_buffer/service/mocks.h       const CommandBufferEntry* args =
args               44 gpu/command_buffer/service/mocks.h         if (args[i].value_uint32 != args_[i].value_uint32) return false;
args             1426 gpu/command_buffer/service/texture_manager.cc     const DoTextImage2DArguments& args,
args             1430 gpu/command_buffer/service/texture_manager.cc   if (!validators->texture_target.IsValid(args.target)) {
args             1432 gpu/command_buffer/service/texture_manager.cc         error_state, function_name, args.target, "target");
args             1435 gpu/command_buffer/service/texture_manager.cc   if (!validators->texture_internal_format.IsValid(args.internal_format)) {
args             1437 gpu/command_buffer/service/texture_manager.cc         error_state, function_name, args.internal_format,
args             1442 gpu/command_buffer/service/texture_manager.cc       error_state, function_name, args.format, args.type,
args             1443 gpu/command_buffer/service/texture_manager.cc       args.internal_format, args.level)) {
args             1446 gpu/command_buffer/service/texture_manager.cc   if (!ValidForTarget(args.target, args.level, args.width, args.height, 1) ||
args             1447 gpu/command_buffer/service/texture_manager.cc       args.border != 0) {
args             1453 gpu/command_buffer/service/texture_manager.cc   if ((GLES2Util::GetChannelsForFormat(args.format) &
args             1454 gpu/command_buffer/service/texture_manager.cc        (GLES2Util::kDepth | GLES2Util::kStencil)) != 0 && args.pixels) {
args             1461 gpu/command_buffer/service/texture_manager.cc   TextureRef* local_texture_ref = GetTextureInfoForTarget(state, args.target);
args             1478 gpu/command_buffer/service/texture_manager.cc   if (!memory_tracker_managed_->EnsureGPUMemoryAvailable(args.pixels_size)) {
args             1493 gpu/command_buffer/service/texture_manager.cc     const DoTextImage2DArguments& args) {
args             1495 gpu/command_buffer/service/texture_manager.cc   if (!ValidateTexImage2D(state, "glTexImage2D", args, &texture_ref)) {
args             1500 gpu/command_buffer/service/texture_manager.cc                texture_ref, args);
args             1508 gpu/command_buffer/service/texture_manager.cc     const DoTextImage2DArguments& args) {
args             1515 gpu/command_buffer/service/texture_manager.cc       texture->GetLevelSize(args.target, args.level, &tex_width, &tex_height) &&
args             1516 gpu/command_buffer/service/texture_manager.cc       texture->GetLevelType(args.target, args.level, &tex_type, &tex_format) &&
args             1517 gpu/command_buffer/service/texture_manager.cc       args.width == tex_width && args.height == tex_height &&
args             1518 gpu/command_buffer/service/texture_manager.cc       args.type == tex_type && args.format == tex_format;
args             1520 gpu/command_buffer/service/texture_manager.cc   if (level_is_same && !args.pixels) {
args             1524 gpu/command_buffer/service/texture_manager.cc         args.target, args.level, args.internal_format, args.width, args.height,
args             1525 gpu/command_buffer/service/texture_manager.cc         1, args.border, args.format, args.type, false);
args             1535 gpu/command_buffer/service/texture_manager.cc       level_is_same && args.pixels) {
args             1538 gpu/command_buffer/service/texture_manager.cc       glTexSubImage2D(args.target, args.level, 0, 0, args.width, args.height,
args             1539 gpu/command_buffer/service/texture_manager.cc                       args.format, args.type, args.pixels);
args             1541 gpu/command_buffer/service/texture_manager.cc     SetLevelCleared(texture_ref, args.target, args.level, true);
args             1550 gpu/command_buffer/service/texture_manager.cc         args.target, args.level, args.internal_format, args.width, args.height,
args             1551 gpu/command_buffer/service/texture_manager.cc         args.border, args.format, args.type, args.pixels);
args             1557 gpu/command_buffer/service/texture_manager.cc         args.target, args.level, args.internal_format, args.width, args.height,
args             1558 gpu/command_buffer/service/texture_manager.cc         1, args.border, args.format, args.type, args.pixels != NULL);
args              707 gpu/command_buffer/service/texture_manager.h     const DoTextImage2DArguments& args,
args              716 gpu/command_buffer/service/texture_manager.h     const DoTextImage2DArguments& args);
args              748 gpu/command_buffer/service/texture_manager.h     const DoTextImage2DArguments& args);
args               28 media/base/gmock_callback_support.h   ::std::tr1::get<k>(args).Run();
args               60 media/base/gmock_callback_support.h   return ::std::tr1::get<k>(args).Run();
args               66 media/base/gmock_callback_support.h   return ::std::tr1::get<k>(args).Run(p0);
args               72 media/base/gmock_callback_support.h   return ::std::tr1::get<k>(args).Run(p0, p1);
args               78 media/base/gmock_callback_support.h   return ::std::tr1::get<k>(args).Run(p0, p1, p2);
args               84 media/base/gmock_callback_support.h   return ::std::tr1::get<k>(args).Run(p0, p1, p2, p3);
args               90 media/base/gmock_callback_support.h   return ::std::tr1::get<k>(args).Run(p0, p1, p2, p3, p4);
args               96 media/base/gmock_callback_support.h   return ::std::tr1::get<k>(args).Run(p0, p1, p2, p3, p4, p5);
args              102 media/base/gmock_callback_support.h   return ::std::tr1::get<k>(args).Run(p0, p1, p2, p3, p4, p5, p6);
args               49 mojo/apps/js/bindings/gl/context.cc void Context::CompileShader(const gin::Arguments& args, GLuint shader) {
args               54 mojo/apps/js/bindings/gl/context.cc     args.ThrowTypeError(std::string("Could not compile shader: ") +
args               41 mojo/apps/js/bindings/gl/context.h   static void CompileShader(const gin::Arguments& args, GLuint shader);
args               26 mojo/apps/js/bindings/gl/module.cc     const gin::Arguments& args,
args               29 mojo/apps/js/bindings/gl/module.cc   return Context::Create(args.isolate(), handle, context_lost_callback);
args               43 mojo/apps/js/mojo_runner_delegate.cc   v8::Handle<v8::Value> args[] = {
args               45 mojo/apps/js/mojo_runner_delegate.cc   runner->Call(start, runner->global(), 1, args);
args               46 mojo/bindings/js/core.cc gin::Dictionary CreateMessagePipe(const gin::Arguments& args) {
args               52 mojo/bindings/js/core.cc   gin::Dictionary dictionary = gin::Dictionary::CreateEmpty(args.isolate());
args               81 mojo/bindings/js/core.cc gin::Dictionary ReadMessage(const gin::Arguments& args,
args               89 mojo/bindings/js/core.cc     gin::Dictionary dictionary = gin::Dictionary::CreateEmpty(args.isolate());
args               95 mojo/bindings/js/core.cc       v8::ArrayBuffer::New(args.isolate(), num_bytes);
args               99 mojo/bindings/js/core.cc   ConvertFromV8(args.isolate(), array_buffer, &buffer);
args              113 mojo/bindings/js/core.cc   gin::Dictionary dictionary = gin::Dictionary::CreateEmpty(args.isolate());
args              120 mojo/bindings/js/core.cc gin::Dictionary CreateDataPipe(const gin::Arguments& args,
args              122 mojo/bindings/js/core.cc   gin::Dictionary dictionary = gin::Dictionary::CreateEmpty(args.isolate());
args              130 mojo/bindings/js/core.cc     gin::Dictionary options_dict(args.isolate(), options_value->ToObject());
args              158 mojo/bindings/js/core.cc gin::Dictionary WriteData(const gin::Arguments& args,
args              165 mojo/bindings/js/core.cc   gin::Dictionary dictionary = gin::Dictionary::CreateEmpty(args.isolate());
args              171 mojo/bindings/js/core.cc gin::Dictionary ReadData(const gin::Arguments& args,
args              178 mojo/bindings/js/core.cc     gin::Dictionary dictionary = gin::Dictionary::CreateEmpty(args.isolate());
args              184 mojo/bindings/js/core.cc       v8::ArrayBuffer::New(args.isolate(), num_bytes);
args              186 mojo/bindings/js/core.cc   ConvertFromV8(args.isolate(), array_buffer, &buffer);
args              192 mojo/bindings/js/core.cc   gin::Dictionary dictionary = gin::Dictionary::CreateEmpty(args.isolate());
args               25 mojo/bindings/js/support.cc WaitingCallback* AsyncWait(const gin::Arguments& args, mojo::Handle handle,
args               29 mojo/bindings/js/support.cc       WaitingCallback::Create(args.isolate(), callback);
args               58 mojo/bindings/js/waiting_callback.cc   v8::Handle<v8::Value> args[] = { gin::ConvertToV8(isolate, result) };
args               59 mojo/bindings/js/waiting_callback.cc   runner_->Call(callback, runner_->global(), 1, args);
args               23 mojo/shell/run.cc   CommandLine::StringVector args = command_line.GetArgs();
args               25 mojo/shell/run.cc   if (args.empty()) {
args               30 mojo/shell/run.cc   for (CommandLine::StringVector::const_iterator it = args.begin();
args               31 mojo/shell/run.cc        it != args.end(); ++it) {
args              335 native_client_sdk/src/examples/api/mouse_lock/mouse_lock.cc   va_list args;
args              336 native_client_sdk/src/examples/api/mouse_lock/mouse_lock.cc   va_start(args, format);
args              338 native_client_sdk/src/examples/api/mouse_lock/mouse_lock.cc   vsnprintf(buf, sizeof(buf) - 1, format, args);
args              340 native_client_sdk/src/examples/api/mouse_lock/mouse_lock.cc   va_end(args);
args              377 native_client_sdk/src/examples/demo/drive/drive.cc   va_list args;
args              378 native_client_sdk/src/examples/demo/drive/drive.cc   va_start(args, format);
args              379 native_client_sdk/src/examples/demo/drive/drive.cc   vsnprintf(&buffer[0], kBufferSize, format, args);
args               89 native_client_sdk/src/examples/demo/nacl_io/nacl_io_demo.c char* VprintfToNewString(const char* format, va_list args) {
args               95 native_client_sdk/src/examples/demo/nacl_io/nacl_io_demo.c   va_copy(args_copy, args);
args               96 native_client_sdk/src/examples/demo/nacl_io/nacl_io_demo.c   length = vsnprintf(NULL, 0, format, args);
args              113 native_client_sdk/src/examples/demo/nacl_io/nacl_io_demo.c   va_list args;
args              115 native_client_sdk/src/examples/demo/nacl_io/nacl_io_demo.c   va_start(args, format);
args              116 native_client_sdk/src/examples/demo/nacl_io/nacl_io_demo.c   result = VprintfToNewString(format, args);
args              117 native_client_sdk/src/examples/demo/nacl_io/nacl_io_demo.c   va_end(args);
args              130 native_client_sdk/src/examples/demo/nacl_io/nacl_io_demo.c     va_list args;
args              133 native_client_sdk/src/examples/demo/nacl_io/nacl_io_demo.c     va_start(args, format);
args              134 native_client_sdk/src/examples/demo/nacl_io/nacl_io_demo.c     string = VprintfToNewString(format, args);
args              135 native_client_sdk/src/examples/demo/nacl_io/nacl_io_demo.c     va_end(args);
args               12 native_client_sdk/src/examples/demo/nacl_io/nacl_io_demo.h char* VprintfToNewString(const char* format, va_list args);
args               21 native_client_sdk/src/libraries/error_handling/string_stream.c int ssvprintf(sstream_t* stream, const char* format, va_list args) {
args               26 native_client_sdk/src/libraries/error_handling/string_stream.c   va_copy(hold, args);
args               27 native_client_sdk/src/libraries/error_handling/string_stream.c   len = vsnprintf(NULL, 0, format, args);
args               44 native_client_sdk/src/libraries/error_handling/string_stream.c   va_list args;
args               45 native_client_sdk/src/libraries/error_handling/string_stream.c   va_start(args, format);
args               46 native_client_sdk/src/libraries/error_handling/string_stream.c   out = ssvprintf(stream, format, args);
args               47 native_client_sdk/src/libraries/error_handling/string_stream.c   va_end(args);
args               27 native_client_sdk/src/libraries/error_handling/string_stream.h int ssvprintf(sstream_t* sstream, const char* format, va_list args);
args               15 native_client_sdk/src/libraries/nacl_io/dbgprint.c   va_list args;
args               26 native_client_sdk/src/libraries/nacl_io/dbgprint.c   va_start(args, format);
args               27 native_client_sdk/src/libraries/nacl_io/dbgprint.c   int len = vsnprintf(NULL, 0, format, args);
args               28 native_client_sdk/src/libraries/nacl_io/dbgprint.c   va_end(args);
args               31 native_client_sdk/src/libraries/nacl_io/dbgprint.c   va_start(args, format);
args               32 native_client_sdk/src/libraries/nacl_io/dbgprint.c   vsnprintf(output, len + 1, format, args);
args               33 native_client_sdk/src/libraries/nacl_io/dbgprint.c   va_end(args);
args              313 native_client_sdk/src/libraries/nacl_io/devfs/dev_fs.cc Error DevFs::Init(const FsInitArgs& args) {
args              314 native_client_sdk/src/libraries/nacl_io/devfs/dev_fs.cc   Error error = Filesystem::Init(args);
args               28 native_client_sdk/src/libraries/nacl_io/devfs/dev_fs.h   virtual Error Init(const FsInitArgs& args);
args               65 native_client_sdk/src/libraries/nacl_io/devfs/jspipe_node.cc Error JSPipeNode::VIoctl(int request, va_list args) {
args               72 native_client_sdk/src/libraries/nacl_io/devfs/jspipe_node.cc       const char* new_name = va_arg(args, char*);
args               83 native_client_sdk/src/libraries/nacl_io/devfs/jspipe_node.cc           va_arg(args, struct tioc_nacl_input_string*);
args               18 native_client_sdk/src/libraries/nacl_io/devfs/jspipe_node.h   virtual Error VIoctl(int request, va_list args);
args              233 native_client_sdk/src/libraries/nacl_io/devfs/tty_node.cc Error TtyNode::VIoctl(int request, va_list args) {
args              236 native_client_sdk/src/libraries/nacl_io/devfs/tty_node.cc       struct tioc_nacl_output* arg = va_arg(args, struct tioc_nacl_output*);
args              251 native_client_sdk/src/libraries/nacl_io/devfs/tty_node.cc           va_arg(args, struct tioc_nacl_input_string*);
args              255 native_client_sdk/src/libraries/nacl_io/devfs/tty_node.cc       struct winsize* size = va_arg(args, struct winsize*);
args              274 native_client_sdk/src/libraries/nacl_io/devfs/tty_node.cc       struct winsize* size = va_arg(args, struct winsize*);
args               25 native_client_sdk/src/libraries/nacl_io/devfs/tty_node.h   virtual Error VIoctl(int request, va_list args);
args               28 native_client_sdk/src/libraries/nacl_io/filesystem.cc Error Filesystem::Init(const FsInitArgs& args) {
args               29 native_client_sdk/src/libraries/nacl_io/filesystem.cc   dev_ = args.dev;
args               30 native_client_sdk/src/libraries/nacl_io/filesystem.cc   ppapi_ = args.ppapi;
args               56 native_client_sdk/src/libraries/nacl_io/filesystem.h   virtual Error Init(const FsInitArgs& args);
args               22 native_client_sdk/src/libraries/nacl_io/fs_factory.h   virtual Error CreateFilesystem(const FsInitArgs& args,
args               34 native_client_sdk/src/libraries/nacl_io/fusefs/fuse_fs.cc Error FuseFs::Init(const FsInitArgs& args) {
args               35 native_client_sdk/src/libraries/nacl_io/fusefs/fuse_fs.cc   Error error = Filesystem::Init(args);
args               39 native_client_sdk/src/libraries/nacl_io/fusefs/fuse_fs.cc   fuse_ops_ = args.fuse_ops;
args              239 native_client_sdk/src/libraries/nacl_io/fusefs/fuse_fs.cc Error FuseFsNode::VIoctl(int request, va_list args) {
args               20 native_client_sdk/src/libraries/nacl_io/fusefs/fuse_fs.h   virtual Error Init(const FsInitArgs& args);
args               51 native_client_sdk/src/libraries/nacl_io/fusefs/fuse_fs.h   virtual Error VIoctl(int request, va_list args);
args               13 native_client_sdk/src/libraries/nacl_io/fusefs/fuse_fs_factory.cc Error FuseFsFactory::CreateFilesystem(const FsInitArgs& args,
args               15 native_client_sdk/src/libraries/nacl_io/fusefs/fuse_fs_factory.cc   FsInitArgs args_copy(args);
args               18 native_client_sdk/src/libraries/nacl_io/fusefs/fuse_fs_factory.h   virtual Error CreateFilesystem(const FsInitArgs& args,
args              140 native_client_sdk/src/libraries/nacl_io/html5fs/html5_fs.cc Error Html5Fs::Init(const FsInitArgs& args) {
args              141 native_client_sdk/src/libraries/nacl_io/html5fs/html5_fs.cc   Error error = Filesystem::Init(args);
args              145 native_client_sdk/src/libraries/nacl_io/html5fs/html5_fs.cc   if (!args.ppapi)
args              153 native_client_sdk/src/libraries/nacl_io/html5fs/html5_fs.cc   for (StringMap_t::const_iterator iter = args.string_map.begin();
args              154 native_client_sdk/src/libraries/nacl_io/html5fs/html5_fs.cc        iter != args.string_map.end();
args              168 native_client_sdk/src/libraries/nacl_io/html5fs/html5_fs.cc   filesystem_resource_ = args.ppapi->GetFileSystemInterface()->Create(
args              176 native_client_sdk/src/libraries/nacl_io/html5fs/html5_fs.cc   bool main_thread = args.ppapi->GetCoreInterface()->IsMainThread();
args              182 native_client_sdk/src/libraries/nacl_io/html5fs/html5_fs.cc   int32_t result = args.ppapi->GetFileSystemInterface()->Open(
args               34 native_client_sdk/src/libraries/nacl_io/html5fs/html5_fs.h   virtual Error Init(const FsInitArgs& args);
args              205 native_client_sdk/src/libraries/nacl_io/httpfs/http_fs.cc Error HttpFs::Init(const FsInitArgs& args) {
args              206 native_client_sdk/src/libraries/nacl_io/httpfs/http_fs.cc   Error error = Filesystem::Init(args);
args              211 native_client_sdk/src/libraries/nacl_io/httpfs/http_fs.cc   for (StringMap_t::const_iterator iter = args.string_map.begin();
args              212 native_client_sdk/src/libraries/nacl_io/httpfs/http_fs.cc        iter != args.string_map.end();
args               36 native_client_sdk/src/libraries/nacl_io/httpfs/http_fs.h   virtual Error Init(const FsInitArgs& args);
args              132 native_client_sdk/src/libraries/nacl_io/kernel_handle.cc Error KernelHandle::VFcntl(int request, int* result, va_list args) {
args              140 native_client_sdk/src/libraries/nacl_io/kernel_handle.cc       int flags = va_arg(args, int);
args               53 native_client_sdk/src/libraries/nacl_io/kernel_handle.h   Error VFcntl(int request, int* result, va_list args);
args              320 native_client_sdk/src/libraries/nacl_io/kernel_intercept.cc int ki_fcntl(int d, int request, va_list args) {
args              322 native_client_sdk/src/libraries/nacl_io/kernel_intercept.cc   return s_state.kp->fcntl(d, request, args);
args              325 native_client_sdk/src/libraries/nacl_io/kernel_intercept.cc int ki_ioctl(int d, int request, va_list args) {
args              327 native_client_sdk/src/libraries/nacl_io/kernel_intercept.cc   return s_state.kp->ioctl(d, request, args);
args              111 native_client_sdk/src/libraries/nacl_io/kernel_intercept.h int ki_fcntl(int d, int request, va_list args);
args              112 native_client_sdk/src/libraries/nacl_io/kernel_intercept.h int ki_ioctl(int d, int request, va_list args);
args              115 native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc   FsInitArgs args;
args              116 native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc   args.dev = dev_++;
args              117 native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc   args.ppapi = ppapi_;
args              119 native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc   result = stream_mount_->Init(args);
args              423 native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc   FsInitArgs args;
args              424 native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc   args.dev = dev_++;
args              425 native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc   args.string_map = smap;
args              426 native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc   args.ppapi = ppapi_;
args              429 native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc   Error error = factory->second->CreateFilesystem(args, &fs);
args              606 native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc int KernelProxy::ioctl(int fd, int request, va_list args) {
args              614 native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc   error = handle->node()->VIoctl(request, args);
args              741 native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc int KernelProxy::fcntl(int fd, int request, va_list args) {
args              758 native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc       int flags = va_arg(args, int);
args              776 native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc   error = handle->VFcntl(request, &rtn, args);
args              110 native_client_sdk/src/libraries/nacl_io/kernel_proxy.h   virtual int fcntl(int fd, int request, va_list args);
args              118 native_client_sdk/src/libraries/nacl_io/kernel_proxy.h   virtual int ioctl(int fd, int request, va_list args);
args               26 native_client_sdk/src/libraries/nacl_io/memfs/mem_fs.cc Error MemFs::Init(const FsInitArgs& args) {
args               27 native_client_sdk/src/libraries/nacl_io/memfs/mem_fs.cc   Error error = Filesystem::Init(args);
args               18 native_client_sdk/src/libraries/nacl_io/memfs/mem_fs.h   virtual Error Init(const FsInitArgs& args);
args              100 native_client_sdk/src/libraries/nacl_io/node.cc Error Node::VIoctl(int request, va_list args) { return EINVAL; }
args               69 native_client_sdk/src/libraries/nacl_io/node.h   virtual Error VIoctl(int request, va_list args);
args              127 native_client_sdk/src/libraries/nacl_io/passthroughfs/passthrough_fs.cc Error PassthroughFs::Init(const FsInitArgs& args) {
args              128 native_client_sdk/src/libraries/nacl_io/passthroughfs/passthrough_fs.cc   return Filesystem::Init(args);
args               18 native_client_sdk/src/libraries/nacl_io/passthroughfs/passthrough_fs.h   virtual Error Init(const FsInitArgs& args);
args               16 native_client_sdk/src/libraries/nacl_io/typed_fs_factory.h   virtual Error CreateFilesystem(const FsInitArgs& args,
args               19 native_client_sdk/src/libraries/nacl_io/typed_fs_factory.h     Error error = fs->Init(args);
args              303 native_client_sdk/src/libraries/ppapi_simple/ps_instance.cc void PSInstance::VALog(Verbosity verbosity, const char *fmt, va_list args) {
args              306 native_client_sdk/src/libraries/ppapi_simple/ps_instance.cc     vfprintf(stderr, fmt, args);
args              132 native_client_sdk/src/libraries/ppapi_simple/ps_instance.h   void VALog(Verbosity verbosity, const char *fmt, va_list args);
args              276 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_cond_wait.c ptw32_cond_wait_cleanup (void *args)
args              279 native_client_sdk/src/libraries/third_party/pthreads-win32/pthread_cond_wait.c     (ptw32_cond_wait_cleanup_args_t *) args;
args               56 native_client_sdk/src/libraries/third_party/pthreads-win32/sem_timedwait.c ptw32_sem_timedwait_cleanup (void * args)
args               58 native_client_sdk/src/libraries/third_party/pthreads-win32/sem_timedwait.c   sem_timedwait_cleanup_args_t * a = (sem_timedwait_cleanup_args_t *)args;
args              417 native_client_sdk/src/libraries/xray/xray.c   va_list args;
args              425 native_client_sdk/src/libraries/xray/xray.c         va_start(args, fmt);
args              426 native_client_sdk/src/libraries/xray/xray.c         r = vsnprintf(buffer, sizeof(buffer), fmt, args);
args              427 native_client_sdk/src/libraries/xray/xray.c         va_end(args);
args              449 native_client_sdk/src/libraries/xray/xray.c   va_list args;
args              457 native_client_sdk/src/libraries/xray/xray.c           va_start(args, fmt);
args              458 native_client_sdk/src/libraries/xray/xray.c           r = vsnprintf(buffer, sizeof(buffer), fmt, args);
args              459 native_client_sdk/src/libraries/xray/xray.c           va_end(args);
args               18 native_client_sdk/src/tests/nacl_io_test/dev_fs_for_testing.h     nacl_io::FsInitArgs args(1);
args               19 native_client_sdk/src/tests/nacl_io_test/dev_fs_for_testing.h     args.ppapi = &pepper_;
args               20 native_client_sdk/src/tests/nacl_io_test/dev_fs_for_testing.h     Init(args);
args               27 native_client_sdk/src/tests/nacl_io_test/filesystem_test.cc     FsInitArgs args(1);
args               28 native_client_sdk/src/tests/nacl_io_test/filesystem_test.cc     EXPECT_EQ(0, Init(args));
args               25 native_client_sdk/src/tests/nacl_io_test/fuse_fs_test.cc     FsInitArgs args;
args               26 native_client_sdk/src/tests/nacl_io_test/fuse_fs_test.cc     args.fuse_ops = fuse_ops;
args               27 native_client_sdk/src/tests/nacl_io_test/fuse_fs_test.cc     EXPECT_EQ(0, Init(args));
args               44 native_client_sdk/src/tests/nacl_io_test/html5_fs_test.cc     FsInitArgs args;
args               45 native_client_sdk/src/tests/nacl_io_test/html5_fs_test.cc     args.string_map = string_map;
args               46 native_client_sdk/src/tests/nacl_io_test/html5_fs_test.cc     args.ppapi = ppapi;
args               47 native_client_sdk/src/tests/nacl_io_test/html5_fs_test.cc     Error error = Init(args);
args               29 native_client_sdk/src/tests/nacl_io_test/http_fs_test.cc     FsInitArgs args(1);
args               30 native_client_sdk/src/tests/nacl_io_test/http_fs_test.cc     args.string_map = map;
args               31 native_client_sdk/src/tests/nacl_io_test/http_fs_test.cc     args.ppapi = ppapi;
args               32 native_client_sdk/src/tests/nacl_io_test/http_fs_test.cc     EXPECT_EQ(0, Init(args));
args              204 native_client_sdk/src/tests/nacl_io_test/http_fs_test.cc   StringMap_t args;
args              205 native_client_sdk/src/tests/nacl_io_test/http_fs_test.cc   HttpFsForTesting fs(args, NULL);
args              216 native_client_sdk/src/tests/nacl_io_test/http_fs_test.cc   StringMap_t args;
args              217 native_client_sdk/src/tests/nacl_io_test/http_fs_test.cc   HttpFsForTesting fs(args, NULL);
args              230 native_client_sdk/src/tests/nacl_io_test/http_fs_test.cc   StringMap_t args;
args              231 native_client_sdk/src/tests/nacl_io_test/http_fs_test.cc   HttpFsForTesting fs(args, NULL);
args              243 native_client_sdk/src/tests/nacl_io_test/http_fs_test.cc   StringMap_t args;
args              244 native_client_sdk/src/tests/nacl_io_test/http_fs_test.cc   HttpFsForTesting fs(args, NULL);
args              256 native_client_sdk/src/tests/nacl_io_test/http_fs_test.cc   StringMap_t args;
args              259 native_client_sdk/src/tests/nacl_io_test/http_fs_test.cc   HttpFsForTesting fs(args, NULL);
args              541 native_client_sdk/src/tests/nacl_io_test/kernel_proxy_test.cc   virtual Error Init(const FsInitArgs& args) {
args              542 native_client_sdk/src/tests/nacl_io_test/kernel_proxy_test.cc     g_string_map = args.string_map;
args              705 native_client_sdk/src/tests/nacl_io_test/kernel_proxy_test.cc   virtual Error CreateFilesystem(const FsInitArgs& args,
args               35 native_client_sdk/src/tests/nacl_io_test/mem_fs_node_test.cc     FsInitArgs args(1);
args               36 native_client_sdk/src/tests/nacl_io_test/mem_fs_node_test.cc     EXPECT_EQ(0, Init(args));
args               15 native_client_sdk/src/tests/nacl_io_test/mock_util.h   PP_CompletionCallback callback = std::tr1::get<k>(args);
args               17 net/disk_cache/simple/simple_histogram_macros.h #define SIMPLE_CACHE_THUNK(uma_type, args) UMA_HISTOGRAM_##uma_type args
args              210 net/proxy/proxy_resolver_v8.cc bool GetHostnameArgument(const v8::FunctionCallbackInfo<v8::Value>& args,
args              213 net/proxy/proxy_resolver_v8.cc   if (args.Length() == 0 || args[0].IsEmpty() || !args[0]->IsString())
args              216 net/proxy/proxy_resolver_v8.cc   const base::string16 hostname_utf16 = V8StringToUTF16(args[0]->ToString());
args              554 net/proxy/proxy_resolver_v8.cc   static void AlertCallback(const v8::FunctionCallbackInfo<v8::Value>& args) {
args              556 net/proxy/proxy_resolver_v8.cc         static_cast<Context*>(v8::External::Cast(*args.Data())->Value());
args              561 net/proxy/proxy_resolver_v8.cc     if (args.Length() == 0) {
args              564 net/proxy/proxy_resolver_v8.cc       if (!V8ObjectToUTF16String(args[0], &message, args.GetIsolate()))
args              573 net/proxy/proxy_resolver_v8.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args              574 net/proxy/proxy_resolver_v8.cc     DnsResolveCallbackHelper(args, JSBindings::MY_IP_ADDRESS);
args              579 net/proxy/proxy_resolver_v8.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args              580 net/proxy/proxy_resolver_v8.cc     DnsResolveCallbackHelper(args, JSBindings::MY_IP_ADDRESS_EX);
args              585 net/proxy/proxy_resolver_v8.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args              586 net/proxy/proxy_resolver_v8.cc     DnsResolveCallbackHelper(args, JSBindings::DNS_RESOLVE);
args              591 net/proxy/proxy_resolver_v8.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args              592 net/proxy/proxy_resolver_v8.cc     DnsResolveCallbackHelper(args, JSBindings::DNS_RESOLVE_EX);
args              598 net/proxy/proxy_resolver_v8.cc       const v8::FunctionCallbackInfo<v8::Value>& args,
args              601 net/proxy/proxy_resolver_v8.cc         static_cast<Context*>(v8::External::Cast(*args.Data())->Value());
args              607 net/proxy/proxy_resolver_v8.cc       if (!GetHostnameArgument(args, &hostname)) {
args              609 net/proxy/proxy_resolver_v8.cc           args.GetReturnValue().SetNull();
args              619 net/proxy/proxy_resolver_v8.cc       v8::Unlocker unlocker(args.GetIsolate());
args              625 net/proxy/proxy_resolver_v8.cc       v8::V8::TerminateExecution(args.GetIsolate());
args              628 net/proxy/proxy_resolver_v8.cc       args.GetReturnValue().Set(
args              629 net/proxy/proxy_resolver_v8.cc           ASCIIStringToV8String(args.GetIsolate(), result));
args              636 net/proxy/proxy_resolver_v8.cc         args.GetReturnValue().SetNull();
args              639 net/proxy/proxy_resolver_v8.cc         args.GetReturnValue().SetEmptyString();
args              642 net/proxy/proxy_resolver_v8.cc         args.GetReturnValue().Set(
args              643 net/proxy/proxy_resolver_v8.cc             ASCIILiteralToV8String(args.GetIsolate(), "127.0.0.1"));
args              646 net/proxy/proxy_resolver_v8.cc         args.GetReturnValue().SetEmptyString();
args              655 net/proxy/proxy_resolver_v8.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args              657 net/proxy/proxy_resolver_v8.cc     if (args.Length() == 0 || args[0].IsEmpty() || !args[0]->IsString()) {
args              658 net/proxy/proxy_resolver_v8.cc       args.GetReturnValue().SetNull();
args              662 net/proxy/proxy_resolver_v8.cc     std::string ip_address_list = V8StringToUTF8(args[0]->ToString());
args              664 net/proxy/proxy_resolver_v8.cc       args.GetReturnValue().SetNull();
args              670 net/proxy/proxy_resolver_v8.cc       args.GetReturnValue().Set(false);
args              673 net/proxy/proxy_resolver_v8.cc     args.GetReturnValue().Set(
args              674 net/proxy/proxy_resolver_v8.cc         ASCIIStringToV8String(args.GetIsolate(), sorted_ip_address_list));
args              679 net/proxy/proxy_resolver_v8.cc       const v8::FunctionCallbackInfo<v8::Value>& args) {
args              681 net/proxy/proxy_resolver_v8.cc     if (args.Length() < 2 || args[0].IsEmpty() || !args[0]->IsString() ||
args              682 net/proxy/proxy_resolver_v8.cc         args[1].IsEmpty() || !args[1]->IsString()) {
args              683 net/proxy/proxy_resolver_v8.cc       args.GetReturnValue().SetNull();
args              687 net/proxy/proxy_resolver_v8.cc     std::string ip_address = V8StringToUTF8(args[0]->ToString());
args              689 net/proxy/proxy_resolver_v8.cc       args.GetReturnValue().Set(false);
args              692 net/proxy/proxy_resolver_v8.cc     std::string ip_prefix = V8StringToUTF8(args[1]->ToString());
args              694 net/proxy/proxy_resolver_v8.cc       args.GetReturnValue().Set(false);
args              697 net/proxy/proxy_resolver_v8.cc     args.GetReturnValue().Set(IsInNetEx(ip_address, ip_prefix));
args              232 net/third_party/nss/ssl/ssltrace.c     va_list args;
args              235 net/third_party/nss/ssl/ssltrace.c 	va_start(args, format);
args              236 net/third_party/nss/ssl/ssltrace.c 	PR_vsnprintf(buf, sizeof(buf), format, args);
args              237 net/third_party/nss/ssl/ssltrace.c 	va_end(args);
args              216 net/tools/quic/quic_client.cc     const CommandLine::StringVector& args) {
args              217 net/tools/quic/quic_client.cc   for (size_t i = 0; i < args.size(); ++i) {
args              219 net/tools/quic/quic_client.cc     headers.SetRequestFirstlineFromStringPieces("GET", args[i], "HTTP/1.1");
args               88 net/tools/quic/quic_client.h       base::CommandLine::StringVector& args);
args              107 ppapi/cpp/dev/scriptable_object_deprecated.cc   std::vector<Var> args;
args              108 ppapi/cpp/dev/scriptable_object_deprecated.cc   ArgListToVector(argc, argv, &args);
args              110 ppapi/cpp/dev/scriptable_object_deprecated.cc       Var(Var::DontManage(), method_name), args, e.Get()).Detach();
args              119 ppapi/cpp/dev/scriptable_object_deprecated.cc   std::vector<Var> args;
args              120 ppapi/cpp/dev/scriptable_object_deprecated.cc   ArgListToVector(argc, argv, &args);
args              122 ppapi/cpp/dev/scriptable_object_deprecated.cc       args, e.Get()).Detach();
args               70 ppapi/cpp/dev/scriptable_object_deprecated.h                    const std::vector<Var>& args,
args               75 ppapi/cpp/dev/scriptable_object_deprecated.h   virtual Var Construct(const std::vector<Var>& args,
args              113 ppapi/cpp/private/var_private.cc     std::vector<PP_Var> args;
args              114 ppapi/cpp/private/var_private.cc     args.reserve(argc);
args              116 ppapi/cpp/private/var_private.cc       args.push_back(argv[i].pp_var());
args              118 ppapi/cpp/private/var_private.cc         var_, method_name.pp_var(), argc, &args[0],
args              133 ppapi/cpp/private/var_private.cc     std::vector<PP_Var> args;
args              134 ppapi/cpp/private/var_private.cc     args.reserve(argc);
args              136 ppapi/cpp/private/var_private.cc       args.push_back(argv[i].pp_var());
args              138 ppapi/cpp/private/var_private.cc         var_, argc, &args[0], OutException(exception).get()));
args              157 ppapi/cpp/private/var_private.cc   PP_Var args[1] = {arg1.pp_var()};
args              159 ppapi/cpp/private/var_private.cc       var_, method_name.pp_var(), 1, args, OutException(exception).get()));
args              166 ppapi/cpp/private/var_private.cc   PP_Var args[2] = {arg1.pp_var(), arg2.pp_var()};
args              168 ppapi/cpp/private/var_private.cc       var_, method_name.pp_var(), 2, args, OutException(exception).get()));
args              175 ppapi/cpp/private/var_private.cc   PP_Var args[3] = {arg1.pp_var(), arg2.pp_var(), arg3.pp_var()};
args              177 ppapi/cpp/private/var_private.cc       var_, method_name.pp_var(), 3, args, OutException(exception).get()));
args              185 ppapi/cpp/private/var_private.cc   PP_Var args[4] = {arg1.pp_var(), arg2.pp_var(), arg3.pp_var(), arg4.pp_var()};
args              187 ppapi/cpp/private/var_private.cc       var_, method_name.pp_var(), 4, args, OutException(exception).get()));
args              230 ppapi/examples/mouse_lock/mouse_lock.cc     va_list args;
args              231 ppapi/examples/mouse_lock/mouse_lock.cc     va_start(args, format);
args              233 ppapi/examples/mouse_lock/mouse_lock.cc     vsnprintf(buf, sizeof(buf) - 1, format, args);
args              235 ppapi/examples/mouse_lock/mouse_lock.cc     va_end(args);
args               28 ppapi/native_client/src/trusted/plugin/srpc_params.cc     NaClSrpcArg* args =
args               29 ppapi/native_client/src/trusted/plugin/srpc_params.cc       reinterpret_cast<NaClSrpcArg*>(malloc(kLength * sizeof(*args)));
args               30 ppapi/native_client/src/trusted/plugin/srpc_params.cc     if (NULL == args) {
args               34 ppapi/native_client/src/trusted/plugin/srpc_params.cc     memset(static_cast<void*>(args), 0, kLength * sizeof(*args));
args               36 ppapi/native_client/src/trusted/plugin/srpc_params.cc       vec[i] = &args[i];
args               37 ppapi/native_client/src/trusted/plugin/srpc_params.cc       args[i].tag = static_cast<NaClSrpcArgType>(types[i]);
args               44 ppapi/native_client/src/trusted/plugin/utility.h #define PLUGIN_PRINTF(args) do {                                      \
args               49 ppapi/native_client/src/trusted/plugin/utility.h       ::plugin::NaClPluginPrintLog args;                              \
args               55 ppapi/native_client/src/trusted/plugin/utility.h #define MODULE_PRINTF(args) do {                                      \
args               59 ppapi/native_client/src/trusted/plugin/utility.h       ::plugin::NaClPluginPrintLog args;                              \
args               63 ppapi/native_client/src/trusted/plugin/utility.h #  define PLUGIN_PRINTF(args) do { if (0) { printf args; } } while (0)
args               64 ppapi/native_client/src/trusted/plugin/utility.h #  define MODULE_PRINTF(args) do { if (0) { printf args; } } while (0)
args               45 ppapi/proxy/extensions_common_resource.cc                                             const std::vector<PP_Var>& args) {
args               46 ppapi/proxy/extensions_common_resource.cc   CommonPost(RENDERER, request_name, args);
args               58 ppapi/proxy/extensions_common_resource.cc                                            const std::vector<PP_Var>& args) {
args               59 ppapi/proxy/extensions_common_resource.cc   CommonPost(BROWSER, request_name, args);
args               90 ppapi/proxy/extensions_common_resource.cc                                           const std::vector<PP_Var>& args) {
args               91 ppapi/proxy/extensions_common_resource.cc   scoped_ptr<base::ListValue> args_value(CreateListValueFromVarVector(args));
args               39 ppapi/proxy/extensions_common_resource.h                             const std::vector<PP_Var>& args) OVERRIDE;
args               45 ppapi/proxy/extensions_common_resource.h                            const std::vector<PP_Var>& args) OVERRIDE;
args               55 ppapi/proxy/extensions_common_resource.h                   const std::vector<PP_Var>& args);
args              115 ppapi/proxy/plugin_main_irt.cc   void OnMsgInitializeNaClDispatcher(const ppapi::PpapiNaClPluginArgs& args);
args              232 ppapi/proxy/plugin_main_irt.cc     const ppapi::PpapiNaClPluginArgs& args) {
args              241 ppapi/proxy/plugin_main_irt.cc   for (size_t i = 0; i < args.switch_names.size(); ++i) {
args              242 ppapi/proxy/plugin_main_irt.cc     DCHECK(i < args.switch_values.size());
args              244 ppapi/proxy/plugin_main_irt.cc         args.switch_names[i], args.switch_values[i]);
args              252 ppapi/proxy/plugin_main_irt.cc           args.keepalive_throttle_interval_milliseconds);
args              257 ppapi/proxy/plugin_main_irt.cc       args.permissions);
args              266 ppapi/proxy/plugin_main_irt.cc       new PluginDispatcher(::PPP_GetInterface, args.permissions,
args              267 ppapi/proxy/plugin_main_irt.cc                            args.off_the_record);
args              469 ppapi/proxy/ppb_var_deprecated_proxy.cc   PP_Var* args = arg_vector.Get(dispatcher(), &arg_count);
args              473 ppapi/proxy/ppb_var_deprecated_proxy.cc       arg_count, args,
args              484 ppapi/proxy/ppb_var_deprecated_proxy.cc   PP_Var* args = arg_vector.Get(dispatcher(), &arg_count);
args              486 ppapi/proxy/ppb_var_deprecated_proxy.cc       var.Get(dispatcher()), arg_count, args,
args              351 ppapi/proxy/ppp_class_proxy.cc   PP_Var* args = arg_vector.Get(dispatcher(), &arg_count);
args              354 ppapi/proxy/ppp_class_proxy.cc       arg_count, args, exception.OutParam(dispatcher())));
args              365 ppapi/proxy/ppp_class_proxy.cc   PP_Var* args = arg_vector.Get(dispatcher(), &arg_count);
args              368 ppapi/proxy/ppp_class_proxy.cc       ToUserData(object), arg_count, args, exception.OutParam(dispatcher())));
args               27 ppapi/proxy/proxy_module.cc void ProxyModule::SetFlashCommandLineArgs(const std::string& args) {
args               28 ppapi/proxy/proxy_module.cc   flash_command_line_args_ = args;
args               27 ppapi/proxy/proxy_module.h   void SetFlashCommandLineArgs(const std::string& args);
args              134 ppapi/tests/clang/find_affected_interfaces.cc                          const std::vector<std::string>& args) {
args              137 ppapi/tests/clang/find_affected_interfaces.cc     StringVec::const_iterator iter(args.begin()), end(args.end());
args              600 ppapi/tests/extensions/socket/test_socket.cc     va_list args;
args              601 ppapi/tests/extensions/socket/test_socket.cc     va_start(args, format);
args              603 ppapi/tests/extensions/socket/test_socket.cc     vsnprintf(buf, sizeof(buf) - 1, format, args);
args              605 ppapi/tests/extensions/socket/test_socket.cc     va_end(args);
args               30 ppapi/tests/test_instance_deprecated.cc                const std::vector<pp::Var>& args,
args               89 ppapi/tests/test_instance_deprecated.cc                          const std::vector<pp::Var>& args,
args               96 ppapi/tests/test_instance_deprecated.cc     if (args.size() != 1 || !args[0].is_string())
args               99 ppapi/tests/test_instance_deprecated.cc       test_instance_->set_string(args[0].AsString());
args              101 ppapi/tests/test_instance_deprecated.cc     if (args.size() != 1 || !args[0].is_string())
args              104 ppapi/tests/test_instance_deprecated.cc       *exception = args[0];
args              106 ppapi/tests/test_instance_deprecated.cc     if (args.size() != 1)
args              109 ppapi/tests/test_instance_deprecated.cc       return args[0];
args               34 ppapi/tests/test_var_deprecated.cc                const std::vector<pp::Var>& args,
args               48 ppapi/tests/test_var_deprecated.cc                                   const std::vector<pp::Var>& args,
args               55 ppapi/tests/test_var_deprecated.cc     if (args.size() != 1)
args               58 ppapi/tests/test_var_deprecated.cc       test_var_deprecated_->set_var_from_page(pp::VarPrivate(args[0]));
args               29 ppapi/thunk/extensions_common_api.h                             const std::vector<PP_Var>& args) = 0;
args               35 ppapi/thunk/extensions_common_api.h                            const std::vector<PP_Var>& args) = 0;
args               41 ppapi/thunk/ppb_ext_socket_thunk.cc   std::vector<PP_Var> args;
args               42 ppapi/thunk/ppb_ext_socket_thunk.cc   args.push_back(socket_id);
args               43 ppapi/thunk/ppb_ext_socket_thunk.cc   enter.functions()->PostBrowser("socket.destroy", args);
args               91 ppapi/thunk/ppb_ext_socket_thunk.cc   std::vector<PP_Var> args;
args               92 ppapi/thunk/ppb_ext_socket_thunk.cc   args.push_back(socket_id);
args               93 ppapi/thunk/ppb_ext_socket_thunk.cc   enter.functions()->PostBrowser("socket.disconnect", args);
args               91 remoting/host/host_main.cc   CommandLine::StringVector args = CommandLine::ForCurrentProcess()->GetArgs();
args              101 remoting/host/host_main.cc   for (CommandLine::StringVector::const_iterator i = args.begin();
args              102 remoting/host/host_main.cc        i != args.end(); ++i) {
args              268 remoting/host/plugin/host_plugin.cc                             const NPVariant* args,
args              274 remoting/host/plugin/host_plugin.cc     return scriptable->InvokeDefault(args, argCount, result);
args              279 remoting/host/plugin/host_plugin.cc                      const NPVariant* args,
args              289 remoting/host/plugin/host_plugin.cc     return scriptable->Invoke(method_name_string, args, argCount, result);
args              160 remoting/host/plugin/host_script_object.cc bool HostNPScriptObject::InvokeDefault(const NPVariant* args,
args              170 remoting/host/plugin/host_script_object.cc                                 const NPVariant* args,
args              176 remoting/host/plugin/host_script_object.cc     return Connect(args, arg_count, result);
args              178 remoting/host/plugin/host_script_object.cc     return Disconnect(args, arg_count, result);
args              180 remoting/host/plugin/host_script_object.cc     return Localize(args, arg_count, result);
args              182 remoting/host/plugin/host_script_object.cc     return ClearPairedClients(args, arg_count, result);
args              184 remoting/host/plugin/host_script_object.cc     return DeletePairedClient(args, arg_count, result);
args              186 remoting/host/plugin/host_script_object.cc     return GetHostName(args, arg_count, result);
args              188 remoting/host/plugin/host_script_object.cc     return GetPinHash(args, arg_count, result);
args              190 remoting/host/plugin/host_script_object.cc     return GenerateKeyPair(args, arg_count, result);
args              192 remoting/host/plugin/host_script_object.cc     return UpdateDaemonConfig(args, arg_count, result);
args              194 remoting/host/plugin/host_script_object.cc     return GetDaemonConfig(args, arg_count, result);
args              196 remoting/host/plugin/host_script_object.cc     return GetDaemonVersion(args, arg_count, result);
args              198 remoting/host/plugin/host_script_object.cc     return GetPairedClients(args, arg_count, result);
args              200 remoting/host/plugin/host_script_object.cc     return GetUsageStatsConsent(args, arg_count, result);
args              202 remoting/host/plugin/host_script_object.cc     return StartDaemon(args, arg_count, result);
args              204 remoting/host/plugin/host_script_object.cc     return StopDaemon(args, arg_count, result);
args              446 remoting/host/plugin/host_script_object.cc bool HostNPScriptObject::Connect(const NPVariant* args,
args              465 remoting/host/plugin/host_script_object.cc   xmpp_config.username = StringFromNPVariant(args[0]);
args              471 remoting/host/plugin/host_script_object.cc   std::string auth_service_with_token = StringFromNPVariant(args[1]);
args              499 remoting/host/plugin/host_script_object.cc bool HostNPScriptObject::Disconnect(const NPVariant* args,
args              516 remoting/host/plugin/host_script_object.cc bool HostNPScriptObject::Localize(const NPVariant* args,
args              525 remoting/host/plugin/host_script_object.cc   if (NPVARIANT_IS_OBJECT(args[0])) {
args              526 remoting/host/plugin/host_script_object.cc     ScopedRefNPObject localize_func(NPVARIANT_TO_OBJECT(args[0]));
args              535 remoting/host/plugin/host_script_object.cc bool HostNPScriptObject::ClearPairedClients(const NPVariant* args,
args              543 remoting/host/plugin/host_script_object.cc   if (!NPVARIANT_IS_OBJECT(args[0])) {
args              549 remoting/host/plugin/host_script_object.cc       new ScopedRefNPObject(ObjectFromNPVariant(args[0])));
args              561 remoting/host/plugin/host_script_object.cc bool HostNPScriptObject::DeletePairedClient(const NPVariant* args,
args              569 remoting/host/plugin/host_script_object.cc   if (!NPVARIANT_IS_STRING(args[0])) {
args              574 remoting/host/plugin/host_script_object.cc   if (!NPVARIANT_IS_OBJECT(args[1])) {
args              579 remoting/host/plugin/host_script_object.cc   std::string client_id = StringFromNPVariant(args[0]);
args              581 remoting/host/plugin/host_script_object.cc       new ScopedRefNPObject(ObjectFromNPVariant(args[1])));
args              594 remoting/host/plugin/host_script_object.cc bool HostNPScriptObject::GetHostName(const NPVariant* args,
args              602 remoting/host/plugin/host_script_object.cc   ScopedRefNPObject callback_obj(ObjectFromNPVariant(args[0]));
args              615 remoting/host/plugin/host_script_object.cc bool HostNPScriptObject::GetPinHash(const NPVariant* args,
args              623 remoting/host/plugin/host_script_object.cc   std::string host_id = StringFromNPVariant(args[0]);
args              629 remoting/host/plugin/host_script_object.cc   if (!NPVARIANT_IS_STRING(args[1])) {
args              633 remoting/host/plugin/host_script_object.cc   std::string pin = StringFromNPVariant(args[1]);
args              635 remoting/host/plugin/host_script_object.cc   ScopedRefNPObject callback_obj(ObjectFromNPVariant(args[2]));
args              649 remoting/host/plugin/host_script_object.cc bool HostNPScriptObject::GenerateKeyPair(const NPVariant* args,
args              658 remoting/host/plugin/host_script_object.cc       new ScopedRefNPObject(ObjectFromNPVariant(args[0])));
args              674 remoting/host/plugin/host_script_object.cc bool HostNPScriptObject::UpdateDaemonConfig(const NPVariant* args,
args              682 remoting/host/plugin/host_script_object.cc   std::string config_str = StringFromNPVariant(args[0]);
args              694 remoting/host/plugin/host_script_object.cc       new ScopedRefNPObject(ObjectFromNPVariant(args[1])));
args              714 remoting/host/plugin/host_script_object.cc bool HostNPScriptObject::GetDaemonConfig(const NPVariant* args,
args              723 remoting/host/plugin/host_script_object.cc       new ScopedRefNPObject(ObjectFromNPVariant(args[0])));
args              735 remoting/host/plugin/host_script_object.cc bool HostNPScriptObject::GetDaemonVersion(const NPVariant* args,
args              744 remoting/host/plugin/host_script_object.cc       new ScopedRefNPObject(ObjectFromNPVariant(args[0])));
args              757 remoting/host/plugin/host_script_object.cc bool HostNPScriptObject::GetPairedClients(const NPVariant* args,
args              766 remoting/host/plugin/host_script_object.cc       new ScopedRefNPObject(ObjectFromNPVariant(args[0])));
args              784 remoting/host/plugin/host_script_object.cc bool HostNPScriptObject::GetUsageStatsConsent(const NPVariant* args,
args              793 remoting/host/plugin/host_script_object.cc       new ScopedRefNPObject(ObjectFromNPVariant(args[0])));
args              805 remoting/host/plugin/host_script_object.cc bool HostNPScriptObject::StartDaemon(const NPVariant* args,
args              815 remoting/host/plugin/host_script_object.cc   std::string config_str = StringFromNPVariant(args[0]);
args              826 remoting/host/plugin/host_script_object.cc   if (!NPVARIANT_IS_BOOLEAN(args[1])) {
args              832 remoting/host/plugin/host_script_object.cc       new ScopedRefNPObject(ObjectFromNPVariant(args[2])));
args              840 remoting/host/plugin/host_script_object.cc       NPVARIANT_TO_BOOLEAN(args[1]),
args              846 remoting/host/plugin/host_script_object.cc bool HostNPScriptObject::StopDaemon(const NPVariant* args,
args              857 remoting/host/plugin/host_script_object.cc       new ScopedRefNPObject(ObjectFromNPVariant(args[0])));
args              957 remoting/host/plugin/host_script_object.cc   scoped_ptr<NPVariant[]> args(new NPVariant[argc]);
args              958 remoting/host/plugin/host_script_object.cc   STRINGZ_TO_NPVARIANT(tag, args[0]);
args              960 remoting/host/plugin/host_script_object.cc     STRINGZ_TO_NPVARIANT(substitution, args[1]);
args              964 remoting/host/plugin/host_script_object.cc       plugin_, localize_func, args.get(), argc, &np_result);
args             1095 remoting/host/plugin/host_script_object.cc                                                const NPVariant* args,
args             1100 remoting/host/plugin/host_script_object.cc   bool is_good = g_npnetscape_funcs->invokeDefault(plugin_, func.get(), args,
args               37 remoting/host/plugin/host_script_object.h   bool InvokeDefault(const NPVariant* args,
args               41 remoting/host/plugin/host_script_object.h               const NPVariant* args,
args               64 remoting/host/plugin/host_script_object.h   bool Connect(const NPVariant* args, uint32_t arg_count, NPVariant* result);
args               67 remoting/host/plugin/host_script_object.h   bool Disconnect(const NPVariant* args, uint32_t arg_count, NPVariant* result);
args               73 remoting/host/plugin/host_script_object.h   bool Localize(const NPVariant* args, uint32_t arg_count, NPVariant* result);
args               79 remoting/host/plugin/host_script_object.h   bool ClearPairedClients(const NPVariant* args,
args               84 remoting/host/plugin/host_script_object.h   bool DeletePairedClient(const NPVariant* args,
args               91 remoting/host/plugin/host_script_object.h   bool GetHostName(const NPVariant* args,
args              101 remoting/host/plugin/host_script_object.h   bool GetPinHash(const NPVariant* args,
args              110 remoting/host/plugin/host_script_object.h   bool GenerateKeyPair(const NPVariant* args,
args              117 remoting/host/plugin/host_script_object.h   bool UpdateDaemonConfig(const NPVariant* args,
args              125 remoting/host/plugin/host_script_object.h   bool GetDaemonConfig(const NPVariant* args,
args              132 remoting/host/plugin/host_script_object.h   bool GetDaemonVersion(const NPVariant* args,
args              137 remoting/host/plugin/host_script_object.h   bool GetPairedClients(const NPVariant* args,
args              144 remoting/host/plugin/host_script_object.h   bool GetUsageStatsConsent(const NPVariant* args,
args              151 remoting/host/plugin/host_script_object.h   bool StartDaemon(const NPVariant* args,
args              157 remoting/host/plugin/host_script_object.h   bool StopDaemon(const NPVariant* args, uint32_t arg_count, NPVariant* result);
args              246 remoting/host/plugin/host_script_object.h                              const NPVariant* args,
args               72 remoting/host/setup/daemon_controller_delegate_linux.cc     const std::vector<std::string>& args,
args               89 remoting/host/setup/daemon_controller_delegate_linux.cc   for (unsigned int i = 0; i < args.size(); ++i) {
args               90 remoting/host/setup/daemon_controller_delegate_linux.cc     command_line.AppendArg(args[i]);
args              117 remoting/host/setup/daemon_controller_delegate_linux.cc bool RunHostScript(const std::vector<std::string>& args, int* exit_code) {
args              119 remoting/host/setup/daemon_controller_delegate_linux.cc       args, base::TimeDelta::FromMilliseconds(kDaemonTimeoutMs), exit_code);
args              197 remoting/host/setup/daemon_controller_delegate_linux.cc   std::vector<std::string> args;
args              198 remoting/host/setup/daemon_controller_delegate_linux.cc   args.push_back("--add-user");
args              201 remoting/host/setup/daemon_controller_delegate_linux.cc           args, base::TimeDelta::FromSeconds(kSudoTimeoutSeconds),
args              228 remoting/host/setup/daemon_controller_delegate_linux.cc   args.clear();
args              229 remoting/host/setup/daemon_controller_delegate_linux.cc   args.push_back("--start");
args              231 remoting/host/setup/daemon_controller_delegate_linux.cc   if (RunHostScript(args, &exit_code) && (exit_code == 0))
args              249 remoting/host/setup/daemon_controller_delegate_linux.cc   std::vector<std::string> args;
args              250 remoting/host/setup/daemon_controller_delegate_linux.cc   args.push_back("--reload");
args              253 remoting/host/setup/daemon_controller_delegate_linux.cc   if (RunHostScript(args, &exit_code) && (exit_code == 0))
args              261 remoting/host/setup/daemon_controller_delegate_linux.cc   std::vector<std::string> args;
args              262 remoting/host/setup/daemon_controller_delegate_linux.cc   args.push_back("--stop");
args              265 remoting/host/setup/daemon_controller_delegate_linux.cc   if (RunHostScript(args, &exit_code) && (exit_code == 0))
args              599 remoting/host/setup/me2me_native_messaging_host.cc   CommandLine::StringVector args = current_command_line->GetArgs();
args              613 remoting/host/setup/me2me_native_messaging_host.cc   for (CommandLine::StringVector::const_iterator i = args.begin();
args              614 remoting/host/setup/me2me_native_messaging_host.cc        i != args.end(); ++i) {
args               69 remoting/host/win/host_service.cc   CommandLine::StringVector args = command_line->GetArgs();
args               70 remoting/host/win/host_service.cc   if (!args.empty()) {
args               50 remoting/tools/breakpad_tester_win.cc   CommandLine::StringVector args = command_line->GetArgs();
args               51 remoting/tools/breakpad_tester_win.cc   if (args.size() != 1) {
args               56 remoting/tools/breakpad_tester_win.cc   int pid = _wtoi(args[0].c_str());
args               58 remoting/tools/breakpad_tester_win.cc     LOG(ERROR) << "Invalid process PID: " << args[0];
args               69 sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.cc intptr_t CrashSIGSYS_Handler(const struct arch_seccomp_data& args, void* aux) {
args               70 sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.cc   uint32_t syscall = args.nr;
args               80 sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.cc   syscall |= ((args.args[0] & 0xffUL) << 12);
args               81 sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.cc   syscall |= ((args.args[1] & 0xffUL) << 20);
args               97 sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.cc intptr_t SIGSYSCloneFailure(const struct arch_seccomp_data& args, void* aux) {
args              103 sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.cc   volatile uint64_t clone_flags = args.args[0];
args              116 sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.cc intptr_t SIGSYSPrctlFailure(const struct arch_seccomp_data& args,
args              122 sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.cc   volatile uint64_t option = args.args[0];
args              130 sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.cc intptr_t SIGSYSIoctlFailure(const struct arch_seccomp_data& args,
args              136 sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.cc   volatile uint64_t request = args.args[1];
args               24 sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.h     CrashSIGSYS_Handler(const struct arch_seccomp_data& args, void* aux);
args               32 sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.h     SIGSYSCloneFailure(const struct arch_seccomp_data& args, void* aux);
args               36 sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.h     SIGSYSPrctlFailure(const struct arch_seccomp_data& args, void* aux);
args               40 sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.h     SIGSYSIoctlFailure(const struct arch_seccomp_data& args, void* aux);
args               73 sandbox/linux/seccomp-bpf/codegen.cc           } else if (iter->k >= offsetof(struct arch_seccomp_data, args) &&
args               74 sandbox/linux/seccomp-bpf/codegen.cc                      iter->k < offsetof(struct arch_seccomp_data, args) + 48 &&
args               75 sandbox/linux/seccomp-bpf/codegen.cc                      (iter->k - offsetof(struct arch_seccomp_data, args)) % 4 ==
args               80 sandbox/linux/seccomp-bpf/codegen.cc                 (int)(iter->k - offsetof(struct arch_seccomp_data, args)) / 8,
args               81 sandbox/linux/seccomp-bpf/codegen.cc                 (iter->k - offsetof(struct arch_seccomp_data, args)) % 8 ? 'M'
args              122 sandbox/linux/seccomp-bpf/linux_seccomp.h #define SECCOMP_ARG_MSB_IDX(nr) (offsetof(struct arch_seccomp_data, args) +   \
args              124 sandbox/linux/seccomp-bpf/linux_seccomp.h #define SECCOMP_ARG_LSB_IDX(nr) (offsetof(struct arch_seccomp_data, args) +   \
args              149 sandbox/linux/seccomp-bpf/linux_seccomp.h #define SECCOMP_ARG_MSB_IDX(nr) (offsetof(struct arch_seccomp_data, args) +   \
args              151 sandbox/linux/seccomp-bpf/linux_seccomp.h #define SECCOMP_ARG_LSB_IDX(nr) (offsetof(struct arch_seccomp_data, args) +   \
args              187 sandbox/linux/seccomp-bpf/linux_seccomp.h #define SECCOMP_ARG_MSB_IDX(nr) (offsetof(struct arch_seccomp_data, args) +   \
args              189 sandbox/linux/seccomp-bpf/linux_seccomp.h #define SECCOMP_ARG_LSB_IDX(nr) (offsetof(struct arch_seccomp_data, args) +   \
args              992 sandbox/linux/seccomp-bpf/sandbox_bpf.cc intptr_t SandboxBPF::ForwardSyscall(const struct arch_seccomp_data& args) {
args              993 sandbox/linux/seccomp-bpf/sandbox_bpf.cc   return SandboxSyscall(args.nr,
args              994 sandbox/linux/seccomp-bpf/sandbox_bpf.cc                         static_cast<intptr_t>(args.args[0]),
args              995 sandbox/linux/seccomp-bpf/sandbox_bpf.cc                         static_cast<intptr_t>(args.args[1]),
args              996 sandbox/linux/seccomp-bpf/sandbox_bpf.cc                         static_cast<intptr_t>(args.args[2]),
args              997 sandbox/linux/seccomp-bpf/sandbox_bpf.cc                         static_cast<intptr_t>(args.args[3]),
args              998 sandbox/linux/seccomp-bpf/sandbox_bpf.cc                         static_cast<intptr_t>(args.args[4]),
args              999 sandbox/linux/seccomp-bpf/sandbox_bpf.cc                         static_cast<intptr_t>(args.args[5]));
args               31 sandbox/linux/seccomp-bpf/sandbox_bpf.h   uint64_t args[6];
args              146 sandbox/linux/seccomp-bpf/sandbox_bpf.h   static intptr_t ForwardSyscall(const struct arch_seccomp_data& args);
args               80 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc intptr_t FakeGetPid(const struct arch_seccomp_data& args, void* aux) {
args              165 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc intptr_t EnomemHandler(const struct arch_seccomp_data& args, void* aux) {
args              437 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc intptr_t CountSyscalls(const struct arch_seccomp_data& args, void* aux) {
args              447 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc   return SandboxBPF::ForwardSyscall(args);
args              513 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc intptr_t PrctlHandler(const struct arch_seccomp_data& args, void*) {
args              514 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc   if (args.args[0] == PR_CAPBSET_DROP && static_cast<int>(args.args[1]) == -1) {
args              519 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc     return SandboxBPF::ForwardSyscall(args);
args              565 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc intptr_t AllowRedirectedSyscall(const struct arch_seccomp_data& args, void*) {
args              566 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc   return SandboxBPF::ForwardSyscall(args);
args              667 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc   struct arch_seccomp_data args = {};
args              668 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc   args.nr = __NR_close;
args              669 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc   args.args[0] = -1;
args              670 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc   BPF_ASSERT(SandboxBPF::ForwardSyscall(args) == -EBADF);
args              701 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc intptr_t BrokerOpenTrapHandler(const struct arch_seccomp_data& args,
args              705 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc   switch (args.nr) {
args              707 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc       return broker_process->Access(reinterpret_cast<const char*>(args.args[0]),
args              708 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc                                     static_cast<int>(args.args[1]));
args              710 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc       return broker_process->Open(reinterpret_cast<const char*>(args.args[0]),
args              711 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc                                   static_cast<int>(args.args[1]));
args              715 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc       BPF_ASSERT(static_cast<int>(args.args[0]) == AT_FDCWD);
args              716 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc       return broker_process->Open(reinterpret_cast<const char*>(args.args[1]),
args              717 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc                                   static_cast<int>(args.args[2]));
args              916 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc       intptr_t args[6] = {};
args              917 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc       Verify(sysno, args, *arg_values_[sysno]);
args             1084 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc   void Verify(int sysno, intptr_t* args, const ArgValue& arg_value) {
args             1091 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc       args[arg_value.argno] = arg_value.tests[n].k_value;
args             1093 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc         VerifyErrno(sysno, args, arg_value.tests[n].err);
args             1095 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc         Verify(sysno, args, *arg_value.tests[n].arg_value);
args             1112 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc     args[arg_value.argno] = mismatched;
args             1114 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc       VerifyErrno(sysno, args, arg_value.err);
args             1116 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc       Verify(sysno, args, *arg_value.arg_value);
args             1120 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc     args[arg_value.argno] = 0;
args             1123 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc   void VerifyErrno(int sysno, intptr_t* args, int err) {
args             1129 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc             sysno, args[0], args[1], args[2], args[3], args[4], args[5]) ==
args             1629 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc intptr_t PthreadTrapHandler(const struct arch_seccomp_data& args, void* aux) {
args             1630 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc   if (args.args[0] != (CLONE_CHILD_CLEARTID | CLONE_CHILD_SETTID | SIGCHLD)) {
args             1645 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc         args.nr,
args             1646 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc         (long long)args.args[0],
args             1647 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc         (long long)args.args[1],
args             1648 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc         (long long)args.args[2],
args             1649 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc         (long long)args.args[3],
args             1650 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc         (long long)args.args[4],
args             1651 sandbox/linux/seccomp-bpf/sandbox_bpf_unittest.cc         (long long)args.args[5],
args              187 sandbox/linux/seccomp-bpf/syscall.cc   const intptr_t args[6] = { p0, p1, p2, p3, p4, p5 };
args              198 sandbox/linux/seccomp-bpf/syscall.cc     : "0"(ret), "D"(args)
args              203 sandbox/linux/seccomp-bpf/syscall.cc     register const intptr_t *data __asm__("r12") = args;
args              218 sandbox/linux/seccomp-bpf/syscall.cc     register const intptr_t *data __asm__("r6") = args;
args               72 sandbox/linux/seccomp-bpf/syscall_unittest.cc intptr_t CopySyscallArgsToAux(const struct arch_seccomp_data& args, void* aux) {
args               76 sandbox/linux/seccomp-bpf/syscall_unittest.cc   BPF_ASSERT(arraysize(args.args) == 6);
args               77 sandbox/linux/seccomp-bpf/syscall_unittest.cc   seen_syscall_args->assign(args.args, args.args + arraysize(args.args));
args               44 sandbox/linux/seccomp-bpf/trap.h   typedef intptr_t (*TrapFnc)(const struct arch_seccomp_data& args, void* aux);
args               39 sandbox/linux/seccomp-bpf/verifier.cc         (data.args[code.argno()] >> 32) &&
args               40 sandbox/linux/seccomp-bpf/verifier.cc         (data.args[code.argno()] & 0xFFFFFFFF80000000ull) !=
args               48 sandbox/linux/seccomp-bpf/verifier.cc                                       ? uint32_t(data.args[code.argno()])
args               49 sandbox/linux/seccomp-bpf/verifier.cc                                       : data.args[code.argno()]) == code.value()
args               56 sandbox/linux/seccomp-bpf/verifier.cc                                        ? uint32_t(data.args[code.argno()])
args               57 sandbox/linux/seccomp-bpf/verifier.cc                                        : data.args[code.argno()]) &
args               65 sandbox/linux/seccomp-bpf/verifier.cc                                       ? uint32_t(data.args[code.argno()])
args               66 sandbox/linux/seccomp-bpf/verifier.cc                                       : data.args[code.argno()]) &
args              110 sandbox/linux/seccomp-bpf/verifier.cc         data->args[code.argno()] = code.value();
args              118 sandbox/linux/seccomp-bpf/verifier.cc         data->args[code.argno()] = code.value() ^ 0x55AA55AA;
args              137 sandbox/linux/seccomp-bpf/verifier.cc           data->args[code.argno()] = 0x100000000ull;
args              153 sandbox/linux/seccomp-bpf/verifier.cc           data->args[code.argno()] = code.value() ^ 0x55AA55AA00000000ull;
args              194 sandbox/linux/seccomp-bpf/verifier.cc           data->args[code.argno()] = code.value() & uintptr_t(-1);
args              199 sandbox/linux/seccomp-bpf/verifier.cc           data->args[code.argno()] = uintptr_t(-1);
args              204 sandbox/linux/seccomp-bpf/verifier.cc           data->args[code.argno()] = 0;
args              160 sandbox/win/src/crosscall_server.h   ArgType args[kMaxIpcParams];
args              140 sandbox/win/src/sharedmem_ipc_server.cc void ReleaseArgs(const IPCParams* ipc_params, void* args[kMaxIpcParams]) {
args              142 sandbox/win/src/sharedmem_ipc_server.cc     switch (ipc_params->args[i]) {
args              144 sandbox/win/src/sharedmem_ipc_server.cc         delete reinterpret_cast<base::string16*>(args[i]);
args              145 sandbox/win/src/sharedmem_ipc_server.cc         args[i] = NULL;
args              149 sandbox/win/src/sharedmem_ipc_server.cc         delete reinterpret_cast<CountedBuffer*>(args[i]);
args              150 sandbox/win/src/sharedmem_ipc_server.cc         args[i] = NULL;
args              160 sandbox/win/src/sharedmem_ipc_server.cc              void* args[kMaxIpcParams]) {
args              167 sandbox/win/src/sharedmem_ipc_server.cc     args[i] = params->GetRawParameter(i, &size, &type);
args              168 sandbox/win/src/sharedmem_ipc_server.cc     if (args[i]) {
args              169 sandbox/win/src/sharedmem_ipc_server.cc       ipc_params->args[i] = type;
args              174 sandbox/win/src/sharedmem_ipc_server.cc             args[i] = 0;
args              175 sandbox/win/src/sharedmem_ipc_server.cc             ReleaseArgs(ipc_params, args);
args              178 sandbox/win/src/sharedmem_ipc_server.cc           args[i] = data.release();
args              184 sandbox/win/src/sharedmem_ipc_server.cc             ReleaseArgs(ipc_params, args);
args              188 sandbox/win/src/sharedmem_ipc_server.cc           args[i] = ipc_int.AsVoidPtr();
args              194 sandbox/win/src/sharedmem_ipc_server.cc             ReleaseArgs(ipc_params, args);
args              197 sandbox/win/src/sharedmem_ipc_server.cc           args[i] = data;
args              201 sandbox/win/src/sharedmem_ipc_server.cc           if (!args[i]) {
args              202 sandbox/win/src/sharedmem_ipc_server.cc             ReleaseArgs(ipc_params, args);
args              205 sandbox/win/src/sharedmem_ipc_server.cc           CountedBuffer* buffer = new CountedBuffer(args[i] , size);
args              206 sandbox/win/src/sharedmem_ipc_server.cc           args[i] = buffer;
args              237 sandbox/win/src/sharedmem_ipc_server.cc   void* args[kMaxIpcParams];
args              238 sandbox/win/src/sharedmem_ipc_server.cc   if (!GetArgs(params.get(), &ipc_params, args))
args              265 sandbox/win/src/sharedmem_ipc_server.cc         if (!(handler->*callback)(&ipc_info, args[0]))
args              273 sandbox/win/src/sharedmem_ipc_server.cc         if (!(handler->*callback)(&ipc_info, args[0], args[1]))
args              281 sandbox/win/src/sharedmem_ipc_server.cc         if (!(handler->*callback)(&ipc_info, args[0], args[1], args[2]))
args              289 sandbox/win/src/sharedmem_ipc_server.cc         if (!(handler->*callback)(&ipc_info, args[0], args[1], args[2],
args              290 sandbox/win/src/sharedmem_ipc_server.cc                                   args[3]))
args              298 sandbox/win/src/sharedmem_ipc_server.cc         if (!(handler->*callback)(&ipc_info, args[0], args[1], args[2], args[3],
args              299 sandbox/win/src/sharedmem_ipc_server.cc                                   args[4]))
args              307 sandbox/win/src/sharedmem_ipc_server.cc         if (!(handler->*callback)(&ipc_info, args[0], args[1], args[2], args[3],
args              308 sandbox/win/src/sharedmem_ipc_server.cc                                   args[4], args[5]))
args              316 sandbox/win/src/sharedmem_ipc_server.cc         if (!(handler->*callback)(&ipc_info, args[0], args[1], args[2], args[3],
args              317 sandbox/win/src/sharedmem_ipc_server.cc                                   args[4], args[5], args[6]))
args              325 sandbox/win/src/sharedmem_ipc_server.cc         if (!(handler->*callback)(&ipc_info, args[0], args[1], args[2], args[3],
args              326 sandbox/win/src/sharedmem_ipc_server.cc                                   args[4], args[5], args[6], args[7]))
args              334 sandbox/win/src/sharedmem_ipc_server.cc         if (!(handler->*callback)(&ipc_info, args[0], args[1], args[2], args[3],
args              335 sandbox/win/src/sharedmem_ipc_server.cc                                   args[4], args[5], args[6], args[7], args[8]))
args              360 sandbox/win/src/sharedmem_ipc_server.cc   ReleaseArgs(&ipc_params, args);
args              951 sync/internal_api/sync_manager_impl.cc     const std::string& name, const JsArgList& args,
args              960 sync/internal_api/sync_manager_impl.cc             << name << " with args " << args.ToString();
args              967 sync/internal_api/sync_manager_impl.cc              << " with args " << args.ToString();
args              973 sync/internal_api/sync_manager_impl.cc                      name, js_message_handler.Run(args));
args              983 sync/internal_api/sync_manager_impl.cc JsArgList SyncManagerImpl::GetAllNodes(const JsArgList& args) {
args              158 sync/internal_api/sync_manager_impl.h       const std::string& name, const JsArgList& args,
args              274 sync/internal_api/sync_manager_impl.h   JsArgList GetAllNodes(const JsArgList& args);
args              275 sync/internal_api/sync_manager_impl.h   JsArgList GetNodeSummariesById(const JsArgList& args);
args              276 sync/internal_api/sync_manager_impl.h   JsArgList GetNodeDetailsById(const JsArgList& args);
args              277 sync/internal_api/sync_manager_impl.h   JsArgList GetChildNodeIds(const JsArgList& args);
args              839 sync/internal_api/sync_manager_impl_unittest.cc   void SendJsMessage(const std::string& name, const JsArgList& args,
args              842 sync/internal_api/sync_manager_impl_unittest.cc                      name, args, reply_handler);
args              950 sync/internal_api/sync_manager_impl_unittest.cc     base::ListValue args;
args              952 sync/internal_api/sync_manager_impl_unittest.cc                   JsArgList(&args), reply_handler.AsWeakHandle());
args               13 sync/js/js_arg_list.cc JsArgList::JsArgList(base::ListValue* args) : args_(args) {}
args               26 sync/js/js_arg_list.h   explicit JsArgList(base::ListValue* args);
args               33 sync/js/js_backend.h       const std::string& name, const JsArgList& args,
args               42 sync/js/js_controller.h       const std::string& name, const JsArgList& args,
args               21 sync/js/js_reply_handler.h       const std::string& name, const JsArgList& args) = 0;
args               14 sync/js/js_test_util.cc void PrintTo(const JsArgList& args, ::std::ostream* os) {
args               15 sync/js/js_test_util.cc   *os << args.ToString();
args               34 sync/js/js_test_util.cc       const JsArgList& args,
args               37 sync/js/js_test_util.cc     return args.Get().Equals(&expected_args_.Get());
args               30 sync/js/js_test_util.h void PrintTo(const JsArgList& args, ::std::ostream* os);
args               14 sync/js/sync_js_controller.cc     const std::string& name, const JsArgList& args,
args               16 sync/js/sync_js_controller.cc     : name(name), args(args), reply_handler(reply_handler) {}
args               47 sync/js/sync_js_controller.cc                        it->name, it->args, it->reply_handler);
args               53 sync/js/sync_js_controller.cc     const std::string& name, const JsArgList& args,
args               57 sync/js/sync_js_controller.cc                      name, args, reply_handler);
args               60 sync/js/sync_js_controller.cc         PendingJsMessage(name, args, reply_handler));
args               45 sync/js/sync_js_controller.h       const std::string& name, const JsArgList& args,
args               57 sync/js/sync_js_controller.h     JsArgList args;
args               60 sync/js/sync_js_controller.h     PendingJsMessage(const std::string& name, const JsArgList& args,
args               84 testing/android/native_test_launcher.cc   va_list args;
args               85 testing/android/native_test_launcher.cc   va_start(args, format);
args               86 testing/android/native_test_launcher.cc   __android_log_vprint(priority, kLogTag, format, args);
args               87 testing/android/native_test_launcher.cc   va_end(args);
args              134 testing/android/native_test_launcher.cc   std::vector<std::string> args;
args              135 testing/android/native_test_launcher.cc   ParseArgsFromCommandLineFile(kCommandLineFilePath, &args);
args              138 testing/android/native_test_launcher.cc   int argc = ArgsToArgv(args, &argv);
args               15 testing/android/native_test_util.cc                          std::vector<std::string>* args) {
args               21 testing/android/native_test_util.cc     args->push_back(token);
args               31 testing/android/native_test_util.cc     const char* path, std::vector<std::string>* args) {
args               35 testing/android/native_test_util.cc     ParseArgsFromString(command_line_string, args);
args               39 testing/android/native_test_util.cc int ArgsToArgv(const std::vector<std::string>& args,
args               42 testing/android/native_test_util.cc   int argc = args.size();
args               46 testing/android/native_test_util.cc     (*argv)[i] = const_cast<char*>(args[i].c_str());
args               31 testing/android/native_test_util.h     const char* path, std::vector<std::string>* args);
args               32 testing/android/native_test_util.h int ArgsToArgv(const std::vector<std::string>& args, std::vector<char*>* argv);
args             2998 third_party/bintrees/bintrees/cwalker.c         PyObject *args;
args             3000 third_party/bintrees/bintrees/cwalker.c             args = PyTuple_New(0);
args             3003 third_party/bintrees/bintrees/cwalker.c             args = value;
args             3006 third_party/bintrees/bintrees/cwalker.c             args = PyTuple_Pack(1, value);
args             3007 third_party/bintrees/bintrees/cwalker.c         if (!args)
args             3009 third_party/bintrees/bintrees/cwalker.c         owned_instance = PyEval_CallObject(type, args);
args             3010 third_party/bintrees/bintrees/cwalker.c         Py_DECREF(args);
args             2480 third_party/bintrees/bintrees/qavltree.c         PyObject *args;
args             2482 third_party/bintrees/bintrees/qavltree.c             args = PyTuple_New(0);
args             2485 third_party/bintrees/bintrees/qavltree.c             args = value;
args             2488 third_party/bintrees/bintrees/qavltree.c             args = PyTuple_Pack(1, value);
args             2489 third_party/bintrees/bintrees/qavltree.c         if (!args)
args             2491 third_party/bintrees/bintrees/qavltree.c         owned_instance = PyEval_CallObject(type, args);
args             2492 third_party/bintrees/bintrees/qavltree.c         Py_DECREF(args);
args             2475 third_party/bintrees/bintrees/qbintree.c         PyObject *args;
args             2477 third_party/bintrees/bintrees/qbintree.c             args = PyTuple_New(0);
args             2480 third_party/bintrees/bintrees/qbintree.c             args = value;
args             2483 third_party/bintrees/bintrees/qbintree.c             args = PyTuple_Pack(1, value);
args             2484 third_party/bintrees/bintrees/qbintree.c         if (!args)
args             2486 third_party/bintrees/bintrees/qbintree.c         owned_instance = PyEval_CallObject(type, args);
args             2487 third_party/bintrees/bintrees/qbintree.c         Py_DECREF(args);
args             2477 third_party/bintrees/bintrees/qrbtree.c         PyObject *args;
args             2479 third_party/bintrees/bintrees/qrbtree.c             args = PyTuple_New(0);
args             2482 third_party/bintrees/bintrees/qrbtree.c             args = value;
args             2485 third_party/bintrees/bintrees/qrbtree.c             args = PyTuple_Pack(1, value);
args             2486 third_party/bintrees/bintrees/qrbtree.c         if (!args)
args             2488 third_party/bintrees/bintrees/qrbtree.c         owned_instance = PyEval_CallObject(type, args);
args             2489 third_party/bintrees/bintrees/qrbtree.c         Py_DECREF(args);
args              416 third_party/libevent/evdns.c   va_list args;
args              420 third_party/libevent/evdns.c   va_start(args,fmt);
args              421 third_party/libevent/evdns.c   evutil_vsnprintf(buf, sizeof(buf), fmt, args);
args              424 third_party/libevent/evdns.c   va_end(args);
args               14 third_party/libevent/test/regress.gen.h #define EVTAG_ASSIGN(msg, member, args...) (*(msg)->base->member##_assign)(msg, ## args)
args               15 third_party/libevent/test/regress.gen.h #define EVTAG_GET(msg, member, args...) (*(msg)->base->member##_get)(msg, ## args)
args             2073 third_party/libusb/src/libusb/core.c 	const char *function, const char *format, va_list args)
args             2149 third_party/libusb/src/libusb/core.c 		format, args);
args             2167 third_party/libusb/src/libusb/core.c 	va_list args;
args             2169 third_party/libusb/src/libusb/core.c 	va_start (args, format);
args             2170 third_party/libusb/src/libusb/core.c 	usbi_log_v(ctx, level, function, format, args);
args             2171 third_party/libusb/src/libusb/core.c 	va_end (args);
args              156 third_party/libusb/src/libusb/libusbi.h 	const char *function, const char *format, va_list args);
args              177 third_party/libusb/src/libusb/libusbi.h 	va_list args;             \
args              178 third_party/libusb/src/libusb/libusbi.h 	va_start (args, format);  \
args              179 third_party/libusb/src/libusb/libusbi.h 	usbi_log_v(ctxt, level, "", format, args); \
args              180 third_party/libusb/src/libusb/libusbi.h 	va_end(args);             \
args               69 third_party/libusb/src/libusb/os/windows_common.h #define DLL_DECLARE_PREFIXNAME(api, ret, prefixname, name, args)    \
args              105 third_party/libusb/src/libusb/os/windows_common.h #define DLL_DECLARE(api, ret, name, args)   DLL_DECLARE_PREFIXNAME(api, ret, name, name, args)
args              107 third_party/libusb/src/libusb/os/windows_common.h #define DLL_DECLARE_PREFIXED(api, ret, prefix, name, args)   DLL_DECLARE_PREFIXNAME(api, ret, prefix##name, name, args)
args              433 third_party/libxml/linux/include/libxml/xmlversion.h #  define LIBXML_ATTR_FORMAT(fmt,args) __attribute__((__format__(__printf__,fmt,args)))
args              435 third_party/libxml/linux/include/libxml/xmlversion.h #  define LIBXML_ATTR_FORMAT(fmt,args)
args              438 third_party/libxml/linux/include/libxml/xmlversion.h # define LIBXML_ATTR_FORMAT(fmt,args)
args              459 third_party/libxml/linux/include/libxml/xmlversion.h #define LIBXML_ATTR_FORMAT(fmt,args)
args              433 third_party/libxml/mac/include/libxml/xmlversion.h #  define LIBXML_ATTR_FORMAT(fmt,args) __attribute__((__format__(__printf__,fmt,args)))
args              435 third_party/libxml/mac/include/libxml/xmlversion.h #  define LIBXML_ATTR_FORMAT(fmt,args)
args              438 third_party/libxml/mac/include/libxml/xmlversion.h # define LIBXML_ATTR_FORMAT(fmt,args)
args              459 third_party/libxml/mac/include/libxml/xmlversion.h #define LIBXML_ATTR_FORMAT(fmt,args)
args               72 third_party/libxml/src/error.c     va_list args;
args               77 third_party/libxml/src/error.c     va_start(args, msg);
args               78 third_party/libxml/src/error.c     vfprintf((FILE *)xmlGenericErrorContext, msg, args);
args               79 third_party/libxml/src/error.c     va_end(args);
args              179 third_party/libxml/src/runsuite.c     va_list args;
args              182 third_party/libxml/src/runsuite.c 	va_start(args, msg);
args              183 third_party/libxml/src/runsuite.c 	vfprintf(logfile, msg, args);
args              184 third_party/libxml/src/runsuite.c 	va_end(args);
args              189 third_party/libxml/src/runsuite.c 	va_start(args, msg);
args              190 third_party/libxml/src/runsuite.c 	vfprintf(stderr, msg, args);
args              191 third_party/libxml/src/runsuite.c 	va_end(args);
args              197 third_party/libxml/src/runsuite.c     va_list args;
args              202 third_party/libxml/src/runsuite.c     va_start(args, msg);
args              205 third_party/libxml/src/runsuite.c 		    msg, args);
args              206 third_party/libxml/src/runsuite.c     va_end(args);
args              250 third_party/libxml/src/runtest.c     va_list args;
args              255 third_party/libxml/src/runtest.c     va_start(args, msg);
args              258 third_party/libxml/src/runtest.c 		    msg, args);
args              259 third_party/libxml/src/runtest.c     va_end(args);
args              272 third_party/libxml/src/runtest.c     va_list args;
args              277 third_party/libxml/src/runtest.c     va_start(args, msg);
args              280 third_party/libxml/src/runtest.c 		    msg, args);
args              281 third_party/libxml/src/runtest.c     va_end(args);
args             1304 third_party/libxml/src/runtest.c     va_list args;
args             1309 third_party/libxml/src/runtest.c     va_start(args, msg);
args             1311 third_party/libxml/src/runtest.c     vfprintf(SAXdebug, msg, args);
args             1312 third_party/libxml/src/runtest.c     va_end(args);
args             1327 third_party/libxml/src/runtest.c     va_list args;
args             1332 third_party/libxml/src/runtest.c     va_start(args, msg);
args             1334 third_party/libxml/src/runtest.c     vfprintf(SAXdebug, msg, args);
args             1335 third_party/libxml/src/runtest.c     va_end(args);
args             1350 third_party/libxml/src/runtest.c     va_list args;
args             1355 third_party/libxml/src/runtest.c     va_start(args, msg);
args             1357 third_party/libxml/src/runtest.c     vfprintf(SAXdebug, msg, args);
args             1358 third_party/libxml/src/runtest.c     va_end(args);
args              529 third_party/libxml/src/testHTML.c     va_list args;
args              531 third_party/libxml/src/testHTML.c     va_start(args, msg);
args              533 third_party/libxml/src/testHTML.c     vfprintf(stdout, msg, args);
args              534 third_party/libxml/src/testHTML.c     va_end(args);
args              549 third_party/libxml/src/testHTML.c     va_list args;
args              551 third_party/libxml/src/testHTML.c     va_start(args, msg);
args              553 third_party/libxml/src/testHTML.c     vfprintf(stdout, msg, args);
args              554 third_party/libxml/src/testHTML.c     va_end(args);
args              569 third_party/libxml/src/testHTML.c     va_list args;
args              571 third_party/libxml/src/testHTML.c     va_start(args, msg);
args              573 third_party/libxml/src/testHTML.c     vfprintf(stdout, msg, args);
args              574 third_party/libxml/src/testHTML.c     va_end(args);
args              779 third_party/libxml/src/testSAX.c     va_list args;
args              784 third_party/libxml/src/testSAX.c     va_start(args, msg);
args              786 third_party/libxml/src/testSAX.c     vfprintf(stdout, msg, args);
args              787 third_party/libxml/src/testSAX.c     va_end(args);
args              802 third_party/libxml/src/testSAX.c     va_list args;
args              807 third_party/libxml/src/testSAX.c     va_start(args, msg);
args              809 third_party/libxml/src/testSAX.c     vfprintf(stdout, msg, args);
args              810 third_party/libxml/src/testSAX.c     va_end(args);
args              825 third_party/libxml/src/testSAX.c     va_list args;
args              830 third_party/libxml/src/testSAX.c     va_start(args, msg);
args              832 third_party/libxml/src/testSAX.c     vfprintf(stdout, msg, args);
args              833 third_party/libxml/src/testSAX.c     va_end(args);
args             3632 third_party/libxml/src/trio.c   va_list args;
args             3636 third_party/libxml/src/trio.c   TRIO_VA_START(args, format);
args             3637 third_party/libxml/src/trio.c   status = TrioFormat(stdout, 0, TrioOutStreamFile, format, &args, NULL);
args             3638 third_party/libxml/src/trio.c   TRIO_VA_END(args);
args             3651 third_party/libxml/src/trio.c TRIO_ARGS2((format, args),
args             3653 third_party/libxml/src/trio.c 	   va_list args)
args             3657 third_party/libxml/src/trio.c   return TrioFormat(stdout, 0, TrioOutStreamFile, format, &args, NULL);
args             3669 third_party/libxml/src/trio.c TRIO_ARGS2((format, args),
args             3671 third_party/libxml/src/trio.c 	   trio_pointer_t * args)
args             3675 third_party/libxml/src/trio.c   return TrioFormat(stdout, 0, TrioOutStreamFile, format, NULL, args);
args             3698 third_party/libxml/src/trio.c   va_list args;
args             3703 third_party/libxml/src/trio.c   TRIO_VA_START(args, format);
args             3704 third_party/libxml/src/trio.c   status = TrioFormat(file, 0, TrioOutStreamFile, format, &args, NULL);
args             3705 third_party/libxml/src/trio.c   TRIO_VA_END(args);
args             3719 third_party/libxml/src/trio.c TRIO_ARGS3((file, format, args),
args             3722 third_party/libxml/src/trio.c 	   va_list args)
args             3727 third_party/libxml/src/trio.c   return TrioFormat(file, 0, TrioOutStreamFile, format, &args, NULL);
args             3740 third_party/libxml/src/trio.c TRIO_ARGS3((file, format, args),
args             3743 third_party/libxml/src/trio.c 	   trio_pointer_t * args)
args             3748 third_party/libxml/src/trio.c   return TrioFormat(file, 0, TrioOutStreamFile, format, NULL, args);
args             3771 third_party/libxml/src/trio.c   va_list args;
args             3775 third_party/libxml/src/trio.c   TRIO_VA_START(args, format);
args             3776 third_party/libxml/src/trio.c   status = TrioFormat(&fd, 0, TrioOutStreamFileDescriptor, format, &args, NULL);
args             3777 third_party/libxml/src/trio.c   TRIO_VA_END(args);
args             3791 third_party/libxml/src/trio.c TRIO_ARGS3((fd, format, args),
args             3794 third_party/libxml/src/trio.c 	   va_list args)
args             3798 third_party/libxml/src/trio.c   return TrioFormat(&fd, 0, TrioOutStreamFileDescriptor, format, &args, NULL);
args             3811 third_party/libxml/src/trio.c TRIO_ARGS3((fd, format, args),
args             3814 third_party/libxml/src/trio.c 	   trio_pointer_t *args)
args             3818 third_party/libxml/src/trio.c   return TrioFormat(&fd, 0, TrioOutStreamFileDescriptor, format, NULL, args);
args             3833 third_party/libxml/src/trio.c   va_list args;
args             3839 third_party/libxml/src/trio.c   TRIO_VA_START(args, format);
args             3842 third_party/libxml/src/trio.c   status = TrioFormat(&data, 0, TrioOutStreamCustom, format, &args, NULL);
args             3843 third_party/libxml/src/trio.c   TRIO_VA_END(args);
args             3849 third_party/libxml/src/trio.c TRIO_ARGS4((stream, closure, format, args),
args             3853 third_party/libxml/src/trio.c 	   va_list args)
args             3862 third_party/libxml/src/trio.c   return TrioFormat(&data, 0, TrioOutStreamCustom, format, &args, NULL);
args             3867 third_party/libxml/src/trio.c TRIO_ARGS4((stream, closure, format, args),
args             3871 third_party/libxml/src/trio.c 	   void **args)
args             3880 third_party/libxml/src/trio.c   return TrioFormat(&data, 0, TrioOutStreamCustom, format, NULL, args);
args             3903 third_party/libxml/src/trio.c   va_list args;
args             3908 third_party/libxml/src/trio.c   TRIO_VA_START(args, format);
args             3909 third_party/libxml/src/trio.c   status = TrioFormat(&buffer, 0, TrioOutStreamString, format, &args, NULL);
args             3911 third_party/libxml/src/trio.c   TRIO_VA_END(args);
args             3925 third_party/libxml/src/trio.c TRIO_ARGS3((buffer, format, args),
args             3928 third_party/libxml/src/trio.c 	   va_list args)
args             3935 third_party/libxml/src/trio.c   status = TrioFormat(&buffer, 0, TrioOutStreamString, format, &args, NULL);
args             3950 third_party/libxml/src/trio.c TRIO_ARGS3((buffer, format, args),
args             3953 third_party/libxml/src/trio.c 	   trio_pointer_t *args)
args             3960 third_party/libxml/src/trio.c   status = TrioFormat(&buffer, 0, TrioOutStreamString, format, NULL, args);
args             3987 third_party/libxml/src/trio.c   va_list args;
args             3992 third_party/libxml/src/trio.c   TRIO_VA_START(args, format);
args             3994 third_party/libxml/src/trio.c 		      TrioOutStreamStringMax, format, &args, NULL);
args             3997 third_party/libxml/src/trio.c   TRIO_VA_END(args);
args             4012 third_party/libxml/src/trio.c TRIO_ARGS4((buffer, max, format, args),
args             4016 third_party/libxml/src/trio.c 	   va_list args)
args             4024 third_party/libxml/src/trio.c 		      TrioOutStreamStringMax, format, &args, NULL);
args             4041 third_party/libxml/src/trio.c TRIO_ARGS4((buffer, max, format, args),
args             4045 third_party/libxml/src/trio.c 	   trio_pointer_t *args)
args             4053 third_party/libxml/src/trio.c 		      TrioOutStreamStringMax, format, NULL, args);
args             4073 third_party/libxml/src/trio.c   va_list args;
args             4076 third_party/libxml/src/trio.c   TRIO_VA_START(args, format);
args             4085 third_party/libxml/src/trio.c 		      TrioOutStreamStringMax, format, &args, NULL);
args             4086 third_party/libxml/src/trio.c   TRIO_VA_END(args);
args             4093 third_party/libxml/src/trio.c TRIO_ARGS4((buffer, max, format, args),
args             4097 third_party/libxml/src/trio.c 	   va_list args)
args             4108 third_party/libxml/src/trio.c 		      TrioOutStreamStringMax, format, &args, NULL);
args             4124 third_party/libxml/src/trio.c   va_list args;
args             4133 third_party/libxml/src/trio.c       TRIO_VA_START(args, format);
args             4135 third_party/libxml/src/trio.c 		       format, &args, NULL);
args             4136 third_party/libxml/src/trio.c       TRIO_VA_END(args);
args             4148 third_party/libxml/src/trio.c TRIO_ARGS2((format, args),
args             4150 third_party/libxml/src/trio.c 	   va_list args)
args             4161 third_party/libxml/src/trio.c 		       format, &args, NULL);
args             4176 third_party/libxml/src/trio.c   va_list args;
args             4191 third_party/libxml/src/trio.c       TRIO_VA_START(args, format);
args             4193 third_party/libxml/src/trio.c 			  format, &args, NULL);
args             4194 third_party/libxml/src/trio.c       TRIO_VA_END(args);
args             4207 third_party/libxml/src/trio.c TRIO_ARGS3((result, format, args),
args             4210 third_party/libxml/src/trio.c 	   va_list args)
args             4227 third_party/libxml/src/trio.c 			  format, &args, NULL);
args             6578 third_party/libxml/src/trio.c   va_list args;
args             6582 third_party/libxml/src/trio.c   TRIO_VA_START(args, format);
args             6585 third_party/libxml/src/trio.c 		    format, &args, NULL);
args             6586 third_party/libxml/src/trio.c   TRIO_VA_END(args);
args             6592 third_party/libxml/src/trio.c TRIO_ARGS2((format, args),
args             6594 third_party/libxml/src/trio.c 	   va_list args)
args             6600 third_party/libxml/src/trio.c 		  format, &args, NULL);
args             6605 third_party/libxml/src/trio.c TRIO_ARGS2((format, args),
args             6607 third_party/libxml/src/trio.c 	   trio_pointer_t *args)
args             6613 third_party/libxml/src/trio.c 		  format, NULL, args);
args             6627 third_party/libxml/src/trio.c   va_list args;
args             6632 third_party/libxml/src/trio.c   TRIO_VA_START(args, format);
args             6635 third_party/libxml/src/trio.c 		    format, &args, NULL);
args             6636 third_party/libxml/src/trio.c   TRIO_VA_END(args);
args             6642 third_party/libxml/src/trio.c TRIO_ARGS3((file, format, args),
args             6645 third_party/libxml/src/trio.c 	   va_list args)
args             6652 third_party/libxml/src/trio.c 		  format, &args, NULL);
args             6657 third_party/libxml/src/trio.c TRIO_ARGS3((file, format, args),
args             6660 third_party/libxml/src/trio.c 	   trio_pointer_t *args)
args             6667 third_party/libxml/src/trio.c 		  format, NULL, args);
args             6681 third_party/libxml/src/trio.c   va_list args;
args             6685 third_party/libxml/src/trio.c   TRIO_VA_START(args, format);
args             6688 third_party/libxml/src/trio.c 		    format, &args, NULL);
args             6689 third_party/libxml/src/trio.c   TRIO_VA_END(args);
args             6695 third_party/libxml/src/trio.c TRIO_ARGS3((fd, format, args),
args             6698 third_party/libxml/src/trio.c 	   va_list args)
args             6704 third_party/libxml/src/trio.c 		  format, &args, NULL);
args             6709 third_party/libxml/src/trio.c TRIO_ARGS3((fd, format, args),
args             6712 third_party/libxml/src/trio.c 	   trio_pointer_t *args)
args             6718 third_party/libxml/src/trio.c 		  format, NULL, args);
args             6733 third_party/libxml/src/trio.c   va_list args;
args             6739 third_party/libxml/src/trio.c   TRIO_VA_START(args, format);
args             6742 third_party/libxml/src/trio.c   status = TrioScan(&data, 0, TrioInStreamCustom, format, &args, NULL);
args             6743 third_party/libxml/src/trio.c   TRIO_VA_END(args);
args             6749 third_party/libxml/src/trio.c TRIO_ARGS4((stream, closure, format, args),
args             6753 third_party/libxml/src/trio.c 	   va_list args)
args             6762 third_party/libxml/src/trio.c   return TrioScan(&data, 0, TrioInStreamCustom, format, &args, NULL);
args             6767 third_party/libxml/src/trio.c TRIO_ARGS4((stream, closure, format, args),
args             6771 third_party/libxml/src/trio.c 	   trio_pointer_t *args)
args             6780 third_party/libxml/src/trio.c   return TrioScan(&data, 0, TrioInStreamCustom, format, NULL, args);
args             6794 third_party/libxml/src/trio.c   va_list args;
args             6799 third_party/libxml/src/trio.c   TRIO_VA_START(args, format);
args             6802 third_party/libxml/src/trio.c 		    format, &args, NULL);
args             6803 third_party/libxml/src/trio.c   TRIO_VA_END(args);
args             6809 third_party/libxml/src/trio.c TRIO_ARGS3((buffer, format, args),
args             6812 third_party/libxml/src/trio.c 	   va_list args)
args             6819 third_party/libxml/src/trio.c 		  format, &args, NULL);
args             6824 third_party/libxml/src/trio.c TRIO_ARGS3((buffer, format, args),
args             6827 third_party/libxml/src/trio.c 	   trio_pointer_t *args)
args             6834 third_party/libxml/src/trio.c 		  format, NULL, args);
args               81 third_party/libxml/src/trio.h int trio_vprintf TRIO_PROTO((TRIO_CONST char *format, va_list args));
args               82 third_party/libxml/src/trio.h int trio_printfv TRIO_PROTO((TRIO_CONST char *format, void **args));
args               85 third_party/libxml/src/trio.h int trio_vfprintf TRIO_PROTO((FILE *file, TRIO_CONST char *format, va_list args));
args               86 third_party/libxml/src/trio.h int trio_fprintfv TRIO_PROTO((FILE *file, TRIO_CONST char *format, void **args));
args               89 third_party/libxml/src/trio.h int trio_vdprintf TRIO_PROTO((int fd, TRIO_CONST char *format, va_list args));
args               90 third_party/libxml/src/trio.h int trio_dprintfv TRIO_PROTO((int fd, TRIO_CONST char *format, void **args));
args               95 third_party/libxml/src/trio.h 			      TRIO_CONST char *format, va_list args));
args               97 third_party/libxml/src/trio.h 			      TRIO_CONST char *format, void **args));
args              100 third_party/libxml/src/trio.h int trio_vsprintf TRIO_PROTO((char *buffer, TRIO_CONST char *format, va_list args));
args              101 third_party/libxml/src/trio.h int trio_sprintfv TRIO_PROTO((char *buffer, TRIO_CONST char *format, void **args));
args              105 third_party/libxml/src/trio.h 		   va_list args));
args              107 third_party/libxml/src/trio.h 		   void **args));
args              111 third_party/libxml/src/trio.h                       va_list args));
args              114 third_party/libxml/src/trio.h char *trio_vaprintf TRIO_PROTO((TRIO_CONST char *format, va_list args));
args              117 third_party/libxml/src/trio.h int trio_vasprintf TRIO_PROTO((char **ret, TRIO_CONST char *format, va_list args));
args              123 third_party/libxml/src/trio.h int trio_vscanf TRIO_PROTO((TRIO_CONST char *format, va_list args));
args              124 third_party/libxml/src/trio.h int trio_scanfv TRIO_PROTO((TRIO_CONST char *format, void **args));
args              127 third_party/libxml/src/trio.h int trio_vfscanf TRIO_PROTO((FILE *file, TRIO_CONST char *format, va_list args));
args              128 third_party/libxml/src/trio.h int trio_fscanfv TRIO_PROTO((FILE *file, TRIO_CONST char *format, void **args));
args              131 third_party/libxml/src/trio.h int trio_vdscanf TRIO_PROTO((int fd, TRIO_CONST char *format, va_list args));
args              132 third_party/libxml/src/trio.h int trio_dscanfv TRIO_PROTO((int fd, TRIO_CONST char *format, void **args));
args              137 third_party/libxml/src/trio.h 			     TRIO_CONST char *format, va_list args));
args              139 third_party/libxml/src/trio.h 			     TRIO_CONST char *format, void **args));
args              142 third_party/libxml/src/trio.h int trio_vsscanf TRIO_PROTO((TRIO_CONST char *buffer, TRIO_CONST char *format, va_list args));
args              143 third_party/libxml/src/trio.h int trio_sscanfv TRIO_PROTO((TRIO_CONST char *buffer, TRIO_CONST char *format, void **args));
args              135 third_party/libxml/src/triop.h int trio_vprint_ref TRIO_PROTO((trio_pointer_t ref, const char *format, va_list args));
args              136 third_party/libxml/src/triop.h int trio_printv_ref TRIO_PROTO((trio_pointer_t ref, const char *format, trio_pointer_t *args));
args              636 third_party/libxml/src/xmllint.c     va_list args;
args              648 third_party/libxml/src/xmllint.c     va_start(args, msg);
args              650 third_party/libxml/src/xmllint.c     vsnprintf(&buffer[len],  sizeof(buffer) - len, msg, args);
args              651 third_party/libxml/src/xmllint.c     va_end(args);
args              673 third_party/libxml/src/xmllint.c     va_list args;
args              686 third_party/libxml/src/xmllint.c     va_start(args, msg);
args              688 third_party/libxml/src/xmllint.c     vsnprintf(&buffer[len],  sizeof(buffer) - len, msg, args);
args              689 third_party/libxml/src/xmllint.c     va_end(args);
args              711 third_party/libxml/src/xmllint.c     va_list args;
args              723 third_party/libxml/src/xmllint.c     va_start(args, msg);
args              724 third_party/libxml/src/xmllint.c     vsnprintf(&buffer[len],  sizeof(buffer) - len, msg, args);
args              725 third_party/libxml/src/xmllint.c     va_end(args);
args              748 third_party/libxml/src/xmllint.c     va_list args;
args              759 third_party/libxml/src/xmllint.c     va_start(args, msg);
args              761 third_party/libxml/src/xmllint.c     vsnprintf(&buffer[len],  sizeof(buffer) - len, msg, args);
args              762 third_party/libxml/src/xmllint.c     va_end(args);
args             1410 third_party/libxml/src/xmllint.c     va_list args;
args             1415 third_party/libxml/src/xmllint.c     va_start(args, msg);
args             1417 third_party/libxml/src/xmllint.c     vfprintf(stdout, msg, args);
args             1418 third_party/libxml/src/xmllint.c     va_end(args);
args             1433 third_party/libxml/src/xmllint.c     va_list args;
args             1438 third_party/libxml/src/xmllint.c     va_start(args, msg);
args             1440 third_party/libxml/src/xmllint.c     vfprintf(stdout, msg, args);
args             1441 third_party/libxml/src/xmllint.c     va_end(args);
args             1456 third_party/libxml/src/xmllint.c     va_list args;
args             1461 third_party/libxml/src/xmllint.c     va_start(args, msg);
args             1463 third_party/libxml/src/xmllint.c     vfprintf(stdout, msg, args);
args             1464 third_party/libxml/src/xmllint.c     va_end(args);
args              542 third_party/libxml/src/xmlstring.c     va_list args;
args              549 third_party/libxml/src/xmlstring.c     va_start(args, msg);
args              550 third_party/libxml/src/xmlstring.c     ret = vsnprintf((char *) buf, len, (const char *) msg, args);
args              551 third_party/libxml/src/xmlstring.c     va_end(args);
args              433 third_party/libxml/win32/include/libxml/xmlversion.h #  define LIBXML_ATTR_FORMAT(fmt,args) __attribute__((__format__(__printf__,fmt,args)))
args              435 third_party/libxml/win32/include/libxml/xmlversion.h #  define LIBXML_ATTR_FORMAT(fmt,args)
args              438 third_party/libxml/win32/include/libxml/xmlversion.h # define LIBXML_ATTR_FORMAT(fmt,args)
args              459 third_party/libxml/win32/include/libxml/xmlversion.h #define LIBXML_ATTR_FORMAT(fmt,args)
args               81 third_party/libxslt/libxslt/trio.h int trio_vprintf TRIO_PROTO((TRIO_CONST char *format, va_list args));
args               82 third_party/libxslt/libxslt/trio.h int trio_printfv TRIO_PROTO((TRIO_CONST char *format, void **args));
args               85 third_party/libxslt/libxslt/trio.h int trio_vfprintf TRIO_PROTO((FILE *file, TRIO_CONST char *format, va_list args));
args               86 third_party/libxslt/libxslt/trio.h int trio_fprintfv TRIO_PROTO((FILE *file, TRIO_CONST char *format, void **args));
args               89 third_party/libxslt/libxslt/trio.h int trio_vdprintf TRIO_PROTO((int fd, TRIO_CONST char *format, va_list args));
args               90 third_party/libxslt/libxslt/trio.h int trio_dprintfv TRIO_PROTO((int fd, TRIO_CONST char *format, void **args));
args               95 third_party/libxslt/libxslt/trio.h 			      TRIO_CONST char *format, va_list args));
args               97 third_party/libxslt/libxslt/trio.h 			      TRIO_CONST char *format, void **args));
args              100 third_party/libxslt/libxslt/trio.h int trio_vsprintf TRIO_PROTO((char *buffer, TRIO_CONST char *format, va_list args));
args              101 third_party/libxslt/libxslt/trio.h int trio_sprintfv TRIO_PROTO((char *buffer, TRIO_CONST char *format, void **args));
args              105 third_party/libxslt/libxslt/trio.h 		   va_list args));
args              107 third_party/libxslt/libxslt/trio.h 		   void **args));
args              111 third_party/libxslt/libxslt/trio.h                       va_list args));
args              114 third_party/libxslt/libxslt/trio.h char *trio_vaprintf TRIO_PROTO((TRIO_CONST char *format, va_list args));
args              117 third_party/libxslt/libxslt/trio.h int trio_vasprintf TRIO_PROTO((char **ret, TRIO_CONST char *format, va_list args));
args              123 third_party/libxslt/libxslt/trio.h int trio_vscanf TRIO_PROTO((TRIO_CONST char *format, va_list args));
args              124 third_party/libxslt/libxslt/trio.h int trio_scanfv TRIO_PROTO((TRIO_CONST char *format, void **args));
args              127 third_party/libxslt/libxslt/trio.h int trio_vfscanf TRIO_PROTO((FILE *file, TRIO_CONST char *format, va_list args));
args              128 third_party/libxslt/libxslt/trio.h int trio_fscanfv TRIO_PROTO((FILE *file, TRIO_CONST char *format, void **args));
args              131 third_party/libxslt/libxslt/trio.h int trio_vdscanf TRIO_PROTO((int fd, TRIO_CONST char *format, va_list args));
args              132 third_party/libxslt/libxslt/trio.h int trio_dscanfv TRIO_PROTO((int fd, TRIO_CONST char *format, void **args));
args              137 third_party/libxslt/libxslt/trio.h 			     TRIO_CONST char *format, va_list args));
args              139 third_party/libxslt/libxslt/trio.h 			     TRIO_CONST char *format, void **args));
args              142 third_party/libxslt/libxslt/trio.h int trio_vsscanf TRIO_PROTO((TRIO_CONST char *buffer, TRIO_CONST char *format, va_list args));
args              143 third_party/libxslt/libxslt/trio.h int trio_sscanfv TRIO_PROTO((TRIO_CONST char *buffer, TRIO_CONST char *format, void **args));
args              512 third_party/libxslt/libxslt/xsltutils.c     va_list args;
args              517 third_party/libxslt/libxslt/xsltutils.c     va_start(args, msg);
args              518 third_party/libxslt/libxslt/xsltutils.c     vfprintf((FILE *)xsltGenericErrorContext, msg, args);
args              519 third_party/libxslt/libxslt/xsltutils.c     va_end(args);
args              558 third_party/libxslt/libxslt/xsltutils.c     va_list args;
args              563 third_party/libxslt/libxslt/xsltutils.c     va_start(args, msg);
args              564 third_party/libxslt/libxslt/xsltutils.c     vfprintf((FILE *)xsltGenericDebugContext, msg, args);
args              565 third_party/libxslt/libxslt/xsltutils.c     va_end(args);
args              104 third_party/npapi/bindings/npfunctions.h typedef bool         (*NPN_InvokeProcPtr)(NPP npp, NPObject* obj, NPIdentifier methodName, const NPVariant *args, uint32_t argCount, NPVariant *result);
args              105 third_party/npapi/bindings/npfunctions.h typedef bool         (*NPN_InvokeDefaultProcPtr)(NPP npp, NPObject* obj, const NPVariant *args, uint32_t argCount, NPVariant *result);
args              118 third_party/npapi/bindings/npfunctions.h typedef bool         (*NPN_ConstructProcPtr)(NPP npp, NPObject* obj, const NPVariant *args, uint32_t argCount, NPVariant *result);
args              256 third_party/npapi/bindings/npruntime.h                                     const NPVariant *args, uint32_t argCount,
args              259 third_party/npapi/bindings/npruntime.h                                            const NPVariant *args,
args              272 third_party/npapi/bindings/npruntime.h                                        const NPVariant *args,
args              368 third_party/npapi/bindings/npruntime.h                 const NPVariant *args, uint32_t argCount, NPVariant *result);
args              369 third_party/npapi/bindings/npruntime.h bool NPN_InvokeDefault(NPP npp, NPObject *npobj, const NPVariant *args,
args              382 third_party/npapi/bindings/npruntime.h bool NPN_Construct(NPP npp, NPObject *npobj, const NPVariant *args,
args              521 third_party/npapi/npspy/common/npn_gate.cpp bool NPN_InvokeDefault(NPP id, NPObject* obj, const NPVariant* args, uint32_t count, NPVariant*result)
args              526 third_party/npapi/npspy/common/npn_gate.cpp   bool rv = NPNFuncs.invokeDefault(id, obj, args, count, result);
args              534 third_party/npapi/npspy/common/npn_gate.cpp bool NPN_Invoke(NPP id, NPObject* obj, NPIdentifier identifier, const NPVariant *args, uint32_t count, NPVariant*result)
args              539 third_party/npapi/npspy/common/npn_gate.cpp   bool rv = NPNFuncs.invoke(id, obj, identifier, args, count, result);
args              256 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jclass clazz, jmethodID methodID, va_list args);
args              258 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jclass clazz, jmethodID methodID, jvalue *args);
args              271 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jobject obj, jmethodID methodID, va_list args);
args              273 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jobject obj, jmethodID methodID, jvalue * args);
args              278 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jobject obj, jmethodID methodID, va_list args);
args              280 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jobject obj, jmethodID methodID, jvalue * args);
args              285 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jobject obj, jmethodID methodID, va_list args);
args              287 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jobject obj, jmethodID methodID, jvalue *args);
args              292 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jobject obj, jmethodID methodID, va_list args);
args              294 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jobject obj, jmethodID methodID, jvalue *args);
args              299 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jobject obj, jmethodID methodID, va_list args);
args              301 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jobject obj, jmethodID methodID, jvalue *args);
args              306 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jobject obj, jmethodID methodID, va_list args);
args              308 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jobject obj, jmethodID methodID, jvalue *args);
args              313 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jobject obj, jmethodID methodID, va_list args);
args              315 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jobject obj, jmethodID methodID, jvalue *args);
args              320 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jobject obj, jmethodID methodID, va_list args);
args              322 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jobject obj, jmethodID methodID, jvalue *args);
args              327 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jobject obj, jmethodID methodID, va_list args);
args              329 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jobject obj, jmethodID methodID, jvalue *args);
args              334 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jobject obj, jmethodID methodID, va_list args);
args              336 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jobject obj, jmethodID methodID, jvalue * args);
args              342 third_party/npapi/npspy/extern/java/jni.h        va_list args);
args              345 third_party/npapi/npspy/extern/java/jni.h        jvalue * args);
args              351 third_party/npapi/npspy/extern/java/jni.h        va_list args);
args              354 third_party/npapi/npspy/extern/java/jni.h        jvalue * args);
args              360 third_party/npapi/npspy/extern/java/jni.h        va_list args);
args              363 third_party/npapi/npspy/extern/java/jni.h        jvalue *args);
args              369 third_party/npapi/npspy/extern/java/jni.h        va_list args);
args              372 third_party/npapi/npspy/extern/java/jni.h        jvalue *args);
args              378 third_party/npapi/npspy/extern/java/jni.h        va_list args);
args              381 third_party/npapi/npspy/extern/java/jni.h        jvalue *args);
args              387 third_party/npapi/npspy/extern/java/jni.h        va_list args);
args              390 third_party/npapi/npspy/extern/java/jni.h        jvalue *args);
args              396 third_party/npapi/npspy/extern/java/jni.h        va_list args);
args              399 third_party/npapi/npspy/extern/java/jni.h        jvalue *args);
args              405 third_party/npapi/npspy/extern/java/jni.h        va_list args);
args              408 third_party/npapi/npspy/extern/java/jni.h        jvalue *args);
args              414 third_party/npapi/npspy/extern/java/jni.h        va_list args);
args              417 third_party/npapi/npspy/extern/java/jni.h        jvalue *args);
args              423 third_party/npapi/npspy/extern/java/jni.h        va_list args);
args              426 third_party/npapi/npspy/extern/java/jni.h        jvalue * args);
args              475 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jclass clazz, jmethodID methodID, va_list args);
args              477 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jclass clazz, jmethodID methodID, jvalue *args);
args              482 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jclass clazz, jmethodID methodID, va_list args);
args              484 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jclass clazz, jmethodID methodID, jvalue *args);
args              489 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jclass clazz, jmethodID methodID, va_list args);
args              491 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jclass clazz, jmethodID methodID, jvalue *args);
args              496 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jclass clazz, jmethodID methodID, va_list args);
args              498 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jclass clazz, jmethodID methodID, jvalue *args);
args              503 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jclass clazz, jmethodID methodID, va_list args);
args              505 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jclass clazz, jmethodID methodID, jvalue *args);
args              510 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jclass clazz, jmethodID methodID, va_list args);
args              512 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jclass clazz, jmethodID methodID, jvalue *args);
args              517 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jclass clazz, jmethodID methodID, va_list args);
args              519 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jclass clazz, jmethodID methodID, jvalue *args);
args              524 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jclass clazz, jmethodID methodID, va_list args);
args              526 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jclass clazz, jmethodID methodID, jvalue *args);
args              531 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jclass clazz, jmethodID methodID, va_list args);
args              533 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jclass clazz, jmethodID methodID, jvalue *args);
args              538 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jclass cls, jmethodID methodID, va_list args);
args              540 third_party/npapi/npspy/extern/java/jni.h       (JNIEnv *env, jclass cls, jmethodID methodID, jvalue * args);
args              783 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args              785 third_party/npapi/npspy/extern/java/jni.h 	va_start(args, methodID);
args              786 third_party/npapi/npspy/extern/java/jni.h         result = functions->NewObjectV(this,clazz,methodID,args);
args              787 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args              791 third_party/npapi/npspy/extern/java/jni.h 		       va_list args) {
args              792 third_party/npapi/npspy/extern/java/jni.h         return functions->NewObjectV(this,clazz,methodID,args);
args              795 third_party/npapi/npspy/extern/java/jni.h 		       jvalue *args) {
args              796 third_party/npapi/npspy/extern/java/jni.h         return functions->NewObjectA(this,clazz,methodID,args);
args              812 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args              814 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args              815 third_party/npapi/npspy/extern/java/jni.h 	result = functions->CallObjectMethodV(this,obj,methodID,args);
args              816 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args              820 third_party/npapi/npspy/extern/java/jni.h 			va_list args) {
args              821 third_party/npapi/npspy/extern/java/jni.h         return functions->CallObjectMethodV(this,obj,methodID,args);
args              824 third_party/npapi/npspy/extern/java/jni.h 			jvalue * args) {
args              825 third_party/npapi/npspy/extern/java/jni.h         return functions->CallObjectMethodA(this,obj,methodID,args);
args              830 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args              832 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args              833 third_party/npapi/npspy/extern/java/jni.h 	result = functions->CallBooleanMethodV(this,obj,methodID,args);
args              834 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args              838 third_party/npapi/npspy/extern/java/jni.h 				va_list args) {
args              839 third_party/npapi/npspy/extern/java/jni.h         return functions->CallBooleanMethodV(this,obj,methodID,args);
args              842 third_party/npapi/npspy/extern/java/jni.h 				jvalue * args) {
args              843 third_party/npapi/npspy/extern/java/jni.h         return functions->CallBooleanMethodA(this,obj,methodID, args);
args              847 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args              849 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args              850 third_party/npapi/npspy/extern/java/jni.h 	result = functions->CallByteMethodV(this,obj,methodID,args);
args              851 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args              855 third_party/npapi/npspy/extern/java/jni.h 			  va_list args) {
args              856 third_party/npapi/npspy/extern/java/jni.h         return functions->CallByteMethodV(this,obj,methodID,args);
args              859 third_party/npapi/npspy/extern/java/jni.h 			  jvalue * args) {
args              860 third_party/npapi/npspy/extern/java/jni.h         return functions->CallByteMethodA(this,obj,methodID,args);
args              864 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args              866 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args              867 third_party/npapi/npspy/extern/java/jni.h 	result = functions->CallCharMethodV(this,obj,methodID,args);
args              868 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args              872 third_party/npapi/npspy/extern/java/jni.h 			  va_list args) {
args              873 third_party/npapi/npspy/extern/java/jni.h         return functions->CallCharMethodV(this,obj,methodID,args);
args              876 third_party/npapi/npspy/extern/java/jni.h 			  jvalue * args) {
args              877 third_party/npapi/npspy/extern/java/jni.h         return functions->CallCharMethodA(this,obj,methodID,args);
args              881 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args              883 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args              884 third_party/npapi/npspy/extern/java/jni.h 	result = functions->CallShortMethodV(this,obj,methodID,args);
args              885 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args              889 third_party/npapi/npspy/extern/java/jni.h 			    va_list args) {
args              890 third_party/npapi/npspy/extern/java/jni.h         return functions->CallShortMethodV(this,obj,methodID,args);
args              893 third_party/npapi/npspy/extern/java/jni.h 			    jvalue * args) {
args              894 third_party/npapi/npspy/extern/java/jni.h         return functions->CallShortMethodA(this,obj,methodID,args);
args              898 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args              900 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args              901 third_party/npapi/npspy/extern/java/jni.h 	result = functions->CallIntMethodV(this,obj,methodID,args);
args              902 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args              906 third_party/npapi/npspy/extern/java/jni.h 			va_list args) {
args              907 third_party/npapi/npspy/extern/java/jni.h         return functions->CallIntMethodV(this,obj,methodID,args);
args              910 third_party/npapi/npspy/extern/java/jni.h 			jvalue * args) {
args              911 third_party/npapi/npspy/extern/java/jni.h         return functions->CallIntMethodA(this,obj,methodID,args);
args              915 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args              917 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args              918 third_party/npapi/npspy/extern/java/jni.h 	result = functions->CallLongMethodV(this,obj,methodID,args);
args              919 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args              923 third_party/npapi/npspy/extern/java/jni.h 			  va_list args) {
args              924 third_party/npapi/npspy/extern/java/jni.h         return functions->CallLongMethodV(this,obj,methodID,args);
args              927 third_party/npapi/npspy/extern/java/jni.h 			  jvalue * args) {
args              928 third_party/npapi/npspy/extern/java/jni.h         return functions->CallLongMethodA(this,obj,methodID,args);
args              932 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args              934 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args              935 third_party/npapi/npspy/extern/java/jni.h 	result = functions->CallFloatMethodV(this,obj,methodID,args);
args              936 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args              940 third_party/npapi/npspy/extern/java/jni.h 			    va_list args) {
args              941 third_party/npapi/npspy/extern/java/jni.h         return functions->CallFloatMethodV(this,obj,methodID,args);
args              944 third_party/npapi/npspy/extern/java/jni.h 			    jvalue * args) {
args              945 third_party/npapi/npspy/extern/java/jni.h         return functions->CallFloatMethodA(this,obj,methodID,args);
args              949 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args              951 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args              952 third_party/npapi/npspy/extern/java/jni.h 	result = functions->CallDoubleMethodV(this,obj,methodID,args);
args              953 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args              957 third_party/npapi/npspy/extern/java/jni.h 			va_list args) {
args              958 third_party/npapi/npspy/extern/java/jni.h         return functions->CallDoubleMethodV(this,obj,methodID,args);
args              961 third_party/npapi/npspy/extern/java/jni.h 			jvalue * args) {
args              962 third_party/npapi/npspy/extern/java/jni.h         return functions->CallDoubleMethodA(this,obj,methodID,args);
args              966 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args              967 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args              968 third_party/npapi/npspy/extern/java/jni.h 	functions->CallVoidMethodV(this,obj,methodID,args);
args              969 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args              972 third_party/npapi/npspy/extern/java/jni.h 			 va_list args) {
args              973 third_party/npapi/npspy/extern/java/jni.h         functions->CallVoidMethodV(this,obj,methodID,args);
args              976 third_party/npapi/npspy/extern/java/jni.h 			 jvalue * args) {
args              977 third_party/npapi/npspy/extern/java/jni.h         functions->CallVoidMethodA(this,obj,methodID,args);
args              982 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args              984 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args              986 third_party/npapi/npspy/extern/java/jni.h 							methodID,args);
args              987 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args              991 third_party/npapi/npspy/extern/java/jni.h 					jmethodID methodID, va_list args) {
args              993 third_party/npapi/npspy/extern/java/jni.h 						      methodID,args);
args              996 third_party/npapi/npspy/extern/java/jni.h 					jmethodID methodID, jvalue * args) {
args              998 third_party/npapi/npspy/extern/java/jni.h 						      methodID,args);
args             1003 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args             1005 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args             1007 third_party/npapi/npspy/extern/java/jni.h 							 methodID,args);
args             1008 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args             1012 third_party/npapi/npspy/extern/java/jni.h 					  jmethodID methodID, va_list args) {
args             1014 third_party/npapi/npspy/extern/java/jni.h 						       methodID,args);
args             1017 third_party/npapi/npspy/extern/java/jni.h 					  jmethodID methodID, jvalue * args) {
args             1019 third_party/npapi/npspy/extern/java/jni.h 						       methodID, args);
args             1024 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args             1026 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args             1028 third_party/npapi/npspy/extern/java/jni.h 						      methodID,args);
args             1029 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args             1033 third_party/npapi/npspy/extern/java/jni.h 				    jmethodID methodID, va_list args) {
args             1035 third_party/npapi/npspy/extern/java/jni.h 						    methodID,args);
args             1038 third_party/npapi/npspy/extern/java/jni.h 				    jmethodID methodID, jvalue * args) {
args             1040 third_party/npapi/npspy/extern/java/jni.h 						    methodID,args);
args             1045 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args             1047 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args             1049 third_party/npapi/npspy/extern/java/jni.h 						      methodID,args);
args             1050 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args             1054 third_party/npapi/npspy/extern/java/jni.h 				    jmethodID methodID, va_list args) {
args             1056 third_party/npapi/npspy/extern/java/jni.h 						    methodID,args);
args             1059 third_party/npapi/npspy/extern/java/jni.h 				    jmethodID methodID, jvalue * args) {
args             1061 third_party/npapi/npspy/extern/java/jni.h 						    methodID,args);
args             1066 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args             1068 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args             1070 third_party/npapi/npspy/extern/java/jni.h 						       methodID,args);
args             1071 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args             1075 third_party/npapi/npspy/extern/java/jni.h 				      jmethodID methodID, va_list args) {
args             1077 third_party/npapi/npspy/extern/java/jni.h 						     methodID,args);
args             1080 third_party/npapi/npspy/extern/java/jni.h 				      jmethodID methodID, jvalue * args) {
args             1082 third_party/npapi/npspy/extern/java/jni.h 						     methodID,args);
args             1087 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args             1089 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args             1091 third_party/npapi/npspy/extern/java/jni.h 						     methodID,args);
args             1092 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args             1096 third_party/npapi/npspy/extern/java/jni.h 				  jmethodID methodID, va_list args) {
args             1098 third_party/npapi/npspy/extern/java/jni.h 						   methodID,args);
args             1101 third_party/npapi/npspy/extern/java/jni.h 				  jmethodID methodID, jvalue * args) {
args             1103 third_party/npapi/npspy/extern/java/jni.h 						   methodID,args);
args             1108 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args             1110 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args             1112 third_party/npapi/npspy/extern/java/jni.h 						      methodID,args);
args             1113 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args             1117 third_party/npapi/npspy/extern/java/jni.h 				    jmethodID methodID, va_list args) {
args             1119 third_party/npapi/npspy/extern/java/jni.h 						    methodID,args);
args             1122 third_party/npapi/npspy/extern/java/jni.h 				    jmethodID methodID, jvalue * args) {
args             1124 third_party/npapi/npspy/extern/java/jni.h 						    methodID,args);
args             1129 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args             1131 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args             1133 third_party/npapi/npspy/extern/java/jni.h 						       methodID,args);
args             1134 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args             1139 third_party/npapi/npspy/extern/java/jni.h 				      va_list args) {
args             1141 third_party/npapi/npspy/extern/java/jni.h 						     methodID,args);
args             1145 third_party/npapi/npspy/extern/java/jni.h 				      jvalue * args) {
args             1147 third_party/npapi/npspy/extern/java/jni.h 						     methodID,args);
args             1152 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args             1154 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args             1156 third_party/npapi/npspy/extern/java/jni.h 							methodID,args);
args             1157 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args             1162 third_party/npapi/npspy/extern/java/jni.h 					va_list args) {
args             1164 third_party/npapi/npspy/extern/java/jni.h 						      methodID,args);
args             1168 third_party/npapi/npspy/extern/java/jni.h 					jvalue * args) {
args             1170 third_party/npapi/npspy/extern/java/jni.h 						      methodID,args);
args             1175 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args             1176 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args             1177 third_party/npapi/npspy/extern/java/jni.h 	functions->CallNonvirtualVoidMethodV(this,obj,clazz,methodID,args);
args             1178 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args             1182 third_party/npapi/npspy/extern/java/jni.h 				   va_list args) {
args             1183 third_party/npapi/npspy/extern/java/jni.h         functions->CallNonvirtualVoidMethodV(this,obj,clazz,methodID,args);
args             1187 third_party/npapi/npspy/extern/java/jni.h 				   jvalue * args) {
args             1188 third_party/npapi/npspy/extern/java/jni.h         functions->CallNonvirtualVoidMethodA(this,obj,clazz,methodID,args);
args             1267 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args             1269 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args             1270 third_party/npapi/npspy/extern/java/jni.h 	result = functions->CallStaticObjectMethodV(this,clazz,methodID,args);
args             1271 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args             1275 third_party/npapi/npspy/extern/java/jni.h 			      va_list args) {
args             1276 third_party/npapi/npspy/extern/java/jni.h         return functions->CallStaticObjectMethodV(this,clazz,methodID,args);
args             1279 third_party/npapi/npspy/extern/java/jni.h 			      jvalue *args) {
args             1280 third_party/npapi/npspy/extern/java/jni.h         return functions->CallStaticObjectMethodA(this,clazz,methodID,args);
args             1285 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args             1287 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args             1288 third_party/npapi/npspy/extern/java/jni.h 	result = functions->CallStaticBooleanMethodV(this,clazz,methodID,args);
args             1289 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args             1293 third_party/npapi/npspy/extern/java/jni.h 				      jmethodID methodID, va_list args) {
args             1294 third_party/npapi/npspy/extern/java/jni.h         return functions->CallStaticBooleanMethodV(this,clazz,methodID,args);
args             1297 third_party/npapi/npspy/extern/java/jni.h 				      jmethodID methodID, jvalue *args) {
args             1298 third_party/npapi/npspy/extern/java/jni.h         return functions->CallStaticBooleanMethodA(this,clazz,methodID,args);
args             1303 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args             1305 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args             1306 third_party/npapi/npspy/extern/java/jni.h 	result = functions->CallStaticByteMethodV(this,clazz,methodID,args);
args             1307 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args             1311 third_party/npapi/npspy/extern/java/jni.h 				jmethodID methodID, va_list args) {
args             1312 third_party/npapi/npspy/extern/java/jni.h         return functions->CallStaticByteMethodV(this,clazz,methodID,args);
args             1315 third_party/npapi/npspy/extern/java/jni.h 				jmethodID methodID, jvalue *args) {
args             1316 third_party/npapi/npspy/extern/java/jni.h         return functions->CallStaticByteMethodA(this,clazz,methodID,args);
args             1321 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args             1323 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args             1324 third_party/npapi/npspy/extern/java/jni.h 	result = functions->CallStaticCharMethodV(this,clazz,methodID,args);
args             1325 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args             1329 third_party/npapi/npspy/extern/java/jni.h 				jmethodID methodID, va_list args) {
args             1330 third_party/npapi/npspy/extern/java/jni.h         return functions->CallStaticCharMethodV(this,clazz,methodID,args);
args             1333 third_party/npapi/npspy/extern/java/jni.h 				jmethodID methodID, jvalue *args) {
args             1334 third_party/npapi/npspy/extern/java/jni.h         return functions->CallStaticCharMethodA(this,clazz,methodID,args);
args             1339 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args             1341 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args             1342 third_party/npapi/npspy/extern/java/jni.h 	result = functions->CallStaticShortMethodV(this,clazz,methodID,args);
args             1343 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args             1347 third_party/npapi/npspy/extern/java/jni.h 				  jmethodID methodID, va_list args) {
args             1348 third_party/npapi/npspy/extern/java/jni.h         return functions->CallStaticShortMethodV(this,clazz,methodID,args);
args             1351 third_party/npapi/npspy/extern/java/jni.h 				  jmethodID methodID, jvalue *args) {
args             1352 third_party/npapi/npspy/extern/java/jni.h         return functions->CallStaticShortMethodA(this,clazz,methodID,args);
args             1357 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args             1359 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args             1360 third_party/npapi/npspy/extern/java/jni.h 	result = functions->CallStaticIntMethodV(this,clazz,methodID,args);
args             1361 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args             1365 third_party/npapi/npspy/extern/java/jni.h 			      jmethodID methodID, va_list args) {
args             1366 third_party/npapi/npspy/extern/java/jni.h         return functions->CallStaticIntMethodV(this,clazz,methodID,args);
args             1369 third_party/npapi/npspy/extern/java/jni.h 			      jmethodID methodID, jvalue *args) {
args             1370 third_party/npapi/npspy/extern/java/jni.h         return functions->CallStaticIntMethodA(this,clazz,methodID,args);
args             1375 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args             1377 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args             1378 third_party/npapi/npspy/extern/java/jni.h 	result = functions->CallStaticLongMethodV(this,clazz,methodID,args);
args             1379 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args             1383 third_party/npapi/npspy/extern/java/jni.h 				jmethodID methodID, va_list args) {
args             1384 third_party/npapi/npspy/extern/java/jni.h         return functions->CallStaticLongMethodV(this,clazz,methodID,args);
args             1387 third_party/npapi/npspy/extern/java/jni.h 				jmethodID methodID, jvalue *args) {
args             1388 third_party/npapi/npspy/extern/java/jni.h         return functions->CallStaticLongMethodA(this,clazz,methodID,args);
args             1393 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args             1395 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args             1396 third_party/npapi/npspy/extern/java/jni.h 	result = functions->CallStaticFloatMethodV(this,clazz,methodID,args);
args             1397 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args             1401 third_party/npapi/npspy/extern/java/jni.h 				  jmethodID methodID, va_list args) {
args             1402 third_party/npapi/npspy/extern/java/jni.h         return functions->CallStaticFloatMethodV(this,clazz,methodID,args);
args             1405 third_party/npapi/npspy/extern/java/jni.h 				  jmethodID methodID, jvalue *args) {
args             1406 third_party/npapi/npspy/extern/java/jni.h         return functions->CallStaticFloatMethodA(this,clazz,methodID,args);
args             1411 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args             1413 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args             1414 third_party/npapi/npspy/extern/java/jni.h 	result = functions->CallStaticDoubleMethodV(this,clazz,methodID,args);
args             1415 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args             1419 third_party/npapi/npspy/extern/java/jni.h 				    jmethodID methodID, va_list args) {
args             1420 third_party/npapi/npspy/extern/java/jni.h         return functions->CallStaticDoubleMethodV(this,clazz,methodID,args);
args             1423 third_party/npapi/npspy/extern/java/jni.h 				    jmethodID methodID, jvalue *args) {
args             1424 third_party/npapi/npspy/extern/java/jni.h         return functions->CallStaticDoubleMethodA(this,clazz,methodID,args);
args             1428 third_party/npapi/npspy/extern/java/jni.h         va_list args;
args             1429 third_party/npapi/npspy/extern/java/jni.h 	va_start(args,methodID);
args             1430 third_party/npapi/npspy/extern/java/jni.h 	functions->CallStaticVoidMethodV(this,cls,methodID,args);
args             1431 third_party/npapi/npspy/extern/java/jni.h 	va_end(args);
args             1434 third_party/npapi/npspy/extern/java/jni.h 			       va_list args) {
args             1435 third_party/npapi/npspy/extern/java/jni.h         functions->CallStaticVoidMethodV(this,cls,methodID,args);
args             1438 third_party/npapi/npspy/extern/java/jni.h 			       jvalue * args) {
args             1439 third_party/npapi/npspy/extern/java/jni.h         functions->CallStaticVoidMethodA(this,cls,methodID,args);
args             1746 third_party/npapi/npspy/extern/java/jni.h     jint (JNICALL *vfprintf)(FILE *fp, const char *format, va_list args);
args             1772 third_party/npapi/npspy/extern/java/jni.h       (JavaVM *vm, JNIEnv **penv, void *args);
args             1787 third_party/npapi/npspy/extern/java/jni.h     jint AttachCurrentThread(JNIEnv **penv, void *args) {
args             1788 third_party/npapi/npspy/extern/java/jni.h         return functions->AttachCurrentThread(this, penv, args);
args              102 third_party/npapi/npspy/extern/java/jri.h #define JRI_NewObjectV(env, clazz, methodID, args)	\
args              103 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->NewObjectV)(env, JRI_NewObject_op_va_list, clazz, methodID, args))
args              104 third_party/npapi/npspy/extern/java/jri.h #define JRI_NewObjectA(env, clazz, method, args)	\
args              105 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->NewObjectA)(env, JRI_NewObject_op_array, clazz, methodID, args))
args              117 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallMethodV(env, obj, methodID, args)	\
args              118 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallMethodV)(env, JRI_CallMethod_op_va_list, obj, methodID, args))
args              119 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallMethodA(env, obj, methodID, args)	\
args              120 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallMethodA)(env, JRI_CallMethod_op_array, obj, methodID, args))
args              123 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallMethodBooleanV(env, obj, methodID, args)	\
args              124 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallMethodBooleanV)(env, JRI_CallMethodBoolean_op_va_list, obj, methodID, args))
args              125 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallMethodBooleanA(env, obj, methodID, args)	\
args              126 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallMethodBooleanA)(env, JRI_CallMethodBoolean_op_array, obj, methodID, args))
args              129 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallMethodByteV(env, obj, methodID, args)	\
args              130 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallMethodByteV)(env, JRI_CallMethodByte_op_va_list, obj, methodID, args))
args              131 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallMethodByteA(env, obj, methodID, args)	\
args              132 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallMethodByteA)(env, JRI_CallMethodByte_op_array, obj, methodID, args))
args              135 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallMethodCharV(env, obj, methodID, args)	\
args              136 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallMethodCharV)(env, JRI_CallMethodChar_op_va_list, obj, methodID, args))
args              137 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallMethodCharA(env, obj, methodID, args)	\
args              138 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallMethodCharA)(env, JRI_CallMethodChar_op_array, obj, methodID, args))
args              141 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallMethodShortV(env, obj, methodID, args)	\
args              142 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallMethodShortV)(env, JRI_CallMethodShort_op_va_list, obj, methodID, args))
args              143 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallMethodShortA(env, obj, methodID, args)	\
args              144 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallMethodShortA)(env, JRI_CallMethodShort_op_array, obj, methodID, args))
args              147 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallMethodIntV(env, obj, methodID, args)	\
args              148 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallMethodIntV)(env, JRI_CallMethodInt_op_va_list, obj, methodID, args))
args              149 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallMethodIntA(env, obj, methodID, args)	\
args              150 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallMethodIntA)(env, JRI_CallMethodInt_op_array, obj, methodID, args))
args              153 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallMethodLongV(env, obj, methodID, args)	\
args              154 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallMethodLongV)(env, JRI_CallMethodLong_op_va_list, obj, methodID, args))
args              155 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallMethodLongA(env, obj, methodID, args)	\
args              156 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallMethodLongA)(env, JRI_CallMethodLong_op_array, obj, methodID, args))
args              159 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallMethodFloatV(env, obj, methodID, args)	\
args              160 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallMethodFloatV)(env, JRI_CallMethodFloat_op_va_list, obj, methodID, args))
args              161 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallMethodFloatA(env, obj, methodID, args)	\
args              162 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallMethodFloatA)(env, JRI_CallMethodFloat_op_array, obj, methodID, args))
args              165 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallMethodDoubleV(env, obj, methodID, args)	\
args              166 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallMethodDoubleV)(env, JRI_CallMethodDouble_op_va_list, obj, methodID, args))
args              167 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallMethodDoubleA(env, obj, methodID, args)	\
args              168 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallMethodDoubleA)(env, JRI_CallMethodDouble_op_array, obj, methodID, args))
args              234 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallStaticMethodV(env, clazz, methodID, args)	\
args              235 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallStaticMethodV)(env, JRI_CallStaticMethod_op_va_list, clazz, methodID, args))
args              236 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallStaticMethodA(env, clazz, methodID, args)	\
args              237 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallStaticMethodA)(env, JRI_CallStaticMethod_op_array, clazz, methodID, args))
args              240 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallStaticMethodBooleanV(env, clazz, methodID, args)	\
args              241 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallStaticMethodBooleanV)(env, JRI_CallStaticMethodBoolean_op_va_list, clazz, methodID, args))
args              242 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallStaticMethodBooleanA(env, clazz, methodID, args)	\
args              243 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallStaticMethodBooleanA)(env, JRI_CallStaticMethodBoolean_op_array, clazz, methodID, args))
args              246 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallStaticMethodByteV(env, clazz, methodID, args)	\
args              247 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallStaticMethodByteV)(env, JRI_CallStaticMethodByte_op_va_list, clazz, methodID, args))
args              248 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallStaticMethodByteA(env, clazz, methodID, args)	\
args              249 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallStaticMethodByteA)(env, JRI_CallStaticMethodByte_op_array, clazz, methodID, args))
args              252 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallStaticMethodCharV(env, clazz, methodID, args)	\
args              253 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallStaticMethodCharV)(env, JRI_CallStaticMethodChar_op_va_list, clazz, methodID, args))
args              254 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallStaticMethodCharA(env, clazz, methodID, args)	\
args              255 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallStaticMethodCharA)(env, JRI_CallStaticMethodChar_op_array, clazz, methodID, args))
args              258 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallStaticMethodShortV(env, clazz, methodID, args)	\
args              259 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallStaticMethodShortV)(env, JRI_CallStaticMethodShort_op_va_list, clazz, methodID, args))
args              260 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallStaticMethodShortA(env, clazz, methodID, args)	\
args              261 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallStaticMethodShortA)(env, JRI_CallStaticMethodShort_op_array, clazz, methodID, args))
args              264 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallStaticMethodIntV(env, clazz, methodID, args)	\
args              265 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallStaticMethodIntV)(env, JRI_CallStaticMethodInt_op_va_list, clazz, methodID, args))
args              266 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallStaticMethodIntA(env, clazz, methodID, args)	\
args              267 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallStaticMethodIntA)(env, JRI_CallStaticMethodInt_op_array, clazz, methodID, args))
args              270 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallStaticMethodLongV(env, clazz, methodID, args)	\
args              271 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallStaticMethodLongV)(env, JRI_CallStaticMethodLong_op_va_list, clazz, methodID, args))
args              272 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallStaticMethodLongA(env, clazz, methodID, args)	\
args              273 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallStaticMethodLongA)(env, JRI_CallStaticMethodLong_op_array, clazz, methodID, args))
args              276 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallStaticMethodFloatV(env, clazz, methodID, args)	\
args              277 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallStaticMethodFloatV)(env, JRI_CallStaticMethodFloat_op_va_list, clazz, methodID, args))
args              278 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallStaticMethodFloatA(env, clazz, methodID, args)	\
args              279 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallStaticMethodFloatA)(env, JRI_CallStaticMethodFloat_op_array, clazz, methodID, args))
args              282 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallStaticMethodDoubleV(env, clazz, methodID, args)	\
args              283 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallStaticMethodDoubleV)(env, JRI_CallStaticMethodDouble_op_va_list, clazz, methodID, args))
args              284 third_party/npapi/npspy/extern/java/jri.h #define JRI_CallStaticMethodDoubleA(env, clazz, methodID, args)	\
args              285 third_party/npapi/npspy/extern/java/jri.h 	(((*(env))->CallStaticMethodDoubleA)(env, JRI_CallStaticMethodDouble_op_array, clazz, methodID, args))
args              133 third_party/npapi/npspy/extern/java/jritypes.h #define JRISigMethod(args)	"(" args ")"
args              217 third_party/npapi/npspy/extern/nspr/prlog.h #define PR_LOG(module,level,args)
args              228 third_party/npapi/npspy/extern/nspr/prlog.h #define PR_LOG_BEGIN(module,level,args)
args              229 third_party/npapi/npspy/extern/nspr/prlog.h #define PR_LOG_END(module,level,args)
args              282 third_party/npapi/npspy/extern/plugin/npruntime.h                                     const NPVariant *args, uint32_t argCount,
args              285 third_party/npapi/npspy/extern/plugin/npruntime.h                                            const NPVariant *args,
args              384 third_party/npapi/npspy/extern/plugin/npruntime.h                 const NPVariant *args, uint32_t argCount, NPVariant *result);
args              385 third_party/npapi/npspy/extern/plugin/npruntime.h bool NPN_InvokeDefault(NPP npp, NPObject *npobj, const NPVariant *args,
args              397 third_party/npapi/npspy/extern/plugin/npupp.h typedef bool (* NP_LOADDS NPN_InvokeUPP)(NPP npp, NPObject* obj, NPIdentifier methodName, const NPVariant *args, uint32_t argCount, NPVariant *result);
args              404 third_party/npapi/npspy/extern/plugin/npupp.h typedef bool (* NP_LOADDS NPN_InvokeDefaultUPP)(NPP npp, NPObject* obj, const NPVariant *args, uint32_t argCount, NPVariant *result);
args              148 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static int CMessageInit(CMessage* self, PyObject *args, PyObject *kwds);
args              151 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_AddMessage(CMessage* self, PyObject* args);
args              152 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_AddRepeatedScalar(CMessage* self, PyObject* args);
args              153 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_AssignRepeatedScalar(CMessage* self, PyObject* args);
args              154 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_ByteSize(CMessage* self, PyObject* args);
args              155 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_Clear(CMessage* self, PyObject* args);
args              156 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_ClearField(CMessage* self, PyObject* args);
args              158 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc     CMessage* self, PyObject* args);
args              159 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_CopyFrom(CMessage* self, PyObject* args);
args              160 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_DebugString(CMessage* self, PyObject* args);
args              161 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_DeleteRepeatedField(CMessage* self, PyObject* args);
args              162 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_Equals(CMessage* self, PyObject* args);
args              163 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_FieldLength(CMessage* self, PyObject* args);
args              165 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_GetRepeatedMessage(CMessage* self, PyObject* args);
args              166 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_GetRepeatedScalar(CMessage* self, PyObject* args);
args              167 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_GetScalar(CMessage* self, PyObject* args);
args              168 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_HasField(CMessage* self, PyObject* args);
args              169 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_HasFieldByDescriptor(CMessage* self, PyObject* args);
args              170 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_IsInitialized(CMessage* self, PyObject* args);
args              171 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_ListFields(CMessage* self, PyObject* args);
args              172 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_MergeFrom(CMessage* self, PyObject* args);
args              173 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_MergeFromString(CMessage* self, PyObject* args);
args              174 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_MutableMessage(CMessage* self, PyObject* args);
args              175 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_NewSubMessage(CMessage* self, PyObject* args);
args              176 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_SetScalar(CMessage* self, PyObject* args);
args              178 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc     CMessage* self, PyObject* args);
args              179 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_SerializeToString(CMessage* self, PyObject* args);
args              180 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_SetInParent(CMessage* self, PyObject* args);
args              182 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc     CMessage* self, PyObject* args);
args              199 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc #define CMETHOD(name, args, doc)   \
args              200 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc   { C(#name), (PyCFunction)CMessage_##name, args, C(doc) }
args              959 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static int CMessageInit(CMessage* self, PyObject *args, PyObject *kwds) {
args             1014 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_IsInitialized(CMessage* self, PyObject* args) {
args             1092 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_ClearField(CMessage* self, PyObject* args) {
args             1095 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc   if (!PyArg_ParseTuple(args, C("s|O!:ClearField"), &field_name,
args             1130 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_GetRepeatedScalar(CMessage* self, PyObject* args) {
args             1133 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc   if (!PyArg_ParseTuple(args, C("O!O:GetRepeatedScalar"),
args             1142 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_AssignRepeatedScalar(CMessage* self, PyObject* args) {
args             1145 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc   if (!PyArg_ParseTuple(args, C("O!O:AssignRepeatedScalar"),
args             1169 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_DeleteRepeatedField(CMessage* self, PyObject* args) {
args             1172 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc   if (!PyArg_ParseTuple(args, C("O!O:DeleteRepeatedField"),
args             1242 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_SetScalar(CMessage* self, PyObject* args) {
args             1245 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc   if (!PyArg_ParseTuple(args, C("O!O:SetScalar"),
args             1254 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_AddRepeatedScalar(CMessage* self, PyObject* args) {
args             1257 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc   if (!PyArg_ParseTuple(args, C("O!O:AddRepeatedScalar"),
args             1282 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_DebugString(CMessage* self, PyObject* args) {
args             1286 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_SerializeToString(CMessage* self, PyObject* args) {
args             1302 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc     CMessage* self, PyObject* args) {
args             1381 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_ByteSize(CMessage* self, PyObject* args) {
args             1385 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_SetInParent(CMessage* self, PyObject* args) {
args             1391 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc     CMessage* self, PyObject* args) {
args             1394 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc   if (!PyArg_ParseTuple(args, C("O!ii:SwapRepeatedFieldElements"),
args             1436 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_GetRepeatedMessage(CMessage* self, PyObject* args) {
args             1439 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc   if (!PyArg_ParseTuple(args, C("O!O:GetRepeatedMessage"),
args             1525 third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc static PyObject* CMessage_ListFields(CMessage* self, PyObject* args) {
args              284 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc PyObject* Python_NewCDescriptorPool(PyObject* ignored, PyObject* args) {
args               78 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.h PyObject* Python_NewCDescriptorPool(PyObject* ignored, PyObject* args);
args               79 third_party/protobuf/python/google/protobuf/pyext/python_descriptor.h PyObject* Python_BuildFile(PyObject* ignored, PyObject* args);
args              258 third_party/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc   vector<string> args;
args              259 third_party/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc   SplitStringUsing(command, " ", &args);
args              294 third_party/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc       args.push_back("--plugin=prefix-gen-plug=" + plugin_path);
args              298 third_party/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc   scoped_array<const char*> argv(new const char*[args.size()]);
args              300 third_party/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc   for (int i = 0; i < args.size(); i++) {
args              301 third_party/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc     args[i] = StringReplace(args[i], "$tmpdir", temp_directory_, true);
args              302 third_party/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc     argv[i] = args[i].c_str();
args              307 third_party/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc   return_code_ = cli_.Run(args.size(), argv.get());
args             1444 third_party/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc     vector<string> args;
args             1445 third_party/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc     args.push_back("protoc");
args             1446 third_party/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc     SplitStringUsing(command, " ", &args);
args             1447 third_party/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc     args.push_back("--proto_path=" + TestSourceDir());
args             1449 third_party/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc     scoped_array<const char*> argv(new const char*[args.size()]);
args             1450 third_party/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc     for (int i = 0; i < args.size(); i++) {
args             1451 third_party/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc       argv[i] = args[i].c_str();
args             1460 third_party/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc     int result = cli.Run(args.size(), argv.get());
args              317 third_party/re2/re2/re2.cc                      const Arg* const args[], int n) {
args              318 third_party/re2/re2/re2.cc   return re.DoMatch(text, ANCHOR_BOTH, NULL, args, n);
args              322 third_party/re2/re2/re2.cc                         const Arg* const args[], int n) {
args              323 third_party/re2/re2/re2.cc   return re.DoMatch(text, UNANCHORED, NULL, args, n);
args              327 third_party/re2/re2/re2.cc                    const Arg* const args[], int n) {
args              329 third_party/re2/re2/re2.cc   if (re.DoMatch(*input, ANCHOR_START, &consumed, args, n)) {
args              338 third_party/re2/re2/re2.cc                           const Arg* const args[], int n) {
args              340 third_party/re2/re2/re2.cc   if (re.DoMatch(*input, UNANCHORED, &consumed, args, n)) {
args              804 third_party/re2/re2/re2.cc                   const Arg* const* args,
args              838 third_party/re2/re2/re2.cc   if (n == 0 || args == NULL) {
args              855 third_party/re2/re2/re2.cc     if (!args[i]->Parse(s.data(), s.size())) {
args              329 third_party/re2/re2/re2.h                          const Arg* const args[], int argc);
args              336 third_party/re2/re2/re2.h                             const Arg* const args[], int argc);
args              344 third_party/re2/re2/re2.h                        const Arg* const args[], int argc);
args              353 third_party/re2/re2/re2.h                              const Arg* const args[], int argc);
args              687 third_party/re2/re2/re2.h                    const Arg* const args[],
args              255 third_party/re2/re2/testing/re2_test.cc   const RE2::Arg* const args[2] = { &argv[0], &argv[1] };
args              258 third_party/re2/re2/testing/re2_test.cc   EXPECT_TRUE(RE2::ConsumeN(&input, "\\s*(\\w+)", args, 0));  // Skips "one".
args              263 third_party/re2/re2/testing/re2_test.cc   EXPECT_TRUE(RE2::ConsumeN(&input, "\\s*(\\w+)", args, 1));
args              269 third_party/re2/re2/testing/re2_test.cc   EXPECT_TRUE(RE2::ConsumeN(&input, "\\s*(\\w+)\\s*(\\d+)", args, 2));
args              304 third_party/re2/re2/testing/re2_test.cc   const RE2::Arg* const args[2] = { &argv[0], &argv[1] };
args              307 third_party/re2/re2/testing/re2_test.cc   EXPECT_TRUE(RE2::FindAndConsumeN(&input, "(\\w+)", args, 0));  // Skips "one".
args              312 third_party/re2/re2/testing/re2_test.cc   EXPECT_TRUE(RE2::FindAndConsumeN(&input, "(\\w+)", args, 1));
args              318 third_party/re2/re2/testing/re2_test.cc   EXPECT_TRUE(RE2::FindAndConsumeN(&input, "(\\w+)\\s*(\\d+)", args, 2));
args              532 third_party/re2/re2/testing/re2_test.cc   const RE2::Arg* const args[2] = { &argv[0], &argv[1] };
args              535 third_party/re2/re2/testing/re2_test.cc   EXPECT_TRUE(RE2::PartialMatchN("hello", "e.*o", args, 0));
args              536 third_party/re2/re2/testing/re2_test.cc   EXPECT_FALSE(RE2::PartialMatchN("othello", "a.*o", args, 0));
args              541 third_party/re2/re2/testing/re2_test.cc   EXPECT_TRUE(RE2::PartialMatchN("1001 nights", "(\\d+)", args, 1));
args              543 third_party/re2/re2/testing/re2_test.cc   EXPECT_FALSE(RE2::PartialMatchN("three", "(\\d+)", args, 1));
args              548 third_party/re2/re2/testing/re2_test.cc   EXPECT_TRUE(RE2::PartialMatchN("answer: 42:life", "(\\d+):(\\w+)", args, 2));
args              551 third_party/re2/re2/testing/re2_test.cc   EXPECT_FALSE(RE2::PartialMatchN("hi1", "(\\w+)(1)", args, 2));
args              616 third_party/re2/re2/testing/re2_test.cc   const RE2::Arg* const args[2] = { &argv[0], &argv[1] };
args              619 third_party/re2/re2/testing/re2_test.cc   EXPECT_TRUE(RE2::FullMatchN("hello", "h.*o", args, 0));
args              620 third_party/re2/re2/testing/re2_test.cc   EXPECT_FALSE(RE2::FullMatchN("othello", "h.*o", args, 0));
args              625 third_party/re2/re2/testing/re2_test.cc   EXPECT_TRUE(RE2::FullMatchN("1001", "(\\d+)", args, 1));
args              627 third_party/re2/re2/testing/re2_test.cc   EXPECT_FALSE(RE2::FullMatchN("three", "(\\d+)", args, 1));
args              632 third_party/re2/re2/testing/re2_test.cc   EXPECT_TRUE(RE2::FullMatchN("42:life", "(\\d+):(\\w+)", args, 2));
args              635 third_party/re2/re2/testing/re2_test.cc   EXPECT_FALSE(RE2::FullMatchN("hi1", "(\\w+)(1)", args, 2));
args               19 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0 };
args               20 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 1);
args               24 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1 };
args               25 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 2);
args               30 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2 };
args               31 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 3);
args               36 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3 };
args               37 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 4);
args               42 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4 };
args               43 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 5);
args               48 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5 };
args               49 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 6);
args               55 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6 };
args               56 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 7);
args               62 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6, &a7 };
args               63 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 8);
args               69 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6, &a7, &a8 };
args               70 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 9);
args               76 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6, &a7, &a8,
args               78 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 10);
args               85 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6, &a7, &a8,
args               87 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 11);
args               94 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6, &a7, &a8,
args               96 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 12);
args              103 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6, &a7, &a8,
args              105 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 13);
args              112 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6, &a7, &a8,
args              114 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 14);
args              122 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6, &a7, &a8,
args              124 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 15);
args              132 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6, &a7, &a8,
args              134 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 16);
args              142 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6, &a7, &a8,
args              144 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 17);
args              152 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6, &a7, &a8,
args              154 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 18);
args              163 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6, &a7, &a8,
args              165 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 19);
args              174 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6, &a7, &a8,
args              176 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 20);
args              185 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6, &a7, &a8,
args              188 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 21);
args              197 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6, &a7, &a8,
args              200 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 22);
args              210 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6, &a7, &a8,
args              213 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 23);
args              223 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6, &a7, &a8,
args              226 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 24);
args              236 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6, &a7, &a8,
args              239 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 25);
args              249 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6, &a7, &a8,
args              252 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 26);
args              263 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6, &a7, &a8,
args              266 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 27);
args              277 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6, &a7, &a8,
args              280 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 28);
args              291 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6, &a7, &a8,
args              294 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 29);
args              305 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6, &a7, &a8,
args              308 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 30);
args              320 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6, &a7, &a8,
args              323 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 31);
args              335 third_party/re2/re2/variadic_function.h     const Arg* const args[] = { &a0, &a1, &a2, &a3, &a4, &a5, &a6, &a7, &a8,
args              338 third_party/re2/re2/variadic_function.h     return Func(p0, p1, args, 32);
args              165 third_party/re2/util/pcre.cc   const Arg* args[kMaxArgs];
args              167 third_party/re2/util/pcre.cc   if (&a0 == &no_more_args)  goto done; args[n++] = &a0;
args              168 third_party/re2/util/pcre.cc   if (&a1 == &no_more_args)  goto done; args[n++] = &a1;
args              169 third_party/re2/util/pcre.cc   if (&a2 == &no_more_args)  goto done; args[n++] = &a2;
args              170 third_party/re2/util/pcre.cc   if (&a3 == &no_more_args)  goto done; args[n++] = &a3;
args              171 third_party/re2/util/pcre.cc   if (&a4 == &no_more_args)  goto done; args[n++] = &a4;
args              172 third_party/re2/util/pcre.cc   if (&a5 == &no_more_args)  goto done; args[n++] = &a5;
args              173 third_party/re2/util/pcre.cc   if (&a6 == &no_more_args)  goto done; args[n++] = &a6;
args              174 third_party/re2/util/pcre.cc   if (&a7 == &no_more_args)  goto done; args[n++] = &a7;
args              175 third_party/re2/util/pcre.cc   if (&a8 == &no_more_args)  goto done; args[n++] = &a8;
args              176 third_party/re2/util/pcre.cc   if (&a9 == &no_more_args)  goto done; args[n++] = &a9;
args              177 third_party/re2/util/pcre.cc   if (&a10 == &no_more_args) goto done; args[n++] = &a10;
args              178 third_party/re2/util/pcre.cc   if (&a11 == &no_more_args) goto done; args[n++] = &a11;
args              179 third_party/re2/util/pcre.cc   if (&a12 == &no_more_args) goto done; args[n++] = &a12;
args              180 third_party/re2/util/pcre.cc   if (&a13 == &no_more_args) goto done; args[n++] = &a13;
args              181 third_party/re2/util/pcre.cc   if (&a14 == &no_more_args) goto done; args[n++] = &a14;
args              182 third_party/re2/util/pcre.cc   if (&a15 == &no_more_args) goto done; args[n++] = &a15;
args              187 third_party/re2/util/pcre.cc   return re.DoMatchImpl(text, ANCHOR_BOTH, &consumed, args, n, vec, kVecSize);
args              208 third_party/re2/util/pcre.cc   const Arg* args[kMaxArgs];
args              210 third_party/re2/util/pcre.cc   if (&a0 == &no_more_args)  goto done; args[n++] = &a0;
args              211 third_party/re2/util/pcre.cc   if (&a1 == &no_more_args)  goto done; args[n++] = &a1;
args              212 third_party/re2/util/pcre.cc   if (&a2 == &no_more_args)  goto done; args[n++] = &a2;
args              213 third_party/re2/util/pcre.cc   if (&a3 == &no_more_args)  goto done; args[n++] = &a3;
args              214 third_party/re2/util/pcre.cc   if (&a4 == &no_more_args)  goto done; args[n++] = &a4;
args              215 third_party/re2/util/pcre.cc   if (&a5 == &no_more_args)  goto done; args[n++] = &a5;
args              216 third_party/re2/util/pcre.cc   if (&a6 == &no_more_args)  goto done; args[n++] = &a6;
args              217 third_party/re2/util/pcre.cc   if (&a7 == &no_more_args)  goto done; args[n++] = &a7;
args              218 third_party/re2/util/pcre.cc   if (&a8 == &no_more_args)  goto done; args[n++] = &a8;
args              219 third_party/re2/util/pcre.cc   if (&a9 == &no_more_args)  goto done; args[n++] = &a9;
args              220 third_party/re2/util/pcre.cc   if (&a10 == &no_more_args) goto done; args[n++] = &a10;
args              221 third_party/re2/util/pcre.cc   if (&a11 == &no_more_args) goto done; args[n++] = &a11;
args              222 third_party/re2/util/pcre.cc   if (&a12 == &no_more_args) goto done; args[n++] = &a12;
args              223 third_party/re2/util/pcre.cc   if (&a13 == &no_more_args) goto done; args[n++] = &a13;
args              224 third_party/re2/util/pcre.cc   if (&a14 == &no_more_args) goto done; args[n++] = &a14;
args              225 third_party/re2/util/pcre.cc   if (&a15 == &no_more_args) goto done; args[n++] = &a15;
args              230 third_party/re2/util/pcre.cc   return re.DoMatchImpl(text, UNANCHORED, &consumed, args, n, vec, kVecSize);
args              251 third_party/re2/util/pcre.cc   const Arg* args[kMaxArgs];
args              253 third_party/re2/util/pcre.cc   if (&a0 == &no_more_args)  goto done; args[n++] = &a0;
args              254 third_party/re2/util/pcre.cc   if (&a1 == &no_more_args)  goto done; args[n++] = &a1;
args              255 third_party/re2/util/pcre.cc   if (&a2 == &no_more_args)  goto done; args[n++] = &a2;
args              256 third_party/re2/util/pcre.cc   if (&a3 == &no_more_args)  goto done; args[n++] = &a3;
args              257 third_party/re2/util/pcre.cc   if (&a4 == &no_more_args)  goto done; args[n++] = &a4;
args              258 third_party/re2/util/pcre.cc   if (&a5 == &no_more_args)  goto done; args[n++] = &a5;
args              259 third_party/re2/util/pcre.cc   if (&a6 == &no_more_args)  goto done; args[n++] = &a6;
args              260 third_party/re2/util/pcre.cc   if (&a7 == &no_more_args)  goto done; args[n++] = &a7;
args              261 third_party/re2/util/pcre.cc   if (&a8 == &no_more_args)  goto done; args[n++] = &a8;
args              262 third_party/re2/util/pcre.cc   if (&a9 == &no_more_args)  goto done; args[n++] = &a9;
args              263 third_party/re2/util/pcre.cc   if (&a10 == &no_more_args) goto done; args[n++] = &a10;
args              264 third_party/re2/util/pcre.cc   if (&a11 == &no_more_args) goto done; args[n++] = &a11;
args              265 third_party/re2/util/pcre.cc   if (&a12 == &no_more_args) goto done; args[n++] = &a12;
args              266 third_party/re2/util/pcre.cc   if (&a13 == &no_more_args) goto done; args[n++] = &a13;
args              267 third_party/re2/util/pcre.cc   if (&a14 == &no_more_args) goto done; args[n++] = &a14;
args              268 third_party/re2/util/pcre.cc   if (&a15 == &no_more_args) goto done; args[n++] = &a15;
args              274 third_party/re2/util/pcre.cc                           args, n, vec, kVecSize)) {
args              300 third_party/re2/util/pcre.cc   const Arg* args[kMaxArgs];
args              302 third_party/re2/util/pcre.cc   if (&a0 == &no_more_args)  goto done; args[n++] = &a0;
args              303 third_party/re2/util/pcre.cc   if (&a1 == &no_more_args)  goto done; args[n++] = &a1;
args              304 third_party/re2/util/pcre.cc   if (&a2 == &no_more_args)  goto done; args[n++] = &a2;
args              305 third_party/re2/util/pcre.cc   if (&a3 == &no_more_args)  goto done; args[n++] = &a3;
args              306 third_party/re2/util/pcre.cc   if (&a4 == &no_more_args)  goto done; args[n++] = &a4;
args              307 third_party/re2/util/pcre.cc   if (&a5 == &no_more_args)  goto done; args[n++] = &a5;
args              308 third_party/re2/util/pcre.cc   if (&a6 == &no_more_args)  goto done; args[n++] = &a6;
args              309 third_party/re2/util/pcre.cc   if (&a7 == &no_more_args)  goto done; args[n++] = &a7;
args              310 third_party/re2/util/pcre.cc   if (&a8 == &no_more_args)  goto done; args[n++] = &a8;
args              311 third_party/re2/util/pcre.cc   if (&a9 == &no_more_args)  goto done; args[n++] = &a9;
args              312 third_party/re2/util/pcre.cc   if (&a10 == &no_more_args) goto done; args[n++] = &a10;
args              313 third_party/re2/util/pcre.cc   if (&a11 == &no_more_args) goto done; args[n++] = &a11;
args              314 third_party/re2/util/pcre.cc   if (&a12 == &no_more_args) goto done; args[n++] = &a12;
args              315 third_party/re2/util/pcre.cc   if (&a13 == &no_more_args) goto done; args[n++] = &a13;
args              316 third_party/re2/util/pcre.cc   if (&a14 == &no_more_args) goto done; args[n++] = &a14;
args              317 third_party/re2/util/pcre.cc   if (&a15 == &no_more_args) goto done; args[n++] = &a15;
args              323 third_party/re2/util/pcre.cc                           args, n, vec, kVecSize)) {
args              561 third_party/re2/util/pcre.cc                      const Arg* const* args,
args              573 third_party/re2/util/pcre.cc   if (n == 0 || args == NULL) {
args              588 third_party/re2/util/pcre.cc     if (!args[i]->Parse(text.data() + start, limit-start)) {
args              600 third_party/re2/util/pcre.cc                  const Arg* const args[],
args              606 third_party/re2/util/pcre.cc   bool b = DoMatchImpl(text, anchor, consumed, args, n, vec, vecsize);
args              462 third_party/re2/util/pcre.h                const Arg* const* args, int n) const;
args              502 third_party/re2/util/pcre.h                    const Arg* const args[],
args              128 third_party/simplejson/_speedups.c scanner_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
args              130 third_party/simplejson/_speedups.c scanner_init(PyObject *self, PyObject *args, PyObject *kwds);
args              136 third_party/simplejson/_speedups.c encoder_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
args              138 third_party/simplejson/_speedups.c encoder_init(PyObject *self, PyObject *args, PyObject *kwds);
args              923 third_party/simplejson/_speedups.c py_scanstring(PyObject* self UNUSED, PyObject *args)
args              931 third_party/simplejson/_speedups.c     if (!PyArg_ParseTuple(args, "OO&|zi:scanstring", &pystr, _convertPyInt_AsSsize_t, &end, &encoding, &strict)) {
args             1883 third_party/simplejson/_speedups.c scanner_call(PyObject *self, PyObject *args, PyObject *kwds)
args             1894 third_party/simplejson/_speedups.c     if (!PyArg_ParseTupleAndKeywords(args, kwds, "OO&:scan_once", kwlist, &pystr, _convertPyInt_AsSsize_t, &idx))
args             1914 third_party/simplejson/_speedups.c scanner_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
args             1931 third_party/simplejson/_speedups.c scanner_init(PyObject *self, PyObject *args, PyObject *kwds)
args             1941 third_party/simplejson/_speedups.c     if (!PyArg_ParseTupleAndKeywords(args, kwds, "O:make_scanner", kwlist, &ctx))
args             2046 third_party/simplejson/_speedups.c encoder_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
args             2067 third_party/simplejson/_speedups.c encoder_init(PyObject *self, PyObject *args, PyObject *kwds)
args             2081 third_party/simplejson/_speedups.c     if (!PyArg_ParseTupleAndKeywords(args, kwds, "OOOOOOOOOOOOOOOO:make_encoder", kwlist,
args             2121 third_party/simplejson/_speedups.c encoder_call(PyObject *self, PyObject *args, PyObject *kwds)
args             2131 third_party/simplejson/_speedups.c     if (!PyArg_ParseTupleAndKeywords(args, kwds, "OO&:_iterencode", kwlist,
args              248 third_party/talloc/libreplace/snprintf.c 	va_list args;
args              256 third_party/talloc/libreplace/snprintf.c 	VA_COPY(args, args_in);
args              543 third_party/talloc/libreplace/snprintf.c 			va_arg (args, int);
args              559 third_party/talloc/libreplace/snprintf.c 				cnk->value = va_arg (args, int);
args              561 third_party/talloc/libreplace/snprintf.c 				cnk->value = va_arg (args, long int);
args              563 third_party/talloc/libreplace/snprintf.c 				cnk->value = va_arg (args, LLONG);
args              565 third_party/talloc/libreplace/snprintf.c 				cnk->value = va_arg (args, ssize_t);
args              567 third_party/talloc/libreplace/snprintf.c 				cnk->value = va_arg (args, int);
args              578 third_party/talloc/libreplace/snprintf.c 				cnk->value = va_arg (args, unsigned int);
args              580 third_party/talloc/libreplace/snprintf.c 				cnk->value = (unsigned long int)va_arg (args, unsigned long int);
args              582 third_party/talloc/libreplace/snprintf.c 				cnk->value = (LLONG)va_arg (args, unsigned LLONG);
args              584 third_party/talloc/libreplace/snprintf.c 				cnk->value = (size_t)va_arg (args, size_t);
args              586 third_party/talloc/libreplace/snprintf.c 				cnk->value = (unsigned int)va_arg (args, unsigned int);
args              595 third_party/talloc/libreplace/snprintf.c 				cnk->fvalue = va_arg (args, LDOUBLE);
args              597 third_party/talloc/libreplace/snprintf.c 				cnk->fvalue = va_arg (args, double);
args              605 third_party/talloc/libreplace/snprintf.c 			cnk->value = va_arg (args, int);
args              613 third_party/talloc/libreplace/snprintf.c 			cnk->strvalue = va_arg (args, char *);
args              622 third_party/talloc/libreplace/snprintf.c 			cnk->strvalue = va_arg (args, void *);
args              630 third_party/talloc/libreplace/snprintf.c 				cnk->pnum = va_arg (args, char *);
args              632 third_party/talloc/libreplace/snprintf.c 				cnk->pnum = va_arg (args, short int *);
args              634 third_party/talloc/libreplace/snprintf.c 				cnk->pnum = va_arg (args, long int *);
args              636 third_party/talloc/libreplace/snprintf.c 				cnk->pnum = va_arg (args, LLONG *);
args              638 third_party/talloc/libreplace/snprintf.c 				cnk->pnum = va_arg (args, ssize_t *);
args              640 third_party/talloc/libreplace/snprintf.c 				cnk->pnum = va_arg (args, int *);
args              745 third_party/talloc/libreplace/snprintf.c 	va_end(args);
args             1189 third_party/talloc/libreplace/snprintf.c  int vsnprintf (char *str, size_t count, const char *fmt, va_list args)
args             1191 third_party/talloc/libreplace/snprintf.c 	return dopr(str, count, fmt, args);
args               31 third_party/talloc/libreplace/strptime.c #  define __P(args) args
args               33 third_party/talloc/libreplace/strptime.c #  define __P(args) ()
args              806 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h     #define LSS_BODY(type,args...)                                            \
args              814 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h                            args                                               \
args             1060 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h     #define LSS_BODY(nr, type, name, args...) \
args             1061 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h       _LSS_BODY(nr, type, name, uintptr_t, ## args)
args             1277 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h     #define LSS_BODY(type, name, args...)                                     \
args             1283 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h                                 : __SYS_REG_LIST(args)                        \
args             1720 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h     #define LSS_BODY(nr, type, name, args...)                                 \
args             1731 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h             LSS_LOADARGS_##nr(name, args);                                    \
args             2147 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h     #define LSS_SC_BODY(nr, type, opt, args...)                               \
args             2157 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h           LSS_SC_LOADARGS_##nr(args);                                         \
args             2194 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h       unsigned long args[3] = {
args             2199 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h       return LSS_NAME(socketcall)(1, args);
args              246 third_party/tcmalloc/chromium/src/base/linuxthreads.cc static void ListerThread(struct ListerParams *args) {
args              266 third_party/tcmalloc/chromium/src/base/linuxthreads.cc     args->result = -1;
args              267 third_party/tcmalloc/chromium/src/base/linuxthreads.cc     args->err    = errno;
args              296 third_party/tcmalloc/chromium/src/base/linuxthreads.cc   altstack.ss_sp    = args->altstack_mem;
args              488 third_party/tcmalloc/chromium/src/base/linuxthreads.cc         args->result = args->callback(args->parameter, num_threads,
args              489 third_party/tcmalloc/chromium/src/base/linuxthreads.cc                                       pids, args->ap);
args              490 third_party/tcmalloc/chromium/src/base/linuxthreads.cc         args->err = errno;
args              495 third_party/tcmalloc/chromium/src/base/linuxthreads.cc           args->err    = EINVAL;
args              496 third_party/tcmalloc/chromium/src/base/linuxthreads.cc           args->result = -1;
args              535 third_party/tcmalloc/chromium/src/base/linuxthreads.cc   struct ListerParams    args;
args              540 third_party/tcmalloc/chromium/src/base/linuxthreads.cc   va_start(args.ap, callback);
args              563 third_party/tcmalloc/chromium/src/base/linuxthreads.cc   args.result       = -1;
args              564 third_party/tcmalloc/chromium/src/base/linuxthreads.cc   args.err          = 0;
args              565 third_party/tcmalloc/chromium/src/base/linuxthreads.cc   args.altstack_mem = altstack_mem;
args              566 third_party/tcmalloc/chromium/src/base/linuxthreads.cc   args.parameter    = parameter;
args              567 third_party/tcmalloc/chromium/src/base/linuxthreads.cc   args.callback     = callback;
args              576 third_party/tcmalloc/chromium/src/base/linuxthreads.cc     args.err = errno;
args              577 third_party/tcmalloc/chromium/src/base/linuxthreads.cc     args.result = -1;
args              601 third_party/tcmalloc/chromium/src/base/linuxthreads.cc     clone_pid = local_clone((int (*)(void *))ListerThread, &args);
args              613 third_party/tcmalloc/chromium/src/base/linuxthreads.cc         args.err = ERRNO;
args              614 third_party/tcmalloc/chromium/src/base/linuxthreads.cc         args.result = -1;
args              618 third_party/tcmalloc/chromium/src/base/linuxthreads.cc           case 2: args.err = EFAULT; /* Some fault (e.g. SIGSEGV) detected   */
args              619 third_party/tcmalloc/chromium/src/base/linuxthreads.cc                   args.result = -1;
args              621 third_party/tcmalloc/chromium/src/base/linuxthreads.cc           case 3: args.err = EPERM;  /* Process is already being traced      */
args              622 third_party/tcmalloc/chromium/src/base/linuxthreads.cc                   args.result = -1;
args              624 third_party/tcmalloc/chromium/src/base/linuxthreads.cc           default:args.err = ECHILD; /* Child died unexpectedly              */
args              625 third_party/tcmalloc/chromium/src/base/linuxthreads.cc                   args.result = -1;
args              629 third_party/tcmalloc/chromium/src/base/linuxthreads.cc         args.err    = EFAULT;        /* Terminated due to an unhandled signal*/
args              630 third_party/tcmalloc/chromium/src/base/linuxthreads.cc         args.result = -1;
args              633 third_party/tcmalloc/chromium/src/base/linuxthreads.cc       args.result = -1;
args              634 third_party/tcmalloc/chromium/src/base/linuxthreads.cc       args.err    = clone_errno;
args              643 third_party/tcmalloc/chromium/src/base/linuxthreads.cc   va_end(args.ap);
args              645 third_party/tcmalloc/chromium/src/base/linuxthreads.cc   errno = args.err;
args              646 third_party/tcmalloc/chromium/src/base/linuxthreads.cc   return args.result;
args              286 third_party/tcmalloc/chromium/src/heap-profile-table.cc   const AllocationAddressIteratorArgs args(f, data);
args              288 third_party/tcmalloc/chromium/src/heap-profile-table.cc       AllocationAddressesIterator, args);
args              292 third_party/tcmalloc/chromium/src/heap-profile-table.cc   const MarkArgs args(mark, true);
args              293 third_party/tcmalloc/chromium/src/heap-profile-table.cc   address_map_->Iterate<const MarkArgs&>(MarkIterator, args);
args              297 third_party/tcmalloc/chromium/src/heap-profile-table.cc   const MarkArgs args(mark, false);
args              298 third_party/tcmalloc/chromium/src/heap-profile-table.cc   address_map_->Iterate<const MarkArgs&>(MarkIterator, args);
args              359 third_party/tcmalloc/chromium/src/heap-profile-table.cc   const DumpMarkedArgs args(fd, mark);
args              360 third_party/tcmalloc/chromium/src/heap-profile-table.cc   address_map_->Iterate<const DumpMarkedArgs&>(DumpMarkedIterator, args);
args              378 third_party/tcmalloc/chromium/src/heap-profile-table.cc   const DumpArgs args(fd, NULL);
args              379 third_party/tcmalloc/chromium/src/heap-profile-table.cc   type_size_map->Iterate<const DumpArgs&>(DumpTypesIterator, args);
args              449 third_party/tcmalloc/chromium/src/heap-profile-table.cc                                           BufferArgs* args) {
args              450 third_party/tcmalloc/chromium/src/heap-profile-table.cc   args->buflen = UnparseBucket(*bucket, args->buf, args->buflen, args->bufsize,
args              478 third_party/tcmalloc/chromium/src/heap-profile-table.cc                                          const DumpArgs& args) {
args              485 third_party/tcmalloc/chromium/src/heap-profile-table.cc   RawWrite(args.fd, buf, len);
args              491 third_party/tcmalloc/chromium/src/heap-profile-table.cc                                            const DumpArgs& args) {
args              506 third_party/tcmalloc/chromium/src/heap-profile-table.cc   int len = UnparseBucket(b, buf, 0, sizeof(buf), "", args.profile_stats);
args              507 third_party/tcmalloc/chromium/src/heap-profile-table.cc   RawWrite(args.fd, buf, len);
args              512 third_party/tcmalloc/chromium/src/heap-profile-table.cc                                           const DumpMarkedArgs& args) {
args              513 third_party/tcmalloc/chromium/src/heap-profile-table.cc   if (v->mark() != args.mark)
args              525 third_party/tcmalloc/chromium/src/heap-profile-table.cc   RawWrite(args.fd, buf, len);
args              532 third_party/tcmalloc/chromium/src/heap-profile-table.cc     const AllocationAddressIteratorArgs& args) {
args              533 third_party/tcmalloc/chromium/src/heap-profile-table.cc   args.callback(args.data, ptr);
args              538 third_party/tcmalloc/chromium/src/heap-profile-table.cc                                     const MarkArgs& args) {
args              539 third_party/tcmalloc/chromium/src/heap-profile-table.cc   if (!args.mark_all && v->mark() != UNMARKED)
args              541 third_party/tcmalloc/chromium/src/heap-profile-table.cc   v->set_mark(args.mark);
args              573 third_party/tcmalloc/chromium/src/heap-profile-table.cc   const DumpArgs args(fd, NULL);
args              574 third_party/tcmalloc/chromium/src/heap-profile-table.cc   allocations->Iterate<const DumpArgs&>(DumpNonLiveIterator, args);
args              632 third_party/tcmalloc/chromium/src/heap-profile-table.cc   AddNonLiveArgs args;
args              633 third_party/tcmalloc/chromium/src/heap-profile-table.cc   args.dest = s;
args              634 third_party/tcmalloc/chromium/src/heap-profile-table.cc   args.base = base;
args              635 third_party/tcmalloc/chromium/src/heap-profile-table.cc   address_map_->Iterate<AddNonLiveArgs*>(AddIfNonLive, &args);
args              390 third_party/tcmalloc/chromium/src/heap-profile-table.h                                         BufferArgs* args);
args              396 third_party/tcmalloc/chromium/src/heap-profile-table.h       const AllocationAddressIteratorArgs& args);
args              400 third_party/tcmalloc/chromium/src/heap-profile-table.h                                   const MarkArgs& args);
args              405 third_party/tcmalloc/chromium/src/heap-profile-table.h                                          const DumpArgs& args);
args              410 third_party/tcmalloc/chromium/src/heap-profile-table.h                                         const DumpMarkedArgs& args);
args              419 third_party/tcmalloc/chromium/src/heap-profile-table.h                                        const DumpArgs& args);
args              507 third_party/tcmalloc/chromium/src/malloc_hook.cc #define INVOKE_HOOKS(HookType, hook_list, args) do {                    \
args              511 third_party/tcmalloc/chromium/src/malloc_hook.cc       (*hooks[i])args;                                                  \
args              517 third_party/tcmalloc/chromium/src/malloc_hook.cc #define INVOKE_REPLACEMENT(HookType, hook_list, args) do {              \
args              520 third_party/tcmalloc/chromium/src/malloc_hook.cc     return (num_hooks > 0 && (*hooks[0])args);                          \
args              130 third_party/tcmalloc/chromium/src/malloc_hook_mmap_linux.h     int32 args[6] = { (int32) start, (int32) length, prot, flags, fd,
args              132 third_party/tcmalloc/chromium/src/malloc_hook_mmap_linux.h     result = (void *)syscall(SYS_mmap, args);
args              794 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h     #define LSS_BODY(type,args...)                                            \
args              802 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h                            args                                               \
args             1193 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h     #define LSS_BODY(type, name, args...)                                     \
args             1199 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h                                 : __SYS_REG_LIST(args)                        \
args             1636 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h     #define LSS_BODY(nr, type, name, args...)                                 \
args             1647 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h             LSS_LOADARGS_##nr(name, args);                                    \
args             2051 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h     #define LSS_SC_BODY(nr, type, opt, args...)                               \
args             2061 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h           LSS_SC_LOADARGS_##nr(args);                                         \
args             2098 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h       unsigned long args[3] = {
args             2103 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h       return LSS_NAME(socketcall)(1, args);
args              246 third_party/tcmalloc/vendor/src/base/linuxthreads.cc static void ListerThread(struct ListerParams *args) {
args              266 third_party/tcmalloc/vendor/src/base/linuxthreads.cc     args->result = -1;
args              267 third_party/tcmalloc/vendor/src/base/linuxthreads.cc     args->err    = errno;
args              296 third_party/tcmalloc/vendor/src/base/linuxthreads.cc   altstack.ss_sp    = args->altstack_mem;
args              488 third_party/tcmalloc/vendor/src/base/linuxthreads.cc         args->result = args->callback(args->parameter, num_threads,
args              489 third_party/tcmalloc/vendor/src/base/linuxthreads.cc                                       pids, args->ap);
args              490 third_party/tcmalloc/vendor/src/base/linuxthreads.cc         args->err = errno;
args              495 third_party/tcmalloc/vendor/src/base/linuxthreads.cc           args->err    = EINVAL;
args              496 third_party/tcmalloc/vendor/src/base/linuxthreads.cc           args->result = -1;
args              535 third_party/tcmalloc/vendor/src/base/linuxthreads.cc   struct ListerParams    args;
args              540 third_party/tcmalloc/vendor/src/base/linuxthreads.cc   va_start(args.ap, callback);
args              563 third_party/tcmalloc/vendor/src/base/linuxthreads.cc   args.result       = -1;
args              564 third_party/tcmalloc/vendor/src/base/linuxthreads.cc   args.err          = 0;
args              565 third_party/tcmalloc/vendor/src/base/linuxthreads.cc   args.altstack_mem = altstack_mem;
args              566 third_party/tcmalloc/vendor/src/base/linuxthreads.cc   args.parameter    = parameter;
args              567 third_party/tcmalloc/vendor/src/base/linuxthreads.cc   args.callback     = callback;
args              576 third_party/tcmalloc/vendor/src/base/linuxthreads.cc     args.err = errno;
args              577 third_party/tcmalloc/vendor/src/base/linuxthreads.cc     args.result = -1;
args              601 third_party/tcmalloc/vendor/src/base/linuxthreads.cc     clone_pid = local_clone((int (*)(void *))ListerThread, &args);
args              613 third_party/tcmalloc/vendor/src/base/linuxthreads.cc         args.err = ERRNO;
args              614 third_party/tcmalloc/vendor/src/base/linuxthreads.cc         args.result = -1;
args              618 third_party/tcmalloc/vendor/src/base/linuxthreads.cc           case 2: args.err = EFAULT; /* Some fault (e.g. SIGSEGV) detected   */
args              619 third_party/tcmalloc/vendor/src/base/linuxthreads.cc                   args.result = -1;
args              621 third_party/tcmalloc/vendor/src/base/linuxthreads.cc           case 3: args.err = EPERM;  /* Process is already being traced      */
args              622 third_party/tcmalloc/vendor/src/base/linuxthreads.cc                   args.result = -1;
args              624 third_party/tcmalloc/vendor/src/base/linuxthreads.cc           default:args.err = ECHILD; /* Child died unexpectedly              */
args              625 third_party/tcmalloc/vendor/src/base/linuxthreads.cc                   args.result = -1;
args              629 third_party/tcmalloc/vendor/src/base/linuxthreads.cc         args.err    = EFAULT;        /* Terminated due to an unhandled signal*/
args              630 third_party/tcmalloc/vendor/src/base/linuxthreads.cc         args.result = -1;
args              633 third_party/tcmalloc/vendor/src/base/linuxthreads.cc       args.result = -1;
args              634 third_party/tcmalloc/vendor/src/base/linuxthreads.cc       args.err    = clone_errno;
args              643 third_party/tcmalloc/vendor/src/base/linuxthreads.cc   va_end(args.ap);
args              645 third_party/tcmalloc/vendor/src/base/linuxthreads.cc   errno = args.err;
args              646 third_party/tcmalloc/vendor/src/base/linuxthreads.cc   return args.result;
args              458 third_party/tcmalloc/vendor/src/heap-profile-table.cc                                            const DumpArgs& args) {
args              473 third_party/tcmalloc/vendor/src/heap-profile-table.cc   int len = UnparseBucket(b, buf, 0, sizeof(buf), "", args.profile_stats);
args              474 third_party/tcmalloc/vendor/src/heap-profile-table.cc   RawWrite(args.fd, buf, len);
args              514 third_party/tcmalloc/vendor/src/heap-profile-table.cc     const DumpArgs args(fd, NULL);
args              515 third_party/tcmalloc/vendor/src/heap-profile-table.cc     allocations->Iterate<const DumpArgs&>(DumpNonLiveIterator, args);
args              574 third_party/tcmalloc/vendor/src/heap-profile-table.cc   AddNonLiveArgs args;
args              575 third_party/tcmalloc/vendor/src/heap-profile-table.cc   args.dest = s;
args              576 third_party/tcmalloc/vendor/src/heap-profile-table.cc   args.base = base;
args              577 third_party/tcmalloc/vendor/src/heap-profile-table.cc   alloc_address_map_->Iterate<AddNonLiveArgs*>(AddIfNonLive, &args);
args              306 third_party/tcmalloc/vendor/src/heap-profile-table.h                                          const DumpArgs& args);
args              507 third_party/tcmalloc/vendor/src/malloc_hook.cc #define INVOKE_HOOKS(HookType, hook_list, args) do {                    \
args              511 third_party/tcmalloc/vendor/src/malloc_hook.cc       (*hooks[i])args;                                                  \
args              517 third_party/tcmalloc/vendor/src/malloc_hook.cc #define INVOKE_REPLACEMENT(HookType, hook_list, args) do {              \
args              520 third_party/tcmalloc/vendor/src/malloc_hook.cc     return (num_hooks > 0 && (*hooks[0])args);                          \
args              106 third_party/tcmalloc/vendor/src/malloc_hook_mmap_linux.h     int32 args[6] = { (int32) start, (int32) length, prot, flags, fd,
args              108 third_party/tcmalloc/vendor/src/malloc_hook_mmap_linux.h     result = (void *)syscall(SYS_mmap, args);
args               23 third_party/tlslite/tlslite/utils/entropy.c static PyObject* entropy(PyObject *self, PyObject *args)
args               36 third_party/tlslite/tlslite/utils/entropy.c     if (!PyArg_ParseTuple(args, "i", &howMany))
args              104 third_party/tlslite/tlslite/utils/entropy.c static PyObject* entropy(PyObject *self, PyObject *args)
args              113 third_party/tlslite/tlslite/utils/entropy.c     if (!PyArg_ParseTuple(args, "i", &howMany))
args              149 third_party/tlslite/tlslite/utils/entropy.c static PyObject* entropy(PyObject *self, PyObject *args)
args                7 third_party/tlslite/tlslite/utils/win32prng.c static PyObject* getRandomBytes(PyObject *self, PyObject *args)
args               16 third_party/tlslite/tlslite/utils/win32prng.c     if (!PyArg_ParseTuple(args, "i", &howMany))
args              122 third_party/v4l2capture/v4l2capture.c static int Video_device_init(Video_device *self, PyObject *args,
args              127 third_party/v4l2capture/v4l2capture.c   if(!PyArg_ParseTuple(args, "s", &device_path))
args              208 third_party/v4l2capture/v4l2capture.c static PyObject *Video_device_set_format(Video_device *self, PyObject *args)
args              212 third_party/v4l2capture/v4l2capture.c   if(!PyArg_ParseTuple(args, "ii", &size_x, &size_y))
args              233 third_party/v4l2capture/v4l2capture.c static PyObject *Video_device_set_fps(Video_device *self, PyObject *args)
args              236 third_party/v4l2capture/v4l2capture.c   if(!PyArg_ParseTuple(args, "i", &fps))
args              279 third_party/v4l2capture/v4l2capture.c static PyObject *Video_device_create_buffers(Video_device *self, PyObject *args)
args              283 third_party/v4l2capture/v4l2capture.c   if(!PyArg_ParseTuple(args, "I", &buffer_count))
args              842 third_party/wtl/include/atlapp.h 	inline int vsprintf_x(LPTSTR lpstrBuff, size_t cchBuff, LPCTSTR lpstrFormat, va_list args)
args              845 third_party/wtl/include/atlapp.h 		return _vstprintf_s(lpstrBuff, cchBuff, lpstrFormat, args);
args              848 third_party/wtl/include/atlapp.h 		return _vstprintf(lpstrBuff, lpstrFormat, args);
args              852 third_party/wtl/include/atlapp.h 	inline int wvsprintf_x(LPTSTR lpstrBuff, size_t cchBuff, LPCTSTR lpstrFormat, va_list args)
args              855 third_party/wtl/include/atlapp.h 		return _vstprintf_s(lpstrBuff, cchBuff, lpstrFormat, args);
args              858 third_party/wtl/include/atlapp.h 		return ::wvsprintf(lpstrBuff, lpstrFormat, args);
args              864 third_party/wtl/include/atlapp.h 		va_list args;
args              865 third_party/wtl/include/atlapp.h 		va_start(args, lpstrFormat);
args              866 third_party/wtl/include/atlapp.h 		int nRes = vsprintf_x(lpstrBuff, cchBuff, lpstrFormat, args);
args              867 third_party/wtl/include/atlapp.h 		va_end(args);
args              873 third_party/wtl/include/atlapp.h 		va_list args;
args              874 third_party/wtl/include/atlapp.h 		va_start(args, lpstrFormat);
args              875 third_party/wtl/include/atlapp.h 		int nRes = wvsprintf_x(lpstrBuff, cchBuff, lpstrFormat, args);
args              876 third_party/wtl/include/atlapp.h 		va_end(args);
args              243 third_party/zlib/zconf.h #    define OF(args)  args
args              245 third_party/zlib/zconf.h #    define OF(args)  ()
args              421 tools/android/forwarder2/host_forwarder_main.cc   const std::vector<std::string> args = cmd_line.GetArgs();
args              425 tools/android/forwarder2/host_forwarder_main.cc     if (args.size() != 1)
args              428 tools/android/forwarder2/host_forwarder_main.cc     pickle.WriteInt(-PortToInt(args[0]));
args              430 tools/android/forwarder2/host_forwarder_main.cc     if (args.size() != 2)
args              432 tools/android/forwarder2/host_forwarder_main.cc     pickle.WriteInt(PortToInt(args[0]));
args              433 tools/android/forwarder2/host_forwarder_main.cc     pickle.WriteInt(PortToInt(args[1]));
args              438 tools/android/forwarder2/host_forwarder_main.cc   if (kill_server && args.size() > 0)
args              490 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java     public static void main(String[] args) throws Exception {
args              492 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java                 getArg(args, "--library"),
args              493 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java                 getArg(args, "--nm", "nm"),
args              494 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java                 getArg(args, "--nm-infile", null),
args              495 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java                 getArg(args, "--addr2line", "addr2line"),
args              496 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java                 getArg(args, "--outfile"),
args              497 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java                 getArg(args, "--skipfile", null),
args              498 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java                 getArg(args, "--failfile", null),
args              499 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java                 hasFlag(args, "--verbose"),
args              500 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java                 hasFlag(args, "--no-progress"),
args              501 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java                 hasFlag(args, "--no-dedupe"),
args              502 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java                 hasFlag(args, "--disambiguate"));
args              503 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java         tool.run(Integer.parseInt(getArg(args, "--threads", "1")));
args              506 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java     private static boolean hasFlag(String[] args, String name) {
args              507 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java         for (int x = 0; x < args.length; x++) if (name.equals(args[x])) return true;
args              511 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java     private static String getArg(String[] args, String name, String defaultValue) {
args              512 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java         for (int x = 0; x < args.length; x++) {
args              513 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java             if (name.equals(args[x])) {
args              514 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java                 if (x < args.length - 1) return args[x + 1];
args              521 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java     private static String getArg(String[] args, String name) {
args              522 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java         String result = getArg(args, name, null);
args              329 tools/clang/blink_gc_plugin/BlinkGCPlugin.cpp           const TemplateArgumentList& args =
args              332 tools/clang/blink_gc_plugin/BlinkGCPlugin.cpp           if (args.size() > 1 &&
args              333 tools/clang/blink_gc_plugin/BlinkGCPlugin.cpp               args[1].getKind() == TemplateArgument::Declaration) {
args              335 tools/clang/blink_gc_plugin/BlinkGCPlugin.cpp                     dyn_cast<FunctionDecl>(args[1].getAsDecl())) {
args             1322 tools/clang/blink_gc_plugin/BlinkGCPlugin.cpp                          const std::vector<string>& args) {
args             1325 tools/clang/blink_gc_plugin/BlinkGCPlugin.cpp     for (size_t i = 0; i < args.size() && parsed; ++i) {
args             1326 tools/clang/blink_gc_plugin/BlinkGCPlugin.cpp       if (args[i] == "enable-oilpan") {
args             1328 tools/clang/blink_gc_plugin/BlinkGCPlugin.cpp       } else if (args[i] == "dump-graph") {
args             1332 tools/clang/blink_gc_plugin/BlinkGCPlugin.cpp         llvm::errs() << "Unknown blink-gc-plugin argument: " << args[i] << "\n";
args               43 tools/clang/blink_gc_plugin/RecordInfo.cpp   const TemplateArgumentList& args = tmpl->getTemplateArgs();
args               44 tools/clang/blink_gc_plugin/RecordInfo.cpp   if (args.size() < count)
args               47 tools/clang/blink_gc_plugin/RecordInfo.cpp     count = args.size();
args               49 tools/clang/blink_gc_plugin/RecordInfo.cpp     TemplateArgument arg = args[i];
args               64 tools/clang/blink_gc_plugin/RecordInfo.cpp   TemplateArgs args;
args               65 tools/clang/blink_gc_plugin/RecordInfo.cpp   if (GetTemplateArgs(0, &args)) {
args               66 tools/clang/blink_gc_plugin/RecordInfo.cpp     for (TemplateArgs::iterator it = args.begin(); it != args.end(); ++it) {
args              447 tools/clang/blink_gc_plugin/RecordInfo.cpp   TemplateArgs args;
args              449 tools/clang/blink_gc_plugin/RecordInfo.cpp   if (Config::IsRawPtr(info->name()) && info->GetTemplateArgs(1, &args)) {
args              450 tools/clang/blink_gc_plugin/RecordInfo.cpp     if (Edge* ptr = CreateEdge(args[0]))
args              455 tools/clang/blink_gc_plugin/RecordInfo.cpp   if (Config::IsRefPtr(info->name()) && info->GetTemplateArgs(1, &args)) {
args              456 tools/clang/blink_gc_plugin/RecordInfo.cpp     if (Edge* ptr = CreateEdge(args[0]))
args              461 tools/clang/blink_gc_plugin/RecordInfo.cpp   if (Config::IsOwnPtr(info->name()) && info->GetTemplateArgs(1, &args)) {
args              462 tools/clang/blink_gc_plugin/RecordInfo.cpp     if (Edge* ptr = CreateEdge(args[0]))
args              467 tools/clang/blink_gc_plugin/RecordInfo.cpp   if (Config::IsMember(info->name()) && info->GetTemplateArgs(1, &args)) {
args              468 tools/clang/blink_gc_plugin/RecordInfo.cpp     if (Edge* ptr = CreateEdge(args[0]))
args              473 tools/clang/blink_gc_plugin/RecordInfo.cpp   if (Config::IsWeakMember(info->name()) && info->GetTemplateArgs(1, &args)) {
args              474 tools/clang/blink_gc_plugin/RecordInfo.cpp     if (Edge* ptr = CreateEdge(args[0]))
args              486 tools/clang/blink_gc_plugin/RecordInfo.cpp     if (!info->GetTemplateArgs(1, &args))
args              488 tools/clang/blink_gc_plugin/RecordInfo.cpp     if (Edge* ptr = CreateEdge(args[0]))
args              498 tools/clang/blink_gc_plugin/RecordInfo.cpp     if (!info->GetTemplateArgs(count, &args))
args              501 tools/clang/blink_gc_plugin/RecordInfo.cpp     for (TemplateArgs::iterator it = args.begin(); it != args.end(); ++it) {
args              746 tools/clang/plugins/FindBadConstructs.cpp                          const std::vector<std::string>& args) {
args              749 tools/clang/plugins/FindBadConstructs.cpp     for (size_t i = 0; i < args.size() && parsed; ++i) {
args              750 tools/clang/plugins/FindBadConstructs.cpp       if (args[i] == "skip-virtuals-in-implementations") {
args              753 tools/clang/plugins/FindBadConstructs.cpp       } else if (args[i] == "check-base-classes") {
args              756 tools/clang/plugins/FindBadConstructs.cpp       } else if (args[i] == "check-weak-ptr-factory-order") {
args              759 tools/clang/plugins/FindBadConstructs.cpp       } else if (args[i] == "check-enum-last-value") {
args              765 tools/clang/plugins/FindBadConstructs.cpp         llvm::errs() << "Unknown clang plugin argument: " << args[i] << "\n";
args              106 tools/gn/action_target_generator.cc   std::vector<std::string> args;
args              107 tools/gn/action_target_generator.cc   if (!ExtractListOfStringValues(*value, &args, err_))
args              109 tools/gn/action_target_generator.cc   target_->action_values().swap_in_args(&args);
args               26 tools/gn/action_values.h   std::vector<std::string>& args() { return args_; }
args               27 tools/gn/action_values.h   const std::vector<std::string>& args() const { return args_; }
args              111 tools/gn/args.cc bool Args::DeclareArgs(const Scope::KeyValueMap& args,
args              116 tools/gn/args.cc   for (Scope::KeyValueMap::const_iterator i = args.begin();
args              117 tools/gn/args.cc        i != args.end(); ++i) {
args               56 tools/gn/args.h   bool DeclareArgs(const Scope::KeyValueMap& args,
args              118 tools/gn/command_args.cc int RunArgs(const std::vector<std::string>& args) {
args              129 tools/gn/command_args.cc   if (args.size() == 1) {
args              131 tools/gn/command_args.cc     Scope::KeyValueMap::const_iterator found_arg = build_args.find(args[0]);
args              134 tools/gn/command_args.cc           "You asked for \"" + args[0] + "\" which I didn't find in any "
args              138 tools/gn/command_args.cc     PrintArgHelp(args[0], found_arg->second);
args              140 tools/gn/command_args.cc   } else if (args.size() > 1) {
args              302 tools/gn/command_desc.cc int RunDesc(const std::vector<std::string>& args) {
args              303 tools/gn/command_desc.cc   if (args.size() != 1 && args.size() != 2) {
args              309 tools/gn/command_desc.cc   const Target* target = GetTargetForDesc(args);
args              316 tools/gn/command_desc.cc   if (args.size() == 2) {
args              318 tools/gn/command_desc.cc     const std::string& what = args[1];
args               91 tools/gn/command_gen.cc int RunGen(const std::vector<std::string>& args) {
args               94 tools/gn/command_gen.cc   if (args.size() != 1) {
args              103 tools/gn/command_gen.cc   if (!setup->DoSetup(args[0]))
args              112 tools/gn/command_help.cc int RunHelp(const std::vector<std::string>& args) {
args              113 tools/gn/command_help.cc   if (args.size() == 0) {
args              121 tools/gn/command_help.cc       command_map.find(args[0]);
args              130 tools/gn/command_help.cc       function_map.find(args[0]);
args              140 tools/gn/command_help.cc       builtin_vars.find(args[0]);
args              150 tools/gn/command_help.cc       target_vars.find(args[0]);
args              157 tools/gn/command_help.cc   if (args[0] == "buildargs") {
args              161 tools/gn/command_help.cc   if (args[0] == "dotfile") {
args              165 tools/gn/command_help.cc   if (args[0] == "input_conversion") {
args              169 tools/gn/command_help.cc   if (args[0] == "patterns") {
args              173 tools/gn/command_help.cc   if (args[0] == "source_expansion") {
args              179 tools/gn/command_help.cc   Err(Location(), "No help on \"" + args[0] + "\".").PrintToStdout();
args               62 tools/gn/command_refs.cc int RunRefs(const std::vector<std::string>& args) {
args               63 tools/gn/command_refs.cc   if (args.size() != 1 && args.size() != 2) {
args               70 tools/gn/command_refs.cc   if (args[0].find('*') == std::string::npos) {
args               73 tools/gn/command_refs.cc     if (args[0].size() < 2 ||
args               74 tools/gn/command_refs.cc         (args[0][0] != '/' && args[0][1] != '/') ||
args               75 tools/gn/command_refs.cc         args[0].find(':') == std::string::npos) {
args               84 tools/gn/command_refs.cc   Pattern pattern(args[0]);
args               48 tools/gn/commands.cc const Target* GetTargetForDesc(const std::vector<std::string>& args) {
args               62 tools/gn/commands.cc   Value arg_value(NULL, args[0]);
args               25 tools/gn/commands.h int RunArgs(const std::vector<std::string>& args);
args               30 tools/gn/commands.h int RunDesc(const std::vector<std::string>& args);
args               35 tools/gn/commands.h int RunGen(const std::vector<std::string>& args);
args               40 tools/gn/commands.h int RunHelp(const std::vector<std::string>& args);
args               45 tools/gn/commands.h int RunRefs(const std::vector<std::string>& args);
args               73 tools/gn/commands.h const Target* GetTargetForDesc(const std::vector<std::string>& args);
args              293 tools/gn/function_exec_script.cc                     const std::vector<Value>& args,
args              295 tools/gn/function_exec_script.cc   if (args.size() < 1 || args.size() > 4) {
args              306 tools/gn/function_exec_script.cc   if (!args[0].VerifyTypeIs(Value::STRING, err))
args              309 tools/gn/function_exec_script.cc       cur_dir.ResolveRelativeFile(args[0].string_value());
args              323 tools/gn/function_exec_script.cc   if (args.size() == 4) {
args              324 tools/gn/function_exec_script.cc     const Value& deps_value = args[3];
args              342 tools/gn/function_exec_script.cc   if (args.size() >= 2) {
args              344 tools/gn/function_exec_script.cc     const Value& script_args = args[1];
args              414 tools/gn/function_exec_script.cc                              args.size() >= 3 ? args[2] : Value(), err);
args               58 tools/gn/function_process_file_template.cc                              const std::vector<Value>& args,
args               60 tools/gn/function_process_file_template.cc   if (args.size() != 2) {
args               65 tools/gn/function_process_file_template.cc   FileTemplate file_template(args[1], err);
args               70 tools/gn/function_process_file_template.cc   file_template.Apply(args[0], function, &ret.list_value(), err);
args               44 tools/gn/function_read_file.cc                   const std::vector<Value>& args,
args               46 tools/gn/function_read_file.cc   if (args.size() != 2) {
args               51 tools/gn/function_read_file.cc   if (!args[0].VerifyTypeIs(Value::STRING, err))
args               56 tools/gn/function_read_file.cc   SourceFile source_file = cur_dir.ResolveRelativeFile(args[0].string_value());
args               66 tools/gn/function_read_file.cc     *err = Err(args[0], "Could not read file.",
args               71 tools/gn/function_read_file.cc   return ConvertInputToValue(file_contents, function, args[1], err);
args              205 tools/gn/function_rebase_path.cc                     const std::vector<Value>& args,
args              215 tools/gn/function_rebase_path.cc   if (args.size() < 1 || args.size() > 3) {
args              219 tools/gn/function_rebase_path.cc   const Value& inputs = args[kArgIndexInputs];
args              225 tools/gn/function_rebase_path.cc   if (args.size() > kArgIndexDest) {
args              226 tools/gn/function_rebase_path.cc     if (!args[kArgIndexDest].VerifyTypeIs(Value::STRING, err))
args              228 tools/gn/function_rebase_path.cc     if (!args[kArgIndexDest].string_value().empty()) {
args              230 tools/gn/function_rebase_path.cc           current_dir.ResolveRelativeDir(args[kArgIndexDest].string_value());
args              237 tools/gn/function_rebase_path.cc   if (args.size() > kArgIndexFrom) {
args              238 tools/gn/function_rebase_path.cc     if (!args[kArgIndexFrom].VerifyTypeIs(Value::STRING, err))
args              241 tools/gn/function_rebase_path.cc         current_dir.ResolveRelativeDir(args[kArgIndexFrom].string_value());
args               17 tools/gn/function_rebase_path_unittest.cc   std::vector<Value> args;
args               18 tools/gn/function_rebase_path_unittest.cc   args.push_back(Value(NULL, input));
args               19 tools/gn/function_rebase_path_unittest.cc   args.push_back(Value(NULL, to_dir));
args               20 tools/gn/function_rebase_path_unittest.cc   args.push_back(Value(NULL, from_dir));
args               24 tools/gn/function_rebase_path_unittest.cc   Value result = functions::RunRebasePath(scope, &function, args, &err);
args               87 tools/gn/function_rebase_path_unittest.cc   std::vector<Value> args;
args               88 tools/gn/function_rebase_path_unittest.cc   args.push_back(Value(NULL, Value::LIST));
args               89 tools/gn/function_rebase_path_unittest.cc   args[0].list_value().push_back(Value(NULL, "foo.txt"));
args               90 tools/gn/function_rebase_path_unittest.cc   args[0].list_value().push_back(Value(NULL, "bar.txt"));
args               91 tools/gn/function_rebase_path_unittest.cc   args.push_back(Value(NULL, "//out/Debug/"));
args               92 tools/gn/function_rebase_path_unittest.cc   args.push_back(Value(NULL, "."));
args               96 tools/gn/function_rebase_path_unittest.cc   Value ret = functions::RunRebasePath(setup.scope(), &function, args, &err);
args              112 tools/gn/function_rebase_path_unittest.cc   std::vector<Value> args;
args              114 tools/gn/function_rebase_path_unittest.cc   Value ret = functions::RunRebasePath(setup.scope(), &function, args, &err);
args               48 tools/gn/function_set_default_toolchain.cc                              const std::vector<Value>& args,
args               67 tools/gn/function_set_default_toolchain.cc   if (!EnsureSingleStringArg(function, args, err))
args               70 tools/gn/function_set_default_toolchain.cc       Label::Resolve(current_dir, default_toolchain, args[0], err));
args               45 tools/gn/function_set_defaults.cc                      const std::vector<Value>& args,
args               48 tools/gn/function_set_defaults.cc   if (!EnsureSingleStringArg(function, args, err))
args               50 tools/gn/function_set_defaults.cc   const std::string& target_type(args[0].string_value());
args              147 tools/gn/function_template.cc                   const std::vector<Value>& args,
args              152 tools/gn/function_template.cc   if (args.size() != 1) {
args              157 tools/gn/function_template.cc   if (!args[0].VerifyTypeIs(Value::STRING, err))
args              159 tools/gn/function_template.cc   std::string template_name = args[0].string_value();
args               91 tools/gn/function_toolchain.cc                    const std::vector<Value>& args,
args              102 tools/gn/function_toolchain.cc   Label label(input_dir, args[0].string_value());
args              183 tools/gn/function_toolchain.cc               const std::vector<Value>& args,
args              197 tools/gn/function_toolchain.cc   if (!EnsureSingleStringArg(function, args, err))
args              199 tools/gn/function_toolchain.cc   const std::string& tool_name = args[0].string_value();
args              202 tools/gn/function_toolchain.cc     *err = Err(args[0], "Unknown tool type");
args              276 tools/gn/function_toolchain.cc                        const std::vector<Value>& args,
args              291 tools/gn/function_toolchain.cc   if (!args.empty()) {
args              305 tools/gn/function_toolchain.cc   toolchain->args() = values;
args               44 tools/gn/function_write_file.cc                    const std::vector<Value>& args,
args               46 tools/gn/function_write_file.cc   if (args.size() != 2) {
args               53 tools/gn/function_write_file.cc   if (!args[0].VerifyTypeIs(Value::STRING, err))
args               56 tools/gn/function_write_file.cc   SourceFile source_file = cur_dir.ResolveRelativeFile(args[0].string_value());
args               59 tools/gn/function_write_file.cc           source_file.value(), args[0], err))
args               64 tools/gn/function_write_file.cc   if (args[1].type() == Value::LIST) {
args               65 tools/gn/function_write_file.cc     const std::vector<Value>& list = args[1].list_value();
args               69 tools/gn/function_write_file.cc     contents << args[1].ToString(false);
args               52 tools/gn/functions.cc                           const std::vector<Value>& args,
args               70 tools/gn/functions.cc   if (!EnsureSingleStringArg(function, args, err))
args               76 tools/gn/functions.cc   block_scope->SetValue(target_name, Value(function, args[0].string_value()),
args               89 tools/gn/functions.cc                            const std::vector<Value>& args,
args               91 tools/gn/functions.cc   if (args.size() != 1) {
args               96 tools/gn/functions.cc   return args[0].VerifyTypeIs(Value::STRING, err);
args              133 tools/gn/functions.cc                 const std::vector<Value>& args,
args              135 tools/gn/functions.cc   if (args.size() != 1 && args.size() != 2) {
args              139 tools/gn/functions.cc   } else if (args[0].type() != Value::BOOLEAN) {
args              141 tools/gn/functions.cc   } else if (!args[0].boolean_value()) {
args              142 tools/gn/functions.cc     if (args.size() == 2) {
args              144 tools/gn/functions.cc       if (args[1].type() != Value::STRING) {
args              149 tools/gn/functions.cc             args[1].string_value());
args              155 tools/gn/functions.cc     if (args[0].origin()) {
args              165 tools/gn/functions.cc       Location origin_location = args[0].origin()->GetRange().begin();
args              169 tools/gn/functions.cc         err->AppendSubErr(Err(args[0].origin()->GetRange(), "",
args              221 tools/gn/functions.cc                 const std::vector<Value>& args,
args              224 tools/gn/functions.cc   if (!EnsureSingleStringArg(function, args, err) ||
args              228 tools/gn/functions.cc   Label label(MakeLabelForScope(scope, function, args[0].string_value()));
args              279 tools/gn/functions.cc                      const std::vector<Value>& args,
args              402 tools/gn/functions.cc                 const std::vector<Value>& args,
args              404 tools/gn/functions.cc   if (!EnsureSingleStringArg(function, args, err))
args              410 tools/gn/functions.cc   if (!env->GetVar(args[0].string_value().c_str(), &result))
args              452 tools/gn/functions.cc                 const std::vector<Value>& args,
args              454 tools/gn/functions.cc   if (!EnsureSingleStringArg(function, args, err))
args              459 tools/gn/functions.cc       input_dir.ResolveRelativeFile(args[0].string_value());
args              496 tools/gn/functions.cc                                     const std::vector<Value>& args,
args              498 tools/gn/functions.cc   if (args.size() != 1) {
args              502 tools/gn/functions.cc     f->SetFromValue(args[0], err);
args              533 tools/gn/functions.cc                const std::vector<Value>& args,
args              535 tools/gn/functions.cc   for (size_t i = 0; i < args.size(); i++) {
args              538 tools/gn/functions.cc     std::cout << args[i].ToString(false);
args              678 tools/gn/functions.cc       Value args = args_list->Execute(scope, err);
args              681 tools/gn/functions.cc       return templ->Invoke(scope, function, args.list_value(), block, err);
args              694 tools/gn/functions.cc   Value args = args_list->Execute(scope, err);
args              704 tools/gn/functions.cc         scope, function, args.list_value(), block, err);
args              718 tools/gn/functions.cc         function, args.list_value(), &block_scope, err);
args              723 tools/gn/functions.cc                                                 args.list_value(), err);
args               39 tools/gn/functions.h                                       const std::vector<Value>& args,
args               47 tools/gn/functions.h                                       const std::vector<Value>& args,
args               54 tools/gn/functions.h                                  const std::vector<Value>& args,
args               62 tools/gn/functions.h                 const std::vector<Value>& args,
args               71 tools/gn/functions.h                        const std::vector<Value>& args,
args               80 tools/gn/functions.h                 const std::vector<Value>& args,
args               88 tools/gn/functions.h                    const std::vector<Value>& args,
args               96 tools/gn/functions.h                 const std::vector<Value>& args,
args              104 tools/gn/functions.h               const std::vector<Value>& args,
args              113 tools/gn/functions.h                      const std::vector<Value>& args,
args              130 tools/gn/functions.h                     const std::vector<Value>& args,
args              138 tools/gn/functions.h                     const std::vector<Value>& args,
args              147 tools/gn/functions.h                 const std::vector<Value>& args,
args              155 tools/gn/functions.h                const std::vector<Value>& args,
args              164 tools/gn/functions.h                 const std::vector<Value>& args,
args              172 tools/gn/functions.h                const std::vector<Value>& args,
args              180 tools/gn/functions.h                              const std::vector<Value>& args,
args              188 tools/gn/functions.h                   const std::vector<Value>& args,
args              196 tools/gn/functions.h                     const std::vector<Value>& args,
args              204 tools/gn/functions.h                      const std::vector<Value>& args,
args              213 tools/gn/functions.h                              const std::vector<Value>& args,
args              221 tools/gn/functions.h                                     const std::vector<Value>& args,
args              229 tools/gn/functions.h                        const std::vector<Value>& args,
args              238 tools/gn/functions.h                    const std::vector<Value>& args,
args              247 tools/gn/functions.h                        const std::vector<Value>& args,
args              256 tools/gn/functions.h                   const std::vector<Value>& args,
args              265 tools/gn/functions.h               const std::vector<Value>& args,
args              274 tools/gn/functions.h               const std::vector<Value>& args,
args              283 tools/gn/functions.h                    const std::vector<Value>& args,
args              292 tools/gn/functions.h                        const std::vector<Value>& args,
args              301 tools/gn/functions.h                    const std::vector<Value>& args,
args              378 tools/gn/functions.h                           const std::vector<Value>& args,
args              390 tools/gn/functions.h                            const std::vector<Value>& args,
args               29 tools/gn/functions_target.cc                            const std::vector<Value>& args,
args               37 tools/gn/functions_target.cc                             args, &block_scope, err))
args               44 tools/gn/functions_target.cc   TargetGenerator::GenerateTarget(&block_scope, function, args,
args              125 tools/gn/functions_target.cc                 const std::vector<Value>& args,
args              128 tools/gn/functions_target.cc   return ExecuteGenericTarget(functions::kAction, scope, function, args,
args              194 tools/gn/functions_target.cc                        const std::vector<Value>& args,
args              197 tools/gn/functions_target.cc   return ExecuteGenericTarget(functions::kActionForEach, scope, function, args,
args              225 tools/gn/functions_target.cc                    const std::vector<Value>& args,
args              253 tools/gn/functions_target.cc                             args, &block_scope, err))
args              260 tools/gn/functions_target.cc   TargetGenerator::GenerateTarget(&block_scope, function, args,
args              310 tools/gn/functions_target.cc               const std::vector<Value>& args,
args              316 tools/gn/functions_target.cc   TargetGenerator::GenerateTarget(scope, function, args, functions::kCopy, err);
args              337 tools/gn/functions_target.cc                     const std::vector<Value>& args,
args              340 tools/gn/functions_target.cc   return ExecuteGenericTarget(functions::kExecutable, scope, function, args,
args              377 tools/gn/functions_target.cc                const std::vector<Value>& args,
args              380 tools/gn/functions_target.cc   return ExecuteGenericTarget(functions::kGroup, scope, function, args,
args              406 tools/gn/functions_target.cc                        const std::vector<Value>& args,
args              409 tools/gn/functions_target.cc   return ExecuteGenericTarget(functions::kSharedLibrary, scope, function, args,
args              453 tools/gn/functions_target.cc                    const std::vector<Value>& args,
args              456 tools/gn/functions_target.cc   return ExecuteGenericTarget(functions::kSourceSet, scope, function, args,
args              483 tools/gn/functions_target.cc                        const std::vector<Value>& args,
args              486 tools/gn/functions_target.cc   return ExecuteGenericTarget(functions::kStaticLibrary, scope, function, args,
args              507 tools/gn/functions_target.cc               const std::vector<Value>& args,
args              510 tools/gn/functions_target.cc   return ExecuteGenericTarget(functions::kExecutable, scope, function, args,
args               45 tools/gn/gn_main.cc   std::vector<std::string> args = GetArgs(cmdline);
args               55 tools/gn/gn_main.cc   } else if (args.empty()) {
args               62 tools/gn/gn_main.cc     command = args[0];
args               63 tools/gn/gn_main.cc     args.erase(args.begin());
args               72 tools/gn/gn_main.cc     retval = found_command->second.runner(args);
args              177 tools/gn/loader.cc     ScheduleLoadBuildConfig(&record->settings, toolchain->args());
args               26 tools/gn/ninja_action_target_writer.cc   FileTemplate args_template(target_->action_values().args());
args               75 tools/gn/ninja_action_target_writer_unittest.cc   std::vector<std::string> args;
args               76 tools/gn/ninja_action_target_writer_unittest.cc   args.push_back("-i");
args               77 tools/gn/ninja_action_target_writer_unittest.cc   args.push_back("{{source}}");
args               78 tools/gn/ninja_action_target_writer_unittest.cc   args.push_back("--out=foo bar{{source_name_part}}.o");
args               79 tools/gn/ninja_action_target_writer_unittest.cc   FileTemplate args_template(args);
args              179 tools/gn/ninja_action_target_writer_unittest.cc   target.action_values().args().push_back("-i");
args              180 tools/gn/ninja_action_target_writer_unittest.cc   target.action_values().args().push_back("{{source}}");
args              181 tools/gn/ninja_action_target_writer_unittest.cc   target.action_values().args().push_back(
args              281 tools/gn/ninja_action_target_writer_unittest.cc   target.action_values().args().push_back("-i");
args              282 tools/gn/ninja_action_target_writer_unittest.cc   target.action_values().args().push_back("{{source}}");
args              283 tools/gn/ninja_action_target_writer_unittest.cc   target.action_values().args().push_back(
args              138 tools/gn/ninja_build_writer.cc   std::string args = our_cmdline.GetSwitchValueASCII("args");
args              145 tools/gn/ninja_build_writer.cc        << (args.empty() ? std::string("No build args, using defaults.") : args)
args              269 tools/gn/parse_tree.h   const ListNode* args() const { return args_.get(); }
args              231 tools/gn/setup.cc   std::string args = cmdline.GetSwitchValueASCII(kSwitchArgs);
args              232 tools/gn/setup.cc   if (args.empty())
args              236 tools/gn/setup.cc   args_input_file_->SetContents(args);
args               61 tools/gn/target_generator.cc                                      const std::vector<Value>& args,
args               65 tools/gn/target_generator.cc   if (args.size() != 1u || args[0].type() != Value::STRING) {
args               75 tools/gn/target_generator.cc   Label label(scope->GetSourceDir(), args[0].string_value(),
args               41 tools/gn/target_generator.h                              const std::vector<Value>& args,
args               34 tools/gn/template.cc                        const std::vector<Value>& args,
args               46 tools/gn/template.cc                             block, args, &invocation_scope, err))
args               62 tools/gn/template.cc                           Value(invocation, args[0].string_value()),
args               37 tools/gn/template.h                const std::vector<Value>& args,
args               91 tools/gn/toolchain.h   Scope::KeyValueMap& args() { return args_; }
args               92 tools/gn/toolchain.h   const Scope::KeyValueMap& args() const { return args_; }
args              435 tools/imagediff/image_diff.cc   const CommandLine::StringVector& args = parsed_command_line.GetArgs();
args              437 tools/imagediff/image_diff.cc     if (args.size() == 3) {
args              438 tools/imagediff/image_diff.cc       return DiffImages(base::FilePath(args[0]),
args              439 tools/imagediff/image_diff.cc                         base::FilePath(args[1]),
args              440 tools/imagediff/image_diff.cc                         base::FilePath(args[2]));
args              442 tools/imagediff/image_diff.cc   } else if (args.size() == 2) {
args              444 tools/imagediff/image_diff.cc         base::FilePath(args[0]), base::FilePath(args[1]), histograms);
args             1303 tools/ipc_fuzzer/mutate/generate.cc   CommandLine::StringVector args = cmd->GetArgs();
args             1305 tools/ipc_fuzzer/mutate/generate.cc   if (args.size() != 1 || cmd->HasSwitch(kHelpSwitch)) {
args             1309 tools/ipc_fuzzer/mutate/generate.cc   std::string output_file_name = args[0];
args               78 tools/ipc_fuzzer/mutate/message_util.cc   CommandLine::StringVector args = cmd->GetArgs();
args               80 tools/ipc_fuzzer/mutate/message_util.cc   if (args.size() < 1 || args.size() > 2 || cmd->HasSwitch(kHelpSwitch)) {
args              107 tools/ipc_fuzzer/mutate/message_util.cc   base::SplitString(args[0], ',', &input_file_names);
args              110 tools/ipc_fuzzer/mutate/message_util.cc     if (args.size() < 2) {
args              114 tools/ipc_fuzzer/mutate/message_util.cc     output_file_name = args[1];
args              660 tools/ipc_fuzzer/mutate/mutate.cc   CommandLine::StringVector args = cmd->GetArgs();
args              662 tools/ipc_fuzzer/mutate/mutate.cc   if (args.size() != 2 || cmd->HasSwitch(kHelpSwitch)) {
args              667 tools/ipc_fuzzer/mutate/mutate.cc   std::string input_file_name = args[0];
args              668 tools/ipc_fuzzer/mutate/mutate.cc   std::string output_file_name = args[1];
args               32 tools/json_schema_compiler/test/enums_unittest.cc     base::ListValue args;
args               33 tools/json_schema_compiler/test/enums_unittest.cc     args.Append(base::Value::CreateStringValue("one"));
args               36 tools/json_schema_compiler/test/enums_unittest.cc         TakesEnumAsType::Params::Create(args));
args               40 tools/json_schema_compiler/test/enums_unittest.cc     EXPECT_TRUE(args.Equals(ReturnsEnumAsType::Results::Create(
args               28 tools/perf/clear_system_cache/clear_system_cache_main.cc   const CommandLine::StringVector& args = parsed_command_line.GetArgs();
args               30 tools/perf/clear_system_cache/clear_system_cache_main.cc   if (args.size() < 1) {
args               35 tools/perf/clear_system_cache/clear_system_cache_main.cc   for (size_t i = 0; i < args.size(); ++i) {
args               36 tools/perf/clear_system_cache/clear_system_cache_main.cc     base::FilePath path(args[i]);
args               27 tools/win/link_limiter/limiter.cc   va_list args;
args               28 tools/win/link_limiter/limiter.cc   va_start(args, msg);
args               29 tools/win/link_limiter/limiter.cc   vwprintf(new_msg.c_str(), args);
args               30 tools/win/link_limiter/limiter.cc   va_end(args);
args               37 tools/win/link_limiter/limiter.cc   va_list args;
args               38 tools/win/link_limiter/limiter.cc   va_start(args, msg);
args               39 tools/win/link_limiter/limiter.cc   vwprintf(new_msg.c_str(), args);
args               40 tools/win/link_limiter/limiter.cc   va_end(args);
args               91 tools/win/split_link/split_link.cc static wstring BuildCommandLine(const vector<wstring>& args) {
args               93 tools/win/split_link/split_link.cc   for (size_t i = 0; i < args.size(); ++i) {
args               94 tools/win/split_link/split_link.cc     ArgvQuote(args[i], &result);
args               95 tools/win/split_link/split_link.cc     if (i < args.size() - 1) {
args              122 tools/win/split_link/split_link.cc   LPWSTR* args = CommandLineToArgvW(GetCommandLine(), &num_args);
args              123 tools/win/split_link/split_link.cc   if (!args)
args              128 tools/win/split_link/split_link.cc     argv.push_back(args[i]);
args              129 tools/win/split_link/split_link.cc   LocalFree(args);
args               61 ui/base/webui/web_ui_util.cc WindowOpenDisposition GetDispositionFromClick(const base::ListValue* args,
args               69 ui/base/webui/web_ui_util.cc   CHECK(args->GetDouble(start_index++, &button));
args               70 ui/base/webui/web_ui_util.cc   CHECK(args->GetBoolean(start_index++, &alt_key));
args               71 ui/base/webui/web_ui_util.cc   CHECK(args->GetBoolean(start_index++, &ctrl_key));
args               72 ui/base/webui/web_ui_util.cc   CHECK(args->GetBoolean(start_index++, &meta_key));
args               73 ui/base/webui/web_ui_util.cc   CHECK(args->GetBoolean(start_index++, &shift_key));
args               37 ui/base/webui/web_ui_util.h     GetDispositionFromClick(const base::ListValue* args, int start_index);
args               38 ui/base/win/shell.cc                      const base::string16& args,
args               45 ui/base/win/shell.cc   if (!args.empty())
args               46 ui/base/win/shell.cc     sei.lpParameters = args.c_str();
args               38 ui/base/win/shell.h                                     const base::string16& args,
args               44 ui/events/ozone/evdev/device_manager_udev.cc              va_list args) {
args               46 ui/events/ozone/evdev/device_manager_udev.cc     LOG(ERROR) << "libudev: " << fn << ": " << base::StringPrintV(format, args);
args               48 ui/events/ozone/evdev/device_manager_udev.cc     VLOG(1) << "libudev: " << fn << ": " << base::StringPrintV(format, args);
args               50 ui/events/ozone/evdev/device_manager_udev.cc     VLOG(2) << "libudev: " << fn << ": " << base::StringPrintV(format, args);
args               61 ui/gfx/gtk_util.cc   const std::vector<std::string>& args = command_line.argv();
args               62 ui/gfx/gtk_util.cc   int argc = args.size();
args               64 ui/gfx/gtk_util.cc   for (size_t i = 0; i < args.size(); ++i) {
args               67 ui/gfx/gtk_util.cc     argv[i] = strdup(args[i].c_str());
args               73 ui/gfx/gtk_util.cc   for (size_t i = 0; i < args.size(); ++i) {
args              197 ui/gl/gl_bindings.h #define GL_SERVICE_LOG(args) DLOG(INFO) << args;
args               55 ui/web_dialogs/web_dialog_ui.cc void WebDialogUI::CloseDialog(const base::ListValue* args) {
args               56 ui/web_dialogs/web_dialog_ui.cc   OnDialogClosed(args);
args              105 ui/web_dialogs/web_dialog_ui.cc void WebDialogUI::OnDialogClosed(const base::ListValue* args) {
args              109 ui/web_dialogs/web_dialog_ui.cc     if (args && !args->empty() && !args->GetString(0, &json_retval))
args               63 ui/web_dialogs/web_dialog_ui.h   void CloseDialog(const base::ListValue* args);
args               78 ui/web_dialogs/web_dialog_ui.h   void OnDialogClosed(const base::ListValue* args);
args               39 webkit/browser/quota/quota_callbacks.h                         const Args& args) {
args               40 webkit/browser/quota/quota_callbacks.h   DispatchToMethod(&callback, &CallbackType::Run, args);
args               58 webkit/browser/quota/quota_callbacks.h   void Run(const Args& args) {
args               62 webkit/browser/quota/quota_callbacks.h       DispatchToCallback(*iter, args);
args              109 webkit/browser/quota/quota_callbacks.h   void Run(const Key& key, const Args& args) {
args              113 webkit/browser/quota/quota_callbacks.h     queue.Run(args);
args               71 win8/delegate_execute/delegate_execute_util_unittest.cc   CommandLine::StringVector args(cl.GetArgs());
args               72 win8/delegate_execute/delegate_execute_util_unittest.cc   EXPECT_EQ(2, args.size());
args               74 win8/delegate_execute/delegate_execute_util_unittest.cc       args.end(),
args               75 win8/delegate_execute/delegate_execute_util_unittest.cc       std::find(args.begin(), args.end(), base::string16(kOtherArgument)));
args               76 win8/delegate_execute/delegate_execute_util_unittest.cc   EXPECT_NE(args.end(),
args               77 win8/delegate_execute/delegate_execute_util_unittest.cc             std::find(args.begin(), args.end(), base::string16(kSomeArgument)));
args              912 win8/metro_driver/chrome_app_view.cc     winapp::Activation::IActivatedEventArgs* args) {
args              915 win8/metro_driver/chrome_app_view.cc   args->get_PreviousExecutionState(&globals.previous_state);
args              919 win8/metro_driver/chrome_app_view.cc   url_launch_handler_.Activate(args);
args              982 win8/metro_driver/chrome_app_view.cc     winui::Core::IWindowSizeChangedEventArgs* args) {
args              988 win8/metro_driver/chrome_app_view.cc   args->get_Size(&size);
args             1024 win8/metro_driver/chrome_app_view.cc     winui::Input::IEdgeGestureEventArgs* args) {
args               81 win8/metro_driver/chrome_app_view.h                      winapp::Activation::IActivatedEventArgs* args);
args               84 win8/metro_driver/chrome_app_view.h                         winui::Core::IWindowSizeChangedEventArgs* args);
args               87 win8/metro_driver/chrome_app_view.h                                  winui::Input::IEdgeGestureEventArgs* args);
args              313 win8/metro_driver/chrome_app_view_ash.cc                                 winapp::Activation::IActivatedEventArgs* args) {
args              314 win8/metro_driver/chrome_app_view_ash.cc   if (args) {
args              317 win8/metro_driver/chrome_app_view_ash.cc     CheckHR(args->get_Kind(&activation_kind));
args              323 win8/metro_driver/chrome_app_view_ash.cc       if (args->QueryInterface(
args              373 win8/metro_driver/chrome_app_view_ash.cc   HRESULT Init(winui::Core::IPointerEventArgs* args) {
args              374 win8/metro_driver/chrome_app_view_ash.cc     HRESULT hr = args->get_CurrentPoint(&pointer_point_);
args             1007 win8/metro_driver/chrome_app_view_ash.cc     winapp::Activation::IActivatedEventArgs* args) {
args             1012 win8/metro_driver/chrome_app_view_ash.cc   args->get_PreviousExecutionState(&globals.previous_state);
args             1016 win8/metro_driver/chrome_app_view_ash.cc   CheckHR(args->get_Kind(&activation_kind));
args             1020 win8/metro_driver/chrome_app_view_ash.cc     HandleSearchRequest(args);
args             1022 win8/metro_driver/chrome_app_view_ash.cc     HandleProtocolRequest(args);
args             1024 win8/metro_driver/chrome_app_view_ash.cc     LaunchChromeBrowserProcess(NULL, args);
args             1036 win8/metro_driver/chrome_app_view_ash.cc                                          winui::Core::IPointerEventArgs* args) {
args             1038 win8/metro_driver/chrome_app_view_ash.cc   HRESULT hr = pointer.Init(args);
args             1066 win8/metro_driver/chrome_app_view_ash.cc     winui::Core::IPointerEventArgs* args) {
args             1068 win8/metro_driver/chrome_app_view_ash.cc   HRESULT hr = pointer.Init(args);
args             1089 win8/metro_driver/chrome_app_view_ash.cc     winui::Core::IPointerEventArgs* args) {
args             1091 win8/metro_driver/chrome_app_view_ash.cc   HRESULT hr = pointer.Init(args);
args             1114 win8/metro_driver/chrome_app_view_ash.cc     winui::Core::IPointerEventArgs* args) {
args             1116 win8/metro_driver/chrome_app_view_ash.cc   HRESULT hr = pointer.Init(args);
args             1128 win8/metro_driver/chrome_app_view_ash.cc     winui::Core::IKeyEventArgs* args) {
args             1130 win8/metro_driver/chrome_app_view_ash.cc   HRESULT hr = args->get_VirtualKey(&virtual_key);
args             1134 win8/metro_driver/chrome_app_view_ash.cc   hr = args->get_KeyStatus(&status);
args             1147 win8/metro_driver/chrome_app_view_ash.cc     winui::Core::IKeyEventArgs* args) {
args             1149 win8/metro_driver/chrome_app_view_ash.cc   HRESULT hr = args->get_VirtualKey(&virtual_key);
args             1153 win8/metro_driver/chrome_app_view_ash.cc   hr = args->get_KeyStatus(&status);
args             1166 win8/metro_driver/chrome_app_view_ash.cc     winui::Core::IAcceleratorKeyEventArgs* args) {
args             1168 win8/metro_driver/chrome_app_view_ash.cc   HRESULT hr = args->get_VirtualKey(&virtual_key);
args             1172 win8/metro_driver/chrome_app_view_ash.cc   hr = args->get_KeyStatus(&status);
args             1177 win8/metro_driver/chrome_app_view_ash.cc   hr = args->get_EventType(&event_type);
args             1220 win8/metro_driver/chrome_app_view_ash.cc   winui::Core::ICharacterReceivedEventArgs* args) {
args             1222 win8/metro_driver/chrome_app_view_ash.cc   HRESULT hr = args->get_KeyCode(&char_code);
args             1227 win8/metro_driver/chrome_app_view_ash.cc   hr = args->get_KeyStatus(&status);
args             1240 win8/metro_driver/chrome_app_view_ash.cc     winui::Core::IWindowActivatedEventArgs* args) {
args             1242 win8/metro_driver/chrome_app_view_ash.cc   HRESULT hr = args->get_WindowActivationState(&state);
args             1259 win8/metro_driver/chrome_app_view_ash.cc     winapp::Activation::IActivatedEventArgs* args) {
args             1261 win8/metro_driver/chrome_app_view_ash.cc   CheckHR(args->QueryInterface(
args             1266 win8/metro_driver/chrome_app_view_ash.cc     LaunchChromeBrowserProcess(L"--windows8-search", args);
args             1281 win8/metro_driver/chrome_app_view_ash.cc     winapp::Activation::IActivatedEventArgs* args) {
args             1288 win8/metro_driver/chrome_app_view_ash.cc   CheckHR(args->QueryInterface(
args             1308 win8/metro_driver/chrome_app_view_ash.cc     winui::Input::IEdgeGestureEventArgs* args) {
args             1324 win8/metro_driver/chrome_app_view_ash.cc     winui::Core::IWindowSizeChangedEventArgs* args) {
args             1330 win8/metro_driver/chrome_app_view_ash.cc   HRESULT hr = args->get_Size(&size);
args              153 win8/metro_driver/chrome_app_view_ash.h                      winapp::Activation::IActivatedEventArgs* args);
args              156 win8/metro_driver/chrome_app_view_ash.h                          winui::Core::IPointerEventArgs* args);
args              159 win8/metro_driver/chrome_app_view_ash.h                            winui::Core::IPointerEventArgs* args);
args              162 win8/metro_driver/chrome_app_view_ash.h                             winui::Core::IPointerEventArgs* args);
args              165 win8/metro_driver/chrome_app_view_ash.h                   winui::Core::IPointerEventArgs* args);
args              168 win8/metro_driver/chrome_app_view_ash.h                     winui::Core::IKeyEventArgs* args);
args              171 win8/metro_driver/chrome_app_view_ash.h                   winui::Core::IKeyEventArgs* args);
args              175 win8/metro_driver/chrome_app_view_ash.h                                winui::Core::IAcceleratorKeyEventArgs* args);
args              178 win8/metro_driver/chrome_app_view_ash.h                               winui::Core::ICharacterReceivedEventArgs* args);
args              181 win8/metro_driver/chrome_app_view_ash.h                             winui::Core::IWindowActivatedEventArgs* args);
args              184 win8/metro_driver/chrome_app_view_ash.h   HRESULT HandleSearchRequest(winapp::Activation::IActivatedEventArgs* args);
args              186 win8/metro_driver/chrome_app_view_ash.h   HRESULT HandleProtocolRequest(winapp::Activation::IActivatedEventArgs* args);
args              189 win8/metro_driver/chrome_app_view_ash.h                                  winui::Input::IEdgeGestureEventArgs* args);
args              197 win8/metro_driver/chrome_app_view_ash.h                         winui::Core::IWindowSizeChangedEventArgs* args);
args               64 win8/metro_driver/chrome_url_launch_handler.cc     winapp::Search::ISearchPaneQuerySubmittedEventArgs* args) {
args               66 win8/metro_driver/chrome_url_launch_handler.cc   HandleSearchRequest(args);
args               71 win8/metro_driver/chrome_url_launch_handler.cc void ChromeUrlLaunchHandler::HandleSearchRequest(T* args) {
args               74 win8/metro_driver/chrome_url_launch_handler.cc   args->get_QueryText(search_string.GetAddressOf());
args               85 win8/metro_driver/chrome_url_launch_handler.cc     winapp::Activation::IProtocolActivatedEventArgs* args) {
args               88 win8/metro_driver/chrome_url_launch_handler.cc   args->get_Uri(&uri);
args              112 win8/metro_driver/chrome_url_launch_handler.cc   CommandLine::StringVector args = command_line.GetArgs();
args              113 win8/metro_driver/chrome_url_launch_handler.cc   if (args.size() > 0)
args              114 win8/metro_driver/chrome_url_launch_handler.cc     return args[0];
args              120 win8/metro_driver/chrome_url_launch_handler.cc     winapp::Activation::ILaunchActivatedEventArgs* args) {
args              122 win8/metro_driver/chrome_url_launch_handler.cc   args->get_Arguments(launch_args.GetAddressOf());
args              136 win8/metro_driver/chrome_url_launch_handler.cc     winapp::Activation::IActivatedEventArgs* args) {
args              138 win8/metro_driver/chrome_url_launch_handler.cc   CheckHR(args->get_Kind(&activation_kind));
args              147 win8/metro_driver/chrome_url_launch_handler.cc     if (args->QueryInterface(winapp::Activation::IID_ILaunchActivatedEventArgs,
args              155 win8/metro_driver/chrome_url_launch_handler.cc     if (args->QueryInterface(winapp::Activation::IID_ISearchActivatedEventArgs,
args              164 win8/metro_driver/chrome_url_launch_handler.cc     if (args->QueryInterface(
args               30 win8/metro_driver/chrome_url_launch_handler.h   void Activate(winapp::Activation::IActivatedEventArgs* args);
args               34 win8/metro_driver/chrome_url_launch_handler.h   template<class T> void HandleSearchRequest(T* args);
args               38 win8/metro_driver/chrome_url_launch_handler.h       winapp::Search::ISearchPaneQuerySubmittedEventArgs* args);
args               45 win8/metro_driver/chrome_url_launch_handler.h       winapp::Activation::IProtocolActivatedEventArgs* args);
args               48 win8/metro_driver/chrome_url_launch_handler.h   void HandleLaunch(winapp::Activation::ILaunchActivatedEventArgs* args);
args              286 win8/metro_driver/print_handler.cc     wingfx::Printing::IPrintTaskSourceRequestedArgs* args) {
args              305 win8/metro_driver/print_handler.cc   hr = args->SetSource(print_source.Get());
args              321 win8/metro_driver/print_handler.cc     wingfx::Printing::IPrintTaskCompletedEventArgs* args) {
args               46 win8/metro_driver/print_handler.h       wingfx::Printing::IPrintTaskSourceRequestedArgs* args);
args               49 win8/metro_driver/print_handler.h                       wingfx::Printing::IPrintTaskCompletedEventArgs* args);
args              145 win8/metro_driver/secondary_tile.cc   mswrw::HString args;
args              150 win8/metro_driver/secondary_tile.cc   args.Attach(MakeHString(base::UTF8ToUTF16(url.spec())));
args              169 win8/metro_driver/secondary_tile.cc                                 args.Get(),
args               59 win8/metro_driver/settings_handler.cc     winui::ApplicationSettings::ISettingsPaneCommandsRequestedEventArgs* args) {
args               69 win8/metro_driver/settings_handler.cc   hr = args->get_Request(&settings_command_request);
args               28 win8/metro_driver/settings_handler.h           ISettingsPaneCommandsRequestedEventArgs* args);