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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/support/v4/java/android/support/v4/view/accessibility/
AccessibilityNodeProviderCompat.java 51 Bundle arguments) {
52 return compat.performAction(virtualViewId, action, arguments);
92 int virtualViewId, int action, Bundle arguments) {
93 return compat.performAction(virtualViewId, action, arguments);
205 * @param arguments Optional arguments.
211 public boolean performAction(int virtualViewId, int action, Bundle arguments) {
  /external/chromium_org/chrome/tools/profile_reset/
jtl_compiler.cc 52 // - Instructions ending in "hash" will write their 'HashString' arguments
55 // arguments, and will write this hash to the byte-code.
56 Add(Instruction("go", jtl::NAVIGATE, Arguments(String)));
57 Add(Instruction("any", jtl::NAVIGATE_ANY, Arguments()));
58 Add(Instruction("back", jtl::NAVIGATE_BACK, Arguments()));
59 Add(Instruction("store_bool", jtl::STORE_BOOL, Arguments(String, Bool)));
61 jtl::STORE_HASH, Arguments(String, HashString)));
63 jtl::STORE_HASH, Arguments(String, String)));
65 jtl::STORE_NODE_BOOL, Arguments(String)));
67 jtl::STORE_NODE_HASH, Arguments(String)))
228 base::ListValue arguments; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/
FunctionReceiverChecker.java 112 List<String> arguments = new ArrayList<>(argumentCount); local
114 arguments.add(getContext().getNodeText(argumentNode));
116 return arguments;
120 String functionName, List<Node> argumentNodes, List<String> arguments) {
121 int argumentCount = arguments.size();
129 String receiverArgument = argumentCount < 3 ? "" : arguments.get(2);
145 String argumentText = arguments.get(i);
160 private boolean isReceiverSpecified(List<String> arguments) {
161 return arguments.size() > 0 && !"null".equals(arguments.get(0))
    [all...]
AstUtil.java 81 List<Node> arguments = new ArrayList<>(childCount - 1); local
83 arguments.add(functionCall.getChildAtIndex(i));
85 return arguments;
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1412.js 28 // Test that the apply with arguments optimization passes values
36 assertEquals(void 0, strict.apply(undefined, arguments));
37 assertEquals(42, strict.apply(42, arguments));
38 assertEquals("asdf", strict.apply("asdf", arguments));
46 Object.prototype.valueOf.apply(receiver, arguments);
regress-1548.js 28 // Test that the caller and arguments objects are not available on native
40 // Redo tests with arguments object.
42 function bar() { return [].map.arguments; }
45 // Try to delete the arguments property (to make sure that we can't get to the
47 delete Array.prototype.map.arguments;
regress-crbug-150545.js 30 // Test that we do not generate OSR entry points that have an arguments
40 assertSame(3, arguments.length);
41 assertSame(1, arguments[0]);
42 assertSame(2, arguments[1]);
43 assertSame(3, arguments[2]);
  /frameworks/base/core/java/com/android/internal/widget/
ExploreByTouchHelper.java 458 private boolean performAction(int virtualViewId, int action, Bundle arguments) {
461 return performActionForHost(action, arguments);
463 return performActionForChild(virtualViewId, action, arguments);
467 private boolean performActionForHost(int action, Bundle arguments) {
468 return performAccessibilityAction(mView, action, arguments);
471 private boolean performActionForChild(int virtualViewId, int action, Bundle arguments) {
477 return onPerformActionForVirtualView(virtualViewId, action, arguments);
727 * @param arguments (Optional) A bundle with additional arguments, or
732 int virtualViewId, int action, Bundle arguments);
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/irc/
irclib.py 129 Optional arguments are fn_to_add_socket, fn_to_remove_socket
142 The three arguments mainly exist to be able to use an external
160 self.delayed_commands = [] # list of tuples in the format (time, function, arguments)
174 Arguments:
201 Arguments:
224 Arguments:
239 Arguments:
264 Arguments:
279 def execute_at(self, at, function, arguments=()):
282 Arguments
1152 def arguments(self): member in class:Event
    [all...]
  /external/chromium_org/v8/test/mjsunit/
debug-handle.js 46 function evaluateRequest(exec_state, arguments) {
53 // Generate request with the supplied arguments.
55 if (arguments) {
56 request = '{' + base_request + ',"arguments":' + arguments + '}';
69 function lookupRequest(exec_state, arguments, success) {
76 // Generate request with the supplied arguments.
78 if (arguments) {
79 request = '{' + base_request + ',"arguments":' + arguments + '}'
    [all...]
  /external/chromium_org/extensions/renderer/resources/
runtime_custom_bindings.js 125 // Align missing (optional) function arguments with the arguments that
133 if (typeof(arguments[nextArg]) == 'string')
134 targetId = arguments[nextArg++];
138 if (typeof(arguments[nextArg]) == 'object')
139 connectInfo = arguments[nextArg++];
141 if (nextArg != arguments.length)
142 throw new Error('Invalid arguments to connect.');
149 throw new Error('Invalid arguments to connectNative.');
permissions_custom_bindings.js 33 if (arguments.length < 1)
34 return arguments;
36 var args = arguments[0].permissions;
38 return arguments;
47 arguments[0].permissions[i] = keys[0] + '|' +
52 return arguments;
  /frameworks/base/test-runner/src/android/test/
InstrumentationTestRunner.java 81 * with no optional arguments, to run all tests (except performance tests).
157 * in addition to the other arguments.
303 public void onCreate(Bundle arguments) {
304 super.onCreate(arguments);
305 mArguments = arguments;
318 if (arguments != null) {
320 testClassesArg = arguments.getString(ARGUMENT_TEST_CLASS);
321 mDebug = getBooleanArgument(arguments, "debug");
322 mJustCount = getBooleanArgument(arguments, "count");
323 mSuiteAssignmentMode = getBooleanArgument(arguments, "suiteAssignment")
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/backends/remote/
trybot_browser_finder.py 109 arguments = sys.argv
111 arguments[0] = 'python tools\\perf\\run_measurement'
113 arguments[0] = './tools/perf/run_measurement'
114 for index, arg in enumerate(arguments):
117 arguments[index] = '--browser=android-chrome-shell'
119 arguments[index] = '--browser=release'
120 command = ' '.join(arguments)
  /external/chromium_org/v8/test/webkit/
named-function-expression.js 65 (function closure() { return closure == arguments.callee && !this.closure; })(),
66 "(function closure() { return closure == arguments.callee && !this.closure; })()"
71 (function closure() { closure = 1; return closure == arguments.callee && !this.closure; })(),
72 "(function closure() { closure = 1; return closure == arguments.callee && !this.closure; })()"
89 (function closure() { function closure() { }; return closure != arguments.callee && !this.closure; })(),
90 "(function closure() { function closure() { }; return closure != arguments.callee && !this.closure; })()"
125 (function closure() { eval("function closure() { }"); return closure != arguments.callee && !this.closure; })(),
126 "(function closure() { eval(\"function closure() { }\"); return closure != arguments.callee && !this.closure; })()"
137 (function closure() { eval("var closure"); delete closure; return closure == arguments.callee && !this.closure; })(),
138 "(function closure() { eval(\"var closure\"); delete closure; return closure == arguments.callee && !this.closure; })()
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
CheckSettingsErrorDialogFragment.java 38 // Bundle keys for arguments
63 final Bundle arguments = new Bundle(2); local
64 arguments.putString(ARGS_MESSAGE, message);
65 arguments.putInt(ARGS_REASON, reason);
66 fragment.setArguments(arguments);
73 final Bundle arguments = getArguments(); local
74 final String message = arguments.getString(ARGS_MESSAGE);
75 final int reason = arguments.getInt(ARGS_REASON);
  /external/chromium_org/v8/src/compiler/
js-operator.h 114 const Operator* Call(int arguments, CallFunctionFlags flags) {
115 CallParameters parameters = {arguments, flags};
117 arguments, 1);
120 const Operator* CallNew(int arguments) {
123 arguments, 1, "JSCallConstruct", arguments);
183 const Operator* Runtime(Runtime::FunctionId function, int arguments) {
185 DCHECK(f->nargs == -1 || f->nargs == arguments);
187 arguments, f->result_size);
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
BitSet.js 240 * If no arguments given, sets all of the bits in this BitSet to false.
245 if (arguments.length===0) {
423 * If no arguments are passed sets all bits to the complement of their
426 * current value. If two arguments are passed sets each bit from the
434 if (arguments.length===0) {
439 if (arguments.length===1) {
441 maxBit = arguments[0];
443 minBit = arguments[0];
444 maxBit = arguments[1];
620 * <>If two arguments are passed, the first will be used as a custo
    [all...]
  /external/chromium_org/extensions/renderer/
messaging_bindings.cc 118 // Arguments are (int32 port_id, string message).
136 // Arguments are (int32 port_id, boolean notify_browser).
158 // Arguments are (int32 port_id).
170 // Arguments are (int32 port_id).
282 v8::Handle<v8::Value> arguments[] = { local
313 "messaging", "dispatchOnConnect", arraysize(arguments), arguments);
341 std::vector<v8::Handle<v8::Value> > arguments;
342 arguments.push_back(v8::String::NewFromUtf8(isolate,
346 arguments.push_back(port_id_handle)
357 std::vector<v8::Handle<v8::Value> > arguments; local
    [all...]
  /frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
BluetoothInstrumentation.java 51 public void onCreate(Bundle arguments) {
52 super.onCreate(arguments);
53 mArgs = arguments;
  /external/chromium_org/v8/src/
d8.js 504 if (this.arguments) {
505 json += ',"arguments":';
506 // Encode the arguments part.
507 if (this.arguments.toJSONProtocol) {
508 json += this.arguments.toJSONProtocol();
510 json += JSON.stringify(this.arguments);
534 request.arguments = {};
535 request.arguments.handles = [ lookup_handle ];
540 request.arguments = {};
541 request.arguments.expression = expression
    [all...]
  /bionic/libc/arch-mips/bionic/
__bionic_clone.S 46 # remainder of arguments are correct for clone system call
  /bionic/libc/arch-x86_64/bionic/
__bionic_clone.S 40 # Translate to the kernel calling convention and swap the 'tls' and 'child_tid' arguments.
66 # with the arguments from the child stack moved into
syscall.S 44 # All arguments are passed via registers.
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
nav_math_description.js 28 * style: (undefined|string)}} kwargs The arguments for
29 * the specialised math navigationdescription. See arguments of nav

Completed in 899 milliseconds

1 2 3 4 5 6 7 8 91011>>