HomeSort by relevance Sort by last modified time
    Searched refs:arguments (Results 151 - 175 of 1836) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/mojo/public/tools/bindings/generators/
mojom_python_generator.py 132 arguments = []
134 arguments.append('%r' %_kind_to_typecode_for_native_array[kind.kind])
136 arguments.append(GetFieldType(kind.kind))
138 arguments.append('nullable=True')
140 arguments.append('length=%d' % kind.length)
146 return '_descriptor.%s(%s)' % (array_type, ', '.join(arguments))
149 arguments = [ GetStructClass(kind) ]
151 arguments.append('nullable=True')
152 return '_descriptor.StructType(%s)' % ', '.join(arguments)
164 arguments = [ '%r' % field.name
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
aetools.py 109 def keysubst(arguments, keydict):
112 for k in arguments.keys():
114 v = arguments[k]
115 del arguments[k]
116 arguments[keydict[k]] = v
120 def enumsubst(arguments, key, edict):
122 if key not in arguments or edict is None:
124 v = arguments[key]
127 arguments[key] = Enum(edict[v])
131 def decodeerror(arguments)
    [all...]
  /external/bison/lib/
printf-parse.h 172 arguments and the needed count of arguments. */
175 ulc_printf_parse (const char *format, char_directives *d, arguments *a);
177 u8_printf_parse (const uint8_t *format, u8_directives *d, arguments *a);
180 arguments *a);
183 arguments *a);
190 int printf_parse (const char *format, char_directives *d, arguments *a);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-2261.js 30 // Test materialization of the arguments object when deoptimizing a
40 %DebugPrint(arguments[0]);
42 return arguments[0];
54 // Test materialization of the arguments object when deoptimizing an
64 %DebugPrint(arguments[0]);
66 return arguments[0];
82 // Test materialization of the multiple arguments objects when
92 %DebugPrint(arguments[0]);
94 return arguments[0];
100 return inner(10*x, 20*x, 30*x) + arguments[0]
    [all...]
regress-1531.js 28 // Regression test for computing elements keys of arguments object. Should
31 arguments[10] = 0;
33 for (var p in arguments) arr.push(p);
38 // Regression test for lookup after delete of a dictionary-mode arguments
42 arguments.__defineGetter__("5", function () { return 0; });
44 delete arguments[5];
46 return arguments[2];
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowFragment.java 25 private Bundle arguments; field in class:ShadowFragment
113 return arguments;
117 public void setArguments(Bundle arguments) {
118 this.arguments = arguments;
  /frameworks/base/tests/utils/SleepUtils/SleepHelper/src/com/android/testing/sleephelper/
SetAlarm.java 90 public void onCreate(Bundle arguments) {
91 super.onCreate(arguments);
92 mCommand = arguments.getString(COMMAND);
93 if ("true".equals(arguments.getString("debug"))) {
99 mArgs = arguments;
  /external/chromium_org/v8/test/mjsunit/
arguments-lazy.js 28 // Make sure we don't allocate the arguments object over and
31 return arguments === arguments;
37 // Make sure that accessing arguments doesn't clobber any
38 // local variables called arguments.
40 var arguments = 42;
42 return x + arguments;
arguments-indirect.js 33 var a = arguments;
40 assertEquals(3, f.arguments.length);
41 assertEquals(1, f.arguments[0]);
42 assertEquals(2, f.arguments[1]);
43 assertEquals(3, f.arguments[2]);
  /external/ltrace/
value.c 126 value_reify(struct value *val, struct value_dict *arguments)
132 size_t size = value_size(val, arguments);
162 value_get_data(struct value *val, struct value_dict *arguments)
164 if (value_reify(val, arguments) < 0)
224 value_size(struct value *val, struct value_dict *arguments)
234 arguments, &length) < 0)
238 int o = value_extract_word(&length, (long *)&l, arguments);
295 * with function arguments. */
375 struct value_dict *arguments)
377 unsigned char *data = value_get_data(value, arguments);
    [all...]
output.c 297 struct value_dict *arguments,
319 if (val_dict_push_next(arguments, &value) < 0) {
331 fetch_param_stop(struct value_dict *arguments, ssize_t *params_leftp)
334 *params_leftp = val_dict_count(arguments);
340 struct value_dict *arguments, struct param *param,
343 struct param_enum *e = param_pack_init(param, arguments);
360 fetch_param_stop(arguments, params_leftp);
369 if (fetch_simple_param(type, proc, context, arguments,
394 struct value_dict *arguments, struct param *param,
400 return fetch_simple_param(type, proc, context, arguments,
425 struct value_dict *arguments; member in struct:fetch_one_param_data
461 struct value_dict *arguments; member in struct:format_argument_data
546 struct value_dict *arguments = malloc(sizeof(*arguments)); local
    [all...]
  /frameworks/base/docs/html/
jd_tag_helpers.js 2 var arr = arguments[0] || [];
3 for (var i = 1; i < arguments.length; i++) {
4 arr = arr.concat(arguments[i]);
30 for (var i = 0; i < arguments.length; i++) {
31 var r = arguments[i];
  /external/proguard/src/proguard/retrace/
ReTrace.java 205 String arguments = null; local
208 // arguments beforehand.
236 arguments = originalArguments(match);
295 arguments,
301 arguments = originalArguments(match);
302 outLine.append(arguments);
433 String arguments,
452 if (methodInfo.matches(lineNumber, type, arguments))
467 outLine.append('(').append(methodInfo.arguments).append(')');
488 extraBuffer.append('(').append(methodInfo.arguments).append(')')
655 private String arguments; field in class:ReTrace.MethodInfo
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
BaseTreeAdaptor.js 36 if (arguments.length===1) {
141 if (arguments.length===2) {
142 if (org.antlr.lang.isString(arguments[1])) {
143 text = arguments[1];
153 } else if (arguments.length===3) {
154 text = arguments[2];
RewriteRuleNodeStream.js 5 org.antlr.runtime.tree.RewriteRuleNodeStream.superclass.constructor.apply(this, arguments);
  /external/chromium-libpac/test/js-unittest/
passthrough.js 1 // Return a single-proxy result, which encodes ALL the arguments that were
5 if (arguments.length != 2) {
6 throw "Wrong number of arguments passed to FindProxyForURL!";
  /external/chromium_org/net/data/proxy_resolver_v8_unittest/
passthrough.js 1 // Return a single-proxy result, which encodes ALL the arguments that were
5 if (arguments.length != 2) {
6 throw "Wrong number of arguments passed to FindProxyForURL!";
  /external/chromium_org/v8/test/mjsunit/es6/
generators-poisoned-properties.js 11 var adesc = Object.getOwnPropertyDescriptor(f, "arguments");
29 assertThrows(function() { return f.arguments; }, TypeError);
30 assertThrows(function() { f.arguments = 42; }, TypeError);
  /external/deqp/android/package/src/com/drawelements/deqp/testercore/
DeqpInstrumentation.java 56 public void onCreate (Bundle arguments) {
57 super.onCreate(arguments);
60 m_cmdLine = arguments.getString("deqpCmdLine");
61 m_logFileName = arguments.getString("deqpLogFilename");
69 if (arguments.getString("deqpLogData") != null)
71 if (arguments.getString("deqpLogData").compareToIgnoreCase("true") == 0)
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityTextTraversalTest.java 64 final Bundle arguments = new Bundle(); local
65 arguments.putInt(AccessibilityNodeInfo.ACTION_ARGUMENT_MOVEMENT_GRANULARITY_INT,
74 arguments);
104 arguments);
134 arguments);
160 arguments));
168 arguments);
198 arguments);
228 arguments);
254 AccessibilityNodeInfo.ACTION_PREVIOUS_AT_MOVEMENT_GRANULARITY, arguments));
279 final Bundle arguments = new Bundle(); local
496 final Bundle arguments = new Bundle(); local
746 final Bundle arguments = new Bundle(); local
1244 final Bundle arguments = new Bundle(); local
1494 final Bundle arguments = new Bundle(); local
1749 final Bundle arguments = new Bundle(); local
2243 final Bundle arguments = new Bundle(); local
2498 final Bundle arguments = new Bundle(); local
2993 final Bundle arguments = new Bundle(); local
3248 final Bundle arguments = new Bundle(); local
3746 final Bundle arguments = new Bundle(); local
4001 final Bundle arguments = new Bundle(); local
4514 Bundle arguments = new Bundle(); local
4568 Bundle arguments = new Bundle(); local
4630 Bundle arguments = new Bundle(); local
    [all...]
  /external/chromium_org/v8/test/webkit/
strict-throw-type-error.js 34 return arguments;
39 var functionArguments1 = getter(strictArgumentsFunction1, "arguments");
43 var boundArguments1 = getter(boundFunction1, "arguments");
48 return arguments;
53 var functionArguments2 = getter(strictArgumentsFunction2, "arguments");
57 var boundArguments2 = getter(boundFunction2, "arguments");
  /frameworks/support/v4/java/android/support/v4/widget/
ExploreByTouchHelper.java 440 private boolean performAction(int virtualViewId, int action, Bundle arguments) {
443 return performActionForHost(action, arguments);
445 return performActionForChild(virtualViewId, action, arguments);
449 private boolean performActionForHost(int action, Bundle arguments) {
450 return ViewCompat.performAccessibilityAction(mView, action, arguments);
453 private boolean performActionForChild(int virtualViewId, int action, Bundle arguments) {
457 return manageFocusForChild(virtualViewId, action, arguments);
459 return onPerformActionForVirtualView(virtualViewId, action, arguments);
463 private boolean manageFocusForChild(int virtualViewId, int action, Bundle arguments) {
703 * @param arguments (Optional) A bundle with additional arguments, o
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
UnwantedTokenException.js 3 if (arguments.length>0) {
  /external/chromium_org/third_party/sinonjs/src/
sinon-qunit.js 55 if (arguments.length === 2) {
  /external/chromium_org/tools/cr/cr/actions/
ninja.py 49 def Build(self, targets, arguments):
64 build_arguments.extend(arguments)
73 def Clean(self, targets, arguments):
75 build_arguments.extend(arguments)

Completed in 671 milliseconds

1 2 3 4 5 67 8 91011>>