HomeSort by relevance Sort by last modified time
    Searched defs:arguments (Results 1 - 25 of 174) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/v8/test/mjsunit/
argument-assigned.js 30 var arguments = [ 1, 2, 3 ];
39 arguments[0] = 991;
40 var arguments = [ 1, 2, 3 ]; variable
49 arguments[0] = 991;
52 var arguments = [ 1, 2, 3 ];
66 assertEquals(7, f(7, "var arguments = [ 1, 2, 3 ];"));
72 var tmp = arguments[0];
76 assertEquals(7, f(7, "var arguments = [ 1, 2, 3 ];"));
82 var tmp = arguments[0];
92 var tmp = arguments[0]
    [all...]
debug-evaluate-bool-constructor.js 45 arguments: {
  /external/chromium_org/v8/test/preparser/
nonstrict-arguments.js 30 var arguments = 42; variable
31 arguments = arguments++;
32 arguments += --arguments;
33 arguments -= ++arguments;
34 arguments *= arguments--;
35 function arguments(arguments) {} function
44 var arguments = 42; variable
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSFunctionValue.h 46 CSSValueList* arguments() const { return m_args.get(); } function in class:blink::CSSFunctionValue
  /external/chromium_org/tools/gyp/test/actions/
gyptest-all.py 85 arguments = [] variable
87 arguments = ['-j']
89 arguments=arguments) variable
97 arguments=arguments) variable
  /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/mockito/src/org/mockito/internal/stubbing/answers/
ClonesArguments.java 17 Object[] arguments = invocation.getArguments(); local
18 for (int i = 0; i < arguments.length; i++) {
19 Object from = arguments[i];
22 arguments[i] = newInstance;
  /art/compiler/sea_ir/types/
type_inference_visitor.cc 32 std::vector<const Type*> arguments = fti.GetDeclaredArgumentTypes(); local
33 DCHECK_LT(parameter->GetPositionInSignature(), arguments.size())
35 crt_type_.push_back(arguments.at(parameter->GetPositionInSignature()));
  /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/third_party/WebKit/Source/bindings/templates/
methods.cpp 47 {% if method.arguments %}
62 {% for argument in method.arguments %}
66 {% for argument in method.arguments %}
97 {# Optional arguments without a default value generate an early call with
98 fewer arguments if they are omitted.
99 Optional Dictionary arguments default to empty dictionary. #}
115 Note: for variadic arguments, the type checking is done for each matched variable
269 {# Length check needed to skip action on legacy calls without enough arguments.
407 {# Otherwise just report "not enough arguments" #}
522 {% for argument in method.arguments %
    [all...]
  /external/chromium_org/v8/src/base/
logging.cc 80 va_list arguments; local
81 va_start(arguments, format);
82 v8::base::OS::VPrintError(format, arguments);
83 va_end(arguments);
  /external/mockito/src/org/mockito/internal/matchers/
CapturingMatcher.java 19 private LinkedList<Object> arguments = new LinkedList<Object>(); field in class:CapturingMatcher
36 if (arguments.isEmpty()) {
40 return (T) arguments.getLast();
45 return (List) arguments;
49 this.arguments.add(argument);
VarargCapturingMatcher.java 18 private LinkedList<List<T>> arguments = new LinkedList<List<T>>(); field in class:VarargCapturingMatcher
29 if (arguments.isEmpty()) {
33 return arguments.getLast();
38 return arguments;
43 this.arguments.add(vararg);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptCallStackFactory.cpp 129 Vector<ScriptValue> arguments; local
131 arguments.append(ScriptValue(scriptState, v8arguments[i]));
133 return ScriptArguments::create(scriptState, arguments);
  /external/chromium_org/v8/test/mjsunit/es6/
promises.js 46 var poisoned = {caller: 0, callee: 0, arguments: 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...]
  /cts/tests/uiautomator/test-apps/CtsUiAutomatorApp/src/com/android/cts/uiautomator/
TestItems.java 115 Bundle arguments = new Bundle(); local
116 arguments.putString("item_id", id);
117 fragment.setArguments(arguments);
  /cts/tools/vm-tests-tf/src/util/build/
JarBuildStep.java 59 String[] arguments = new String[] { local
63 boolean success = main.run(arguments);
  /external/bison/djgpp/
subpipe.c 56 static char **arguments; variable
139 arguments = xmalloc(argc * sizeof(arguments[0]));
142 arguments[argc] = xmalloc((strlen(argv[argc]) + 1) * sizeof(arguments[0][0]));
143 strcpy(arguments[argc], argv[argc]);
145 arguments[argc] = NULL;
187 program = strrchr(arguments[0], '/');
191 program = arguments[0];
228 status = spawnvp(P_WAIT, program, arguments);
    [all...]
  /external/chromium_org/base/strings/
string_util.h 45 int vsnprintf(char* buffer, size_t size, const char* format, va_list arguments)
55 va_list arguments; local
56 va_start(arguments, format);
57 int result = vsnprintf(buffer, size, format, arguments);
58 va_end(arguments);
135 // These should not be used as initializers, function arguments, or return
  /external/chromium_org/chrome/browser/component_updater/
recovery_component_installer.cc 141 std::string arguments; local
142 if (manifest.GetStringASCII("x-recovery-args", &arguments))
143 cmdline.AppendArg(arguments);
  /external/chromium_org/chrome/browser/ui/webui/extensions/
pack_extension_handler.cc 70 base::ListValue arguments; local
71 arguments.Append(new base::StringValue(base::UTF16ToUTF8(
74 "extensions.PackExtensionOverlay.showSuccessMessage", arguments);
201 base::ListValue arguments; local
202 arguments.Append(new base::StringValue(message));
204 "extensions.PackExtensionOverlay.showError", arguments);
  /external/chromium_org/chrome/test/base/
javascript_browser_test.cc 108 ConstValueVector arguments; local
110 arguments.push_back(is_async_arg);
112 arguments.push_back(function_name_arg);
120 arguments.push_back(baked_argument_list);
122 arguments.get());
  /external/chromium_org/chromeos/dbus/
shill_manager_client_unittest.cc 22 void ExpectStringArguments(const std::vector<std::string>& arguments,
24 for (std::vector<std::string>::const_iterator iter = arguments.begin();
25 iter != arguments.end(); ++iter) {
34 const std::vector<std::string>& arguments,
37 for (std::vector<std::string>::const_iterator iter = arguments.begin();
38 iter != arguments.end(); ++iter) {
323 std::vector<std::string> arguments; local
324 arguments.push_back("certificate");
325 arguments.push_back("public_key");
326 arguments.push_back("nonce")
362 std::vector<std::string> arguments; local
406 std::vector<std::string> arguments; local
    [all...]
  /external/chromium_org/content/renderer/java/
gin_java_bridge_object.cc 115 gin::Arguments* args) {
122 base::ListValue arguments; local
130 arguments.Append(arg.release());
132 arguments.Append(base::Value::CreateNullValue());
139 object_id_, name, arguments, &error);

Completed in 477 milliseconds

1 2 3 4 5 6 7