HomeSort by relevance Sort by last modified time
    Searched refs:arguments (Results 451 - 475 of 1452) sorted by null

<<11121314151617181920>>

  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java 154 /** {@code non-null;} parsed command-line arguments */
155 private static Arguments args;
193 * @param argArray the command line arguments
196 Arguments arguments = new Arguments(); local
197 arguments.parse(argArray);
199 int result = run(arguments);
207 * @param arguments the data + parameters for the conversion
210 public static int run(Arguments arguments) throws IOException
1251 private final String[] arguments; field in class:Main.Arguments.ArgumentsParser
    [all...]
  /external/v8/src/
accessors.cc 574 Handle<JSObject> arguments = local
581 arguments->set_elements(*array);
584 // Return the freshly allocated arguments object.
585 return *arguments;
609 // correct number of arguments and no allocated arguments object, so
616 // If there is an arguments variable in the stack, we return that.
621 Handle<Object> arguments(frame->GetExpression(index), isolate);
622 if (!arguments->IsArgumentsMarker()) return *arguments;
635 Handle<JSObject> arguments = isolate->factory()->NewArgumentsObject( local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractStyleRefactoring.java 133 * @param arguments argument map created by #createArgumentMap.
135 ExtractStyleRefactoring(Map<String, String> arguments) {
136 super(arguments);
137 mStyleName = arguments.get(KEY_NAME);
138 mRemoveExtracted = Boolean.parseBoolean(arguments.get(KEY_REMOVE_EXTRACTED));
139 mRemoveAll = Boolean.parseBoolean(arguments.get(KEY_REMOVE_ALL));
140 mApplyStyle = Boolean.parseBoolean(arguments.get(KEY_APPLY_STYLE));
141 mParent = arguments.get(KEY_PARENT);
515 Map<String, String> arguments) {
517 project, description, comment, arguments);
    [all...]
  /external/chromium_org/chrome/test/base/
js2gtest.js 16 // Arguments from rules in chrome_tests.gypi are passed in through
18 if (arguments.length < 4) {
20 arguments[0] + ' path-to-testfile.js testfile.js output.cc test-type');
28 var jsFile = arguments[1];
35 var jsFileBase = arguments[2];
41 var outputFile = arguments[3];
47 var testType = arguments[4];
79 print('// ' + arguments.join(' '));
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
mootools-1.2.2-core-nc.js 75 var args = Array.prototype.slice.call(arguments);
165 function $arguments(i){
167 return arguments[i];
187 ((type == 'arguments' || type == 'collection' || type == 'array') ? Array : Hash).each(iterable, fn, bind);
208 var args = Array.slice(arguments);
214 for (var i = 1, l = arguments.length; i < l; i++){
215 var object = arguments[i];
226 for (var i = 0, l = arguments.length; i < l; i++){
227 if (arguments[i] != undefined) return arguments[i]
    [all...]
  /external/chromium_org/tools/playback_benchmark/
common.js 123 var a = arguments;
130 default: Benchmark.die('window.Date', arguments);
214 f.apply(this.request, arguments);
250 var url = Benchmark.extractURL(arguments[1]);
251 var event = {type: 'request', method: arguments[0], url: url};
256 Benchmark.originals.XMLHttpRequest.prototype.open.apply(request, arguments);
273 this.request, arguments);
  /external/chromium_org/v8/test/mjsunit/
apply.js 92 for (var i = 0; i < arguments.length; i++) {
93 doo += arguments[i];
102 for (var i = 0; i < arguments.length; i++) {
103 doo += arguments[i];
112 return arguments.length + arguments[arguments.length - 1];
debug-clearbreakpoint.js 48 function testArguments(dcp, arguments, success) {
49 var request = '{' + base_request + ',"arguments":' + arguments + '}'
debug-evaluate-arguments.js 57 // Frame 0 - called with less parameters than arguments.
60 // Frame 1 - called with more parameters than arguments.
63 // Frame 2 - called with same number of parameters than arguments.
  /external/v8/test/mjsunit/
apply.js 92 for (var i = 0; i < arguments.length; i++) {
93 doo += arguments[i];
102 for (var i = 0; i < arguments.length; i++) {
103 doo += arguments[i];
112 return arguments.length + arguments[arguments.length - 1];
debug-clearbreakpoint.js 48 function testArguments(dcp, arguments, success) {
49 var request = '{' + base_request + ',"arguments":' + arguments + '}'
debug-evaluate-arguments.js 57 // Frame 0 - called with less parameters than arguments.
60 // Frame 1 - called with more parameters than arguments.
63 // Frame 2 - called with same number of parameters than arguments.
  /external/chromium_org/v8/src/
hydrogen.cc 569 // Check that phis have correct arguments.
5807 HArgumentsObject* arguments = entry->arguments_object(); local
    [all...]
  /external/chromium/sdch/open-vcdiff/vsprojects/
vcdiff_test.bat 44 rem vcdiff with no arguments shows usage information & error result
46 && ( echo vcdiff with no arguments should fail, but succeeded ^
50 rem vcdiff with three arguments but without "encode" or "decode"
58 rem vcdiff with all three arguments. Verify that output file matches target file
63 || ( echo Encode with three arguments failed ^
68 || ( echo Decode with three arguments failed ^
105 || ( echo Encode with mixed arguments failed ^
110 || ( echo Decode with mixed arguments failed ^
124 || ( echo Encode with mixed arguments failed ^
129 || ( echo Decode with mixed arguments failed
    [all...]
  /external/chromium_org/chrome/browser/resources/sync_internals/
chrome_sync.js 57 var args = Array.prototype.slice.call(arguments);
119 var args = Array.prototype.slice.call(arguments);
127 var args = Array.prototype.slice.call(arguments);
  /external/chromium_org/chrome/renderer/resources/extensions/
bluetooth_custom_bindings.js 37 var args = arguments;
71 sendRequest(this.name, arguments, this.definition.parameters);
124 var args = $Array.slice(arguments);
  /external/chromium_org/sdch/open-vcdiff/vsprojects/
vcdiff_test.bat 44 rem vcdiff with no arguments shows usage information & error result
46 && ( echo vcdiff with no arguments should fail, but succeeded ^
50 rem vcdiff with three arguments but without "encode" or "decode"
58 rem vcdiff with all three arguments. Verify that output file matches target file
63 || ( echo Encode with three arguments failed ^
68 || ( echo Decode with three arguments failed ^
105 || ( echo Encode with mixed arguments failed ^
110 || ( echo Decode with mixed arguments failed ^
124 || ( echo Encode with mixed arguments failed ^
129 || ( echo Decode with mixed arguments failed
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
HeapSnapshotProxy.js 75 console[message.method].apply(window[message.object], message.arguments);
221 var methodArguments = Array.prototype.slice.call(arguments, 4);
240 var methodArguments = Array.prototype.slice.call(arguments, 3);
335 return this._callWorker("callFactoryMethod", Array.prototype.slice.call(arguments, 0));
340 return this._callWorker("callGetter", Array.prototype.slice.call(arguments, 0));
348 return this._callWorker("callMethod", Array.prototype.slice.call(arguments, 0));
  /external/chromium_org/third_party/jstemplate/
jstemplate_compiled.js 1 (function(){var i=null;function k(){return Function.prototype.call.apply(Array.prototype.slice,arguments)}function l(a,b){var c=k(arguments,2);return function(){return b.apply(a,c)}}function m(a,b){var c=new n(b);for(c.f=[a];c.f.length;){var e=c,d=c.f.shift();e.g(d);for(d=d.firstChild;d;d=d.nextSibling)d.nodeType==1&&e.f.push(d)}}function n(a){this.g=a}function o(a){a.style.display=""}function p(a){a.style.display="none"};var q=":",r=/\s*;\s*/;function s(){this.i.apply(this,arguments)}s.prototype.i=function(a,b){if(!this.a)this.a={};if(b){var c=this.a,e=b.a,d;for(d in e)c[d]=e[d]}else for(c in d=this.a,e=t,e)d[c]=e[c];this.a.$this=a;this.a.$context=this;this.d=typeof a!="undefined"&&a!=i?a:"";if(!b)this.a.$top=this.d};var t={$default:i},u=[];function v(a){for(var b in a.a)delete a.a[b];a.d=i;u.push(a)}function w(a,b,c){try{return b.call(c,a.a,a.d)}catch(e){return t.$default}}
  /external/chromium_org/v8/test/mjsunit/harmony/
proxies-example-membrane.js 161 var arg = (name === "get" || name == "set") ? arguments[1] : "";
163 var x = wrapCall(baseHandler[name], baseHandler, arguments);
175 var x = wrapCall(obj, wrap(this), arguments);
183 return wrap(new forward(Array.prototype.map.call(arguments, wrap)));
317 var arg = (name === "get" || name == "set") ? arguments[1] : "";
322 optWetHandler, Array.prototype.map.call(arguments, asWet)));
339 asWet(this), Array.prototype.map.call(arguments, asWet)));
345 return asDry(new forward(Array.prototype.map.call(arguments, asWet)));
384 var arg = (name === "get" || name == "set") ? arguments[1] : "";
389 optDryHandler, Array.prototype.map.call(arguments, asDry)))
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-crbug-3184.js 40 this.$proceed = function() { return _method.apply(this, arguments); };
48 var value = function() { bmethod.call(this); retval = wrapper.apply(this, arguments); amethod.call(this); return retval; };
76 var thisp = arguments[1];
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
codegen.ml 45 raise (Error "incorrect # arguments passed");
65 (* If 'f' took a different number of arguments, reject. *)
71 (* Set names for all arguments. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
codegen.ml 45 raise (Error "incorrect # arguments passed");
65 (* If 'f' took a different number of arguments, reject. *)
71 (* Set names for all arguments. *)
  /external/open-vcdiff/vsprojects/
vcdiff_test.bat 44 rem vcdiff with no arguments shows usage information & error result
46 && ( echo vcdiff with no arguments should fail, but succeeded ^
50 rem vcdiff with three arguments but without "encode" or "decode"
58 rem vcdiff with all three arguments. Verify that output file matches target file
63 || ( echo Encode with three arguments failed ^
68 || ( echo Decode with three arguments failed ^
105 || ( echo Encode with mixed arguments failed ^
110 || ( echo Decode with mixed arguments failed ^
124 || ( echo Encode with mixed arguments failed ^
129 || ( echo Decode with mixed arguments failed
    [all...]
  /external/v8/test/mjsunit/harmony/
proxies-example-membrane.js 161 var arg = (name === "get" || name == "set") ? arguments[1] : "";
163 var x = wrapCall(baseHandler[name], baseHandler, arguments);
175 var x = wrapCall(obj, wrap(this), arguments);
183 return wrap(new forward(Array.prototype.map.call(arguments, wrap)));
317 var arg = (name === "get" || name == "set") ? arguments[1] : "";
322 optWetHandler, Array.prototype.map.call(arguments, asWet)));
339 asWet(this), Array.prototype.map.call(arguments, asWet)));
345 return asDry(new forward(Array.prototype.map.call(arguments, asWet)));
384 var arg = (name === "get" || name == "set") ? arguments[1] : "";
389 optDryHandler, Array.prototype.map.call(arguments, asDry)))
    [all...]

Completed in 1479 milliseconds

<<11121314151617181920>>