Searched defs:arguments (Results 1 - 25 of 238) sorted by path

12345678910

/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/bison/djgpp/
H A Dsubpipe.c56 static char **arguments; variable
139 arguments = xmalloc(argc * sizeof(arguments[0]));
142 arguments[argc] = xmalloc((strlen(argv[argc]) + 1) * sizeof(arguments[0][0]));
143 strcpy(arguments[argc], argv[argc]);
145 arguments[argc] = NULL;
187 program = strrchr(arguments[0], '/');
191 program = arguments[0];
228 status = spawnvp(P_WAIT, program, arguments);
[all...]
/external/bison/lib/
H A Dprintf-args.h138 /* Number of directly allocated arguments (no malloc() needed). */
147 arguments; typedef in typeref:struct:__anon342
150 /* Fetch the arguments, putting them into a. */
156 int PRINTF_FETCHARGS (va_list args, arguments *a);
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwContents.java1948 public boolean performAccessibilityAction(int action, Bundle arguments) { argument
1950 : mContentViewCore.performAccessibilityAction(action, arguments);
/external/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/test/
H A DAwTestContainerView.java411 public boolean performAccessibilityAction(int action, Bundle arguments) { argument
412 return mAwContents.performAccessibilityAction(action, arguments);
/external/chromium_org/base/process/
H A Dlaunch_win.cc251 const string16 arguments = cmdline.GetArgumentsString(); local
259 shex_info.lpParameters = arguments.c_str();
/external/chromium_org/base/strings/
H A Dstring_util.h45 int vsnprintf(char* buffer, size_t size, const char* format, va_list arguments)
55 va_list arguments; local
56 va_start(arguments, format);
57 int result = vsnprintf(buffer, size, format, arguments);
58 va_end(arguments);
135 // These should not be used as initializers, function arguments, or return
H A Dstring_util_posix.h32 const char* format, va_list arguments) {
33 return ::vsnprintf(buffer, size, format, arguments);
45 const wchar_t* format, va_list arguments) {
47 return ::vswprintf(buffer, size, format, arguments);
31 vsnprintf(char* buffer, size_t size, const char* format, va_list arguments) argument
44 vswprintf(wchar_t* buffer, size_t size, const wchar_t* format, va_list arguments) argument
H A Dstring_util_win.h36 const char* format, va_list arguments) {
37 int length = _vsprintf_p(buffer, size, format, arguments);
41 return _vscprintf_p(format, arguments);
47 const wchar_t* format, va_list arguments) {
50 int length = _vswprintf_p(buffer, size, format, arguments);
54 return _vscwprintf_p(format, arguments);
35 vsnprintf(char* buffer, size_t size, const char* format, va_list arguments) argument
46 vswprintf(wchar_t* buffer, size_t size, const wchar_t* format, va_list arguments) argument
/external/chromium_org/base/win/
H A Dshortcut.h21 // If the arguments are not specified on the new shortcut, keep the old
22 // shortcut's arguments.
66 arguments = arguments_in;
98 // The arguments to be applied to |target| when launching from this shortcut.
100 string16 arguments; member in struct:base::win::ShortcutProperties
144 // case of resolving target and arguments. |target_path| and |args| are
/external/chromium_org/chrome/browser/component_updater/
H A Drecovery_component_installer.cc141 std::string arguments; local
142 if (manifest.GetStringASCII("x-recovery-args", &arguments))
143 cmdline.AppendArg(arguments);
/external/chromium_org/chrome/browser/profile_resetter/
H A Dresettable_settings_snapshot.cc205 base::string16 arguments; local
208 base::ASCIIToUTF16("\'"), &arguments);
209 list->AppendString(arguments);
/external/chromium_org/chrome/browser/
H A Dshell_integration_win.cc455 base::string16 arguments; local
461 if (!base::win::ResolveShortcut(shortcut, &target_path, &arguments) ||
466 L"\"%ls\" %ls", target_path.value().c_str(), arguments.c_str())));
/external/chromium_org/chrome/browser/ui/webui/extensions/
H A Dextension_settings_handler.cc1232 base::ListValue arguments; local
1233 arguments.Append(new base::StringValue(message));
1234 web_ui()->CallJavascriptFunction("alert", arguments);
H A Dpack_extension_handler.cc70 base::ListValue arguments; local
71 arguments.Append(new base::StringValue(base::UTF16ToUTF8(
74 "extensions.PackExtensionOverlay.showSuccessMessage", arguments);
201 base::ListValue arguments; local
202 arguments.Append(new base::StringValue(message));
204 "extensions.PackExtensionOverlay.showError", arguments);
/external/chromium_org/chrome/installer/util/
H A Dinstall_util.cc558 const base::string16& arguments,
560 *command_line = CommandLine::FromString(L"\"" + program + L"\" " + arguments);
557 MakeUninstallCommand(const base::string16& program, const base::string16& arguments, CommandLine* command_line) argument
H A Dshell_util.h69 // If the arguments are not specified on the new shortcut, keep the old
70 // shortcut's arguments.
104 // Sets the arguments to be passed to |target| when launching from this
111 arguments = arguments_in;
148 // NOTE: Only the default (no arguments and default browser appid) browser
196 base::string16 arguments; member in struct:ShellUtil::ShortcutProperties
546 // - the original arguments are non-empty.
560 // Appends Chrome shortcuts with non-whitelisted arguments to |shortcuts| if
561 // not NULL. If |do_removal|, also removes non-whitelisted arguments from
/external/chromium_org/chrome/test/base/
H A Djavascript_browser_test.cc108 ConstValueVector arguments; local
110 arguments.push_back(is_async_arg);
112 arguments.push_back(function_name_arg);
120 arguments.push_back(baked_argument_list);
122 arguments.get());
/external/chromium_org/chrome/test/chromedriver/
H A Delement_util.cc245 base::ListValue arguments; local
246 arguments.Append(locator.release());
248 arguments.Append(CreateElement(*root_element_id));
254 session->GetCurrentFrameId(), script, arguments, &temp);
/external/chromium_org/chrome/tools/profile_reset/
H A Djtl_compiler.cc52 // - Instructions ending in "hash" will write their 'HashString' arguments
55 // arguments, and will write this hash to the byte-code.
96 const base::ListValue& arguments,
103 if (instruction.argument_types.size() != arguments.GetSize())
106 for (size_t i = 0; i < arguments.GetSize(); ++i) {
110 if (!arguments.GetBoolean(i, &value))
117 if (!arguments.GetString(i, &value))
124 if (!arguments.GetString(i, &value))
138 if (!arguments.GetString(i, &hash_value) ||
228 base::ListValue arguments; local
94 TranscodeInstruction( const std::string& name, const base::ListValue& arguments, bool ends_sentence, const jtl::Hasher& hasher, ByteCodeWriter* target) const argument
[all...]
H A Djtl_parser.cc47 // the: operation name, the optional arguments, and the separator that follows.
125 std::string arguments, separator; local
129 &arguments,
136 re2::StringPiece arguments_piece(arguments);
/external/chromium_org/chromeos/dbus/
H A Dshill_manager_client_unittest.cc22 void ExpectStringArguments(const std::vector<std::string>& arguments, argument
24 for (std::vector<std::string>::const_iterator iter = arguments.begin();
25 iter != arguments.end(); ++iter) {
34 const std::vector<std::string>& arguments,
37 for (std::vector<std::string>::const_iterator iter = arguments.begin();
38 iter != arguments.end(); ++iter) {
323 std::vector<std::string> arguments; local
324 arguments.push_back("certificate");
325 arguments.push_back("public_key");
326 arguments
33 ExpectStringArgumentsFollowedByObjectPath( const std::vector<std::string>& arguments, const dbus::ObjectPath& object_path, dbus::MessageReader* reader) argument
362 std::vector<std::string> arguments; local
406 std::vector<std::string> arguments; local
[all...]
/external/chromium_org/content/browser/android/java/
H A Dgin_java_bridge_dispatcher_host.cc432 const base::ListValue& arguments,
449 arguments);
429 OnInvokeMethod( GinJavaBoundObject::ObjectID object_id, const std::string& method_name, const base::ListValue& arguments, base::ListValue* wrapped_result, content::GinJavaBridgeError* error_code) argument
H A Dgin_java_method_invocation_helper.cc43 const base::ListValue& arguments)
46 arguments_(arguments.DeepCopy()),
40 GinJavaMethodInvocationHelper( scoped_ptr<ObjectDelegate> object, const std::string& method_name, const base::ListValue& arguments) argument
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DContentViewCore.java2608 * @param arguments Optional action arguments.
2612 public boolean performAccessibilityAction(int action, Bundle arguments) { argument
2614 return mAccessibilityInjector.performAccessibilityAction(action, arguments);

Completed in 682 milliseconds

12345678910