HomeSort by relevance Sort by last modified time
    Searched refs:arguments (Results 401 - 425 of 1463) sorted by null

<<11121314151617181920>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
optparse.py 108 inconsistent arguments.
481 # here so the constructor can validate its arguments.
524 # validate option arguments according to the option type.
537 # If no checker is defined for a type, arguments will be
623 "invalid keyword arguments: %s" % ", ".join(attrs),
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ExtensionAPI.js 163 listeners[i].apply(null, arguments);
171 this._fire.apply(this, request.arguments);
221 var request = message.arguments[1];
222 request.__proto__ = new Request(message.arguments[0]);
345 var frameIndex = message.arguments[0];
458 extensionServer.sendRequest(request, extractCallbackArgument(arguments));
520 var auditResult = new AuditResult(request.arguments[0]);
566 return new AuditResultNode(Array.prototype.slice.call(arguments));
588 arguments: [url, lineNumber && lineNumber - 1]
596 arguments: Array.prototype.slice.call(arguments, 1
    [all...]
  /bionic/libc/arch-x86/bionic/
syscall.S 23 # Load all the arguments from the calling frame.
  /cts/tests/core/runner/src/android/test/
InstrumentationCtsTestRunner.java 75 public void onCreate(Bundle arguments) {
91 if (arguments != null) {
92 String classArg = arguments.getString(ARGUMENT_TEST_CLASS);
109 super.onCreate(arguments);
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
CommonTokenStream.js 14 if (arguments.length >= 2) {
16 } else if (arguments.length === 1) {
139 if (arguments.length===0) {
287 if (arguments.length===0) {
  /external/chromium/chrome/browser/extensions/
extension_sidebar_api.cc 77 static bool IsArgumentListEmpty(const ListValue* arguments) {
78 if (arguments->empty())
80 if (arguments->GetSize() == 1) {
82 if (!arguments->Get(0, &first_value))
  /external/chromium/chrome/browser/resources/file_manager/js/
exif_reader.js 16 arguments: [fileURL, metadata]});
27 steps[++currentStep].apply(self, arguments);
35 arguments: [fileURL, steps[currentStep].name, err]});
155 //this.log('dispatching: ' + data.verb + ': ' + data.arguments);
156 this.messageHandlers[data.verb].apply(this, data.arguments);
163 var ary = Array.apply(null, arguments);
164 postMessage({verb: 'log', arguments: ary});
169 this.log.apply(this, arguments);
  /external/chromium/chrome/browser/ui/webui/
sync_internals_ui.cc 48 browser_sync::JsArgList args(params.arguments);
  /external/chromium_org/base/win/
shortcut_unittest.cc 109 EXPECT_EQ(link_properties_.arguments, args);
115 target_and_args_properties.set_arguments(link_properties_.arguments);
234 new_properties.set_arguments(link_properties_2_.arguments);
255 // Test that the old arguments remain on the replaced shortcut when not
261 // Do not explicitly set the arguments.
268 expected_properties.set_arguments(link_properties_.arguments);
  /external/chromium_org/chrome/browser/policy/test/
local_policy_test_server.h 86 base::DictionaryValue* arguments) const OVERRIDE;
  /external/chromium_org/chrome/renderer/extensions/
dom_activity_logger.cc 46 params.arguments.Swap(argv_list_value.get());
  /external/chromium_org/chrome_frame/cfinstall/src/stub/
frame.js 13 * Plucks properties from the passed arguments and sets them on the passed
33 * arguments. Note that this should only be called once.
  /external/chromium_org/net/test/spawned_test_server/
spawner_communicator.h 40 // Data to server: all arguments needed to launch the Python test server, in
70 bool StartServer(const std::string& arguments,
86 // |*result_code| and response data in |*data_received|, those two arguments
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLStatementBackend.cpp 76 const String& statement, const Vector<SQLValue>& arguments, int permissions)
78 return adoptRef(new SQLStatementBackend(frontend, statement, arguments, permissions));
82 const String& statement, const Vector<SQLValue>& arguments, int permissions)
85 , m_arguments(arguments)
SQLTransaction.h 61 void executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments,
  /external/chromium_org/third_party/WebKit/Source/testing/plugin/
PluginTest.h 216 static bool NP_Invoke(NPObject* npObject, NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result)
218 return static_cast<T*>(npObject)->invoke(methodName, arguments, argumentCount, result);
221 static bool NP_InvokeDefault(NPObject* npObject, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result)
223 return static_cast<T*>(npObject)->invokeDefault(arguments, argumentCount, result);
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
CppVariant.cpp 298 bool CppVariant::invoke(const string& method, const CppVariant* arguments,
307 bool status = WebBindings::invoke(0, npObject, methodName, arguments, argumentCount, &r);
312 bool CppVariant::invokeDefault(const CppVariant* arguments, uint32_t argumentCount,
318 bool status = WebBindings::invokeDefault(0, npObject, arguments, argumentCount, &r);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/
jquery.hotkeys.js 89 return origHandler.apply( this, arguments );
  /external/chromium_org/third_party/WebKit/Tools/qunit/test/
logs.js 48 console.log(log, arguments);
49 logger.apply(this, arguments);
  /external/chromium_org/third_party/icu/source/i18n/unicode/
msgfmt.h 54 * <P>When formatting, MessageFormat takes an array of arguments
64 * In ICU 4.0 MessageFormat supports named arguments. If a named argument
65 * is used, all arguments must be named. Names start with a character in
68 * If named arguments are used, {@link #usesNamedArguments()} will return true.
70 * <p>The other new methods supporting named arguments are
75 * {@link #format(const UnicodeString* argumentNames, const Formattable* arguments,
77 * These methods are all compatible with patterns that do not used named arguments--
81 * <p>If this format uses named arguments, certain methods that take or
92 * {@link #format(const UnicodeString& pattern,const Formattable* arguments,int32_t cnt,UnicodeString& appendTo,UErrorCode& success)},
94 * {@link #format(const Formattable* arguments, int32_t cnt, UnicodeString& appendTo, FieldPosition& status, int32_t recursionProtection,UErrorCo (…)
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
dadrcoll.cpp 170 const UChar *arguments = NULL; local
223 testSetting = settings->getString("Arguments", intStatus);
225 logln("Arguments: "+testSetting);
227 arguments = testSetting.getBuffer();
228 processArguments(col, arguments, argLen);
230 processArguments(clone, arguments, argLen);
233 errln("Couldn't process arguments");
  /external/chromium_org/v8/src/
hydrogen-range-analysis.cc 50 va_list arguments; local
51 va_start(arguments, msg);
52 OS::VPrint(msg, arguments);
53 va_end(arguments);
prettyprinter.cc 398 PrintArguments(node->arguments());
406 PrintArguments(node->arguments());
413 PrintArguments(node->arguments());
503 va_list arguments; local
504 va_start(arguments, format);
507 arguments);
508 va_end(arguments);
547 void PrettyPrinter::PrintArguments(ZoneList<Expression*>* arguments) {
549 for (int i = 0; i < arguments->length(); i++) {
551 Visit(arguments->at(i))
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
osr-with-args.js 33 var t = arguments[0] + 2;
34 var x = arguments[1] + 2;
  /external/chromium_org/v8/test/mjsunit/
function-bind.js 32 return [this, arguments.length, x];
54 // of arguments are given when binding.
144 // The wrong number of arguments can be given to bound functions too.
249 return [this, arguments.length, x];
267 // Test that .arguments and .caller are poisoned according to the ES5 spec.
272 var adesc = Object.getOwnPropertyDescriptor(f, "arguments");
290 assertThrows(function() { return f.arguments; }, TypeError);
291 assertThrows(function() { f.arguments = 42; }, TypeError);

Completed in 567 milliseconds

<<11121314151617181920>>