HomeSort by relevance Sort by last modified time
    Searched full:arguments (Results 601 - 625 of 11668) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/mesa/src/docs/
opengles.html 54 <li>When a function is in Mesa and the type matches, it checks the arguments and calls the Mesa function.</li>
55 <li>When a function is in Mesa but the type mismatches, it checks and converts the arguments before calling the Mesa function.</li>
56 <li>When a function is not available in Mesa, or accepts arguments that are not available in OpenGL, it provides its own implementation.</li>
59 <p>Other than the last case, OpenGL ES uses <code>APIspec.xml</code> to generate functions to check and/or converts the arguments.</p>
  /external/chromium_org/tools/cr/cr/actions/
ninja.py 32 def Build(self, context, targets, arguments):
34 build_arguments.extend(arguments)
44 def Clean(self, context, targets, arguments):
46 build_arguments.extend(arguments)
  /external/chromium_org/tools/gyp/test/make/
gyptest-noload.py 30 arguments=['NO_LOAD=lib'])
34 arguments=['NO_LOAD=z'])
42 arguments=['NO_LOAD=lib'])
53 arguments=['NO_LOAD=lib'])
  /external/chromium_org/tools/idl_parser/test_parser/
interface_web.idl 82 * Arguments()
102 * Arguments()
109 * Arguments()
118 * Arguments()
  /external/chromium_org/v8/src/
arguments.h 36 // Arguments provides access to runtime call parameters.
38 // It uses the fact that the instance fields of Arguments
44 // Object* Runtime_function(Arguments args) {
48 class Arguments BASE_EMBEDDED {
50 Arguments(int length, Object** arguments)
51 : length_(length), arguments_(arguments) { }
75 // Get the total number of arguments including the receiver.
78 Object** arguments() { return arguments_; } function in class:v8::internal::BASE_EMBEDDED
86 // For each type of callback, we have a list of arguments
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
regress-arguments.js 28 // Test of arguments.
33 function g() { return f.apply(null, arguments); }
34 function h() { return f.apply(void 0, arguments); }
46 return f.apply(v, arguments);
variables.js 69 // Parameters rewritten to property accesses. Using the name 'arguments'
70 // (even if it shadows the arguments object) forces all parameters to be
72 function f6(arguments) { return arguments; }
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1210.js 30 // Deoptimization of the key expression in an arguments access should see
31 // the arguments object as the value of the receiver.
42 // subexpression of the arguments access).
43 return observe(a, arguments[side_effect(a), a + 0]);
regress-88858.js 30 // Verify that JSObject::PreventExtensions works for arguments objects.
37 o = arguments;
39 p = arguments;
40 o.watch(0, (arguments-1901)('o'));
regress-crbug-222893.js 39 exec_state.frame(0).evaluate('arguments').value());
50 arguments;
51 debugger; // Arguments object is already materialized.
59 debugger; // Arguments object is not yet materialized.
  /external/chromium_org/v8/test/mjsunit/
search-string-multiple.js 41 var l = arguments.length;
43 a.push(arguments[0]);
45 a.push(arguments[i]);
47 return "[@" + arguments[l - 2] + ":" + a.join(",") + "]";
  /external/chromium_org/v8/test/webkit/
dfg-inline-arguments-become-double.js 25 "This tests that inlining preserves function.arguments functionality if the arguments are reassigned to refer to an int32."
29 return bar.arguments;
52 shouldBe("argsToStr(baz(\"a\" + __i, \"b\" + __i, \"c\" + __i))", "\"[object Arguments]: a" + __i + ", 42.5, c" + __i + "\"");
dfg-inline-arguments-become-int32.js 25 "This tests that inlining preserves function.arguments functionality if the arguments are reassigned to refer to an int32."
29 return bar.arguments;
52 shouldBe("argsToStr(baz(\"a\" + __i, \"b\" + __i, \"c\" + __i))", "\"[object Arguments]: a" + __i + ", 42, c" + __i + "\"");
dfg-inline-arguments-int32.js 25 "This tests that inlining preserves function.arguments functionality if the arguments were represented as unboxed int32."
29 return bar.arguments;
51 shouldBe("argsToStr(baz(__i + 1, __i + 2, __i + 3))", "\"[object Arguments]: " + (__i + 1) + ", " + (__i + 2) + ", " + (__i + 3) + "\"");
dfg-inline-arguments-reset-changetype.js 25 "This tests that inlining preserves function.arguments functionality if the arguments are reassigned with a different type."
29 return bar.arguments;
52 shouldBe("argsToStr(baz(\"a\" + __i, __i + 2, \"c\" + __i))", "\"[object Arguments]: a" + __i + ", a" + __i + ", c" + __i + "\"");
dfg-inline-arguments-reset.js 25 "This tests that inlining preserves function.arguments functionality if the arguments are reassigned."
29 return bar.arguments;
52 shouldBe("argsToStr(baz(\"a\" + __i, \"b\" + __i, \"c\" + __i))", "\"[object Arguments]: a" + __i + ", a" + __i + ", c" + __i + "\"");
  /external/chromium_org/webkit/data/test_shell/sort/
sort-insertion.js 4 if (arguments.length == 1 || x == undefined) {
  /external/clang/test/Analysis/
crash-trace.c 14 // CHECK: 0. Program arguments: {{.*}}clang
  /external/clang/test/CXX/temp/temp.param/
p1.cpp 12 X0<int> x0; // expected-error{{too few template arguments for class template 'X0'}}
p13.cpp 7 // template-parameters and their default arguments.
  /external/clang/test/Sema/
builtins-aarch64.c 20 __clear_cache(); // expected-error {{too few arguments to function call}}
  /external/clang/test/SemaCXX/
overload-member-call.cpp 75 void foo(int n, const char *s, int t); // expected-note {{candidate function not viable: requires 3 arguments, but 2 were provided}}
76 void foo(int n, const char *s, int t, ...); // expected-note {{candidate function not viable: requires at least 3 arguments, but 2 were provided}}
77 void foo(int n, const char *s, int t, int u = 0); // expected-note {{candidate function not viable: requires at least 3 arguments, but 2 were provided}}
86 void foo(int n); // expected-note {{candidate function not viable: requires single argument 'n', but 2 arguments were provided}}
87 void foo(unsigned n = 10); // expected-note {{candidate function not viable: allows at most single argument 'n', but 2 arguments were provided}}
88 void rab(double n, int u = 0); // expected-note {{candidate function not viable: requires at least argument 'n', but no arguments were provided}}
89 void rab(int n, int u = 0); // expected-note {{candidate function not viable: requires at least argument 'n', but no arguments were provided}}
90 void zab(double n = 0.0, int u = 0); // expected-note {{candidate function not viable: requires at most 2 arguments, but 3 were provided}}
91 void zab(int n = 0, int u = 0); // expected-note {{candidate function not viable: requires at most 2 arguments, but 3 were provided}}
  /external/clang/test/SemaObjC/
attr-root-class.m 18 __attribute__((objc_root_class(1))) // expected-error {{'objc_root_class' attribute takes no arguments}}
  /external/clang/test/SemaTemplate/
default-arguments-cxx0x.cpp 4 // Test default template arguments for function templates.
default-expr-arguments-2.cpp 4 // the default arguments of the constructor when the function type is

Completed in 520 milliseconds

<<21222324252627282930>>