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

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/chromeos/login/test/
https_forwarder.cc 52 base::DictionaryValue* arguments) const {
54 if (!net::LocalTestServer::GenerateAdditionalArguments(arguments) ||
58 arguments->SetString("forward-target", forward_target_.spec());
https_forwarder.h 27 base::DictionaryValue* arguments) const OVERRIDE;
  /external/chromium_org/tools/cr/cr/actions/
gdb.py 20 def Invoke(self, targets, arguments):
27 *arguments
30 def Attach(self, targets, arguments):
  /frameworks/support/v4/jellybean/android/support/v4/view/accessibility/
AccessibilityNodeProviderCompatJellyBean.java 31 public boolean performAction(int virtualViewId, int action, Bundle arguments);
54 public boolean performAction(int virtualViewId, int action, Bundle arguments) {
55 return bridge.performAction(virtualViewId, action, arguments);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/audits/
AuditFormatters.js 67 for (var arg = 0; arg < arguments.length; ++arg)
68 parent.appendChild(WebInspector.auditFormatters.apply(arguments[arg]));
126 } else if (value.type && value.arguments) {
128 args = value.arguments;
147 if (typeof value === "object" && typeof formatters[value.type] === "function" && value.arguments)
148 return formatters[value.type].apply(thisArgument, value.arguments);
  /external/chromium_org/v8/test/webkit/fast/js/kde/
arguments-scope.js 35 var arguments;
37 // in scope beforehand -- e.g. the arguments thing
38 shouldBeOfType("test0", arguments, 'object');
43 shouldBeOfType("test1", arguments, 'object');
44 var arguments;
47 function test2(arguments) {
49 shouldBeOfType("test2", arguments, 'number');
55 shouldBeOfType("test3", arguments, 'function');
56 function arguments() {}
62 shouldBeOfType('test4.(1)', arguments, 'object')
    [all...]
  /external/ltrace/
expr.h 61 struct value_dict *arguments,
66 struct value_dict *arguments,
110 struct value_dict *arguments,
120 struct value_dict *arguments,
132 /* Evaluate the expression NODE in context of VALUE. ARGUMENTS is a
135 * ARGUMENTS may be NULL, but then the expression mustn't need them
138 struct value_dict *arguments, struct value *ret_value);
150 struct value_dict *arguments, long *ret_value);
  /external/chromium_org/base/mac/
authorization_util.h 62 const char** arguments,
75 const char** arguments,
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptArguments.h 47 static PassRefPtrWillBeRawPtr<ScriptArguments> create(ScriptState*, Vector<ScriptValue>& arguments);
59 ScriptArguments(ScriptState*, Vector<ScriptValue>& arguments);
  /external/chromium_org/v8/test/webkit/
dfg-inline-arguments-use-from-all-the-places-broken.js 25 "This attempts to test that inlining preserves basic function.arguments functionality when said functionality is used from inside and outside getters and from inlined code, all at once; but it fails at this and instead finds other bugs particularly in the DFG stack layout machinery."
29 return [foo.arguments, bar.arguments].concat(o.f);
33 return [foo.arguments, bar.arguments, getter.arguments, fuzz.arguments];
37 return [foo.arguments, bar.arguments, getter.arguments].concat(fuzz(42, 56))
    [all...]
  /cts/tools/signature-tools/src/signature/compare/model/subst/
ParameterizedTypeProjection.java 65 private List<ITypeReference> arguments = null; field in class:ParameterizedTypeProjection
68 if (arguments == null) {
69 arguments = ViewpointAdapter.substitutedTypeReferences(original
72 return arguments;
  /external/chromium_org/chrome/browser/safe_browsing/
local_safebrowsing_test_server.h 31 base::DictionaryValue* arguments) const OVERRIDE;
  /external/chromium_org/chrome/test/ispy/client/
wait_on_ajax.js 6 var callback = arguments[arguments.length - 1]
  /external/chromium_org/tools/gyp/test/make_global_settings/full-toolchain/
gyptest-make_global_settings.py 39 test.build(gyp_file, arguments=['-v'])
  /external/llvm/test/MC/AsmParser/
macros-argument-parsing-diagnostics.s 11 # CHECK: error: too many positional arguments
16 # CHECK: error: cannot mix positional and keyword arguments
  /external/mockito/src/org/mockito/internal/invocation/
InvocationImpl.java 33 private final Object[] arguments; field in class:InvocationImpl
47 this.arguments = ArgumentsProcessor.expandVarArgs(mockitoMethod.isVarArgs(), args);
62 return arguments;
80 return this.mock.equals(other.mock) && this.method.equals(other.method) && this.equalArguments(other.arguments);
83 private boolean equalArguments(Object[] arguments) {
84 return Arrays.equals(arguments, this.arguments);
  /external/chromium_org/v8/test/mjsunit/
array-slice.js 50 // Check various forms of arguments omission.
89 // More than 2 arguments:
118 // performing ToInteger on arguments.
222 // Check slicing on arguments object.
225 assertEquals(expected, Array.prototype.slice.call(arguments, 1));
235 // Check slicing on arguments object when missing arguments get assigined.
238 assertEquals(1, arguments.length);
241 assertEquals(1, arguments.length); // arguments length is the same
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
inline-arguments.js 41 this.X.apply(this, arguments);
62 function F2() { F1.apply(this, arguments); }
70 return F1.apply(this, arguments);
85 // Test correct adapation of arguments.
86 // Strict mode prevents arguments object from shadowing parameters.
91 assertArrayEquals([1,2], arguments);
95 assertArrayEquals([1,2,3,4], arguments);
99 G2.apply(this, arguments);
103 G4.apply(this, arguments);
117 // Test arguments access from the inlined function
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
v8_callback_interface.py 88 for argument in operation.arguments:
110 context.update(arguments_context(operation.arguments,
115 def arguments_context(arguments, call_with_this_handle):
127 for argument in arguments)
130 'arguments': [argument_context(argument) for argument in arguments],
v8_attributes.py 216 arguments = []
217 this_getter_base_name = getter_base_name(interface, attribute, arguments)
221 arguments.append('toFrameIfNotDetached(info.GetIsolate()->GetCurrentContext())')
222 arguments.append('impl')
223 arguments.append('&result')
224 arguments.extend(v8_utilities.call_with_arguments(
232 arguments.append('*impl')
234 arguments.append('isNull')
236 arguments.append('exceptionState')
237 return '%s(%s)' % (getter_name, ', '.join(arguments))
    [all...]
  /external/chromium_org/v8/src/compiler/
common-operator.h 93 const Operator* Phi(MachineType type, int arguments);
94 const Operator* EffectPhi(int arguments);
96 const Operator* ValueEffect(int arguments);
97 const Operator* Finish(int arguments);
98 const Operator* StateValues(int arguments);
common-operator.cc 176 const Operator* CommonOperatorBuilder::Phi(MachineType type, int arguments) {
177 DCHECK(arguments > 0); // Disallow empty phis.
179 arguments, 1, "Phi", type);
183 const Operator* CommonOperatorBuilder::EffectPhi(int arguments) {
184 DCHECK(arguments > 0); // Disallow empty phis.
186 0, "EffectPhi", arguments);
195 const Operator* CommonOperatorBuilder::ValueEffect(int arguments) {
196 DCHECK(arguments > 0); // Disallow empty value effects.
198 arguments, 0, "ValueEffect");
202 const Operator* CommonOperatorBuilder::Finish(int arguments) {
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
SecurityRequiredDialogFragment.java 42 // Bundle keys for arguments
59 final Bundle arguments = new Bundle(1); local
60 arguments.putString(ARGS_HOST_NAME, hostName);
61 fragment.setArguments(arguments);
68 final Bundle arguments = getArguments(); local
69 final String hostName = arguments.getString(ARGS_HOST_NAME);
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
CommonToken.js 8 if (arguments.length == 1) {
9 if (org.antlr.lang.isNumber(arguments[0])) {
10 this.type = arguments[0];
12 oldToken = arguments[0];
24 } else if (arguments.length == 2) {
25 this.type = arguments[0];
26 this.text = arguments[1];
28 } else if (arguments.length == 5) {
29 this.input = arguments[0];
30 this.type = arguments[1]
    [all...]
  /external/chromium_org/net/test/spawned_test_server/
base_test_server.cc 379 // Generates a dictionary of arguments to pass to the Python test server via
383 bool BaseTestServer::GenerateArguments(base::DictionaryValue* arguments) const {
384 DCHECK(arguments);
386 arguments->SetString("host", host_port_pair_.host());
387 arguments->SetInteger("port", host_port_pair_.port());
388 arguments->SetString("data-dir", document_root_.value());
391 arguments->Set("log-to-console", base::Value::CreateNullValue());
395 arguments->Set("ws-basic-auth", base::Value::CreateNullValue());
399 // Check the certificate arguments of the HTTPS server.
410 arguments->SetString("cert-and-key-file", certificate_path.value())
    [all...]

Completed in 1816 milliseconds

1 2 34 5 6 7 8 91011>>