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

1 2 3 45 6 7 8 91011>>

  /external/mesa3d/src/glsl/glcpp/tests/
085-incorrect-argument-count.c.expected 1 0:2(1): preprocessor error: Error: macro MULT invoked with 1 arguments (expected 2)
3 0:3(1): preprocessor error: Error: macro MULT invoked with 1 arguments (expected 2)
5 0:4(1): preprocessor error: Error: macro MULT invoked with 3 arguments (expected 2)
  /external/v8/test/mjsunit/
arguments-read-and-assignment.js 27 // Testing basic functionality of the arguments object.
29 // The arguments object itself.
30 assertEquals(42, function(){ return arguments;}(42)[0],
31 "return arguments value");
32 assertEquals(42, function(){ return arguments;}(42)[0],
33 "arguments in plain value context");
34 assertEquals(42, function(){ arguments;return 42}(37),
35 "arguments in effect context");
36 assertEquals(42, function(){ if(arguments)return 42;}(),
37 "arguments in a boolean context")
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
arguments.js 25 "This test thoroughly checks the behaviour of the 'arguments' object."
30 return arguments[0];
35 return arguments[1];
40 return arguments[2];
45 return arguments[3];
50 return arguments[4];
54 arguments.length = 5;
55 return arguments.length;
59 Array.prototype.push.call(arguments, a);
60 return arguments[1]
    [all...]
basic-strict-mode.js 88 shouldBeSyntaxError("(function arguments(){'use strict';})");
89 shouldBeSyntaxError("(function (arguments){'use strict';})");
91 shouldBeSyntaxError("(function (){'use strict'; var arguments;})");
93 shouldBeSyntaxError("(function (){'use strict'; try{}catch(arguments){}})");
99 shouldThrow("(function (){'use strict'; arguments.callee; })()");
100 shouldThrow("(function (){'use strict'; arguments.caller; })()");
101 shouldThrow("(function f(){'use strict'; f.arguments; })()");
103 shouldThrow("(function f(){'use strict'; f.arguments=5; })()");
105 shouldThrow("(function (arg){'use strict'; arguments.callee; })()");
106 shouldThrow("(function (arg){'use strict'; arguments.caller; })()")
    [all...]
  /external/chromium_org/gin/
arguments.cc 5 #include "gin/arguments.h"
12 Arguments::Arguments()
19 Arguments::Arguments(const v8::FunctionCallbackInfo<v8::Value>& info)
26 Arguments::~Arguments() {
29 v8::Handle<v8::Value> Arguments::PeekNext() const {
35 void Arguments::ThrowError() const {
37 return ThrowTypeError("Insufficient number of arguments.")
    [all...]
  /external/clang/test/Sema/
attr-args.c 4 inline __attribute__((noreturn(a))) void *f1(); // expected-error {{'noreturn' attribute takes no arguments}}
5 inline __attribute__((always_inline(a))) void *f2(); // expected-error {{'always_inline' attribute takes no arguments}}
6 inline __attribute__((cdecl(a))) void *f3(); // expected-error {{'cdecl' attribute takes no arguments}}
7 inline __attribute__((const(a))) void *f4(); // expected-error {{'const' attribute takes no arguments}}
8 inline __attribute__((fastcall(a))) void *f5(); // expected-error {{'fastcall' attribute takes no arguments}}
9 inline __attribute__((malloc(a))) void *f5(); // expected-error {{'malloc' attribute takes no arguments}}
10 inline __attribute__((nothrow(a))) void *f7(); // expected-error {{'nothrow' attribute takes no arguments}}
11 inline __attribute__((stdcall(a))) void *f8(); // expected-error {{'stdcall' attribute takes no arguments}}
12 inline __attribute__((used(a))) void *f9(); // expected-error {{'used' attribute takes no arguments}}
13 inline __attribute__((unused(a))) void *f10(); // expected-error {{'unused' attribute takes no arguments}}
    [all...]
default1.c 2 void f(int i = 0); // expected-error {{C does not support default arguments}}
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
p3.cpp 3 void nondecl(int (*f)(int x = 5)) // expected-error {{default arguments can only be specified}}
5 void (*f2)(int = 17) // expected-error {{default arguments can only be specified}}
6 = (void (*)(int = 42))f; // expected-error {{default arguments can only be specified}}
10 int (*f)(int = 17); // expected-error{{default arguments can only be specified for parameters in a function declaration}}
11 void (*g())(int = 22); // expected-error{{default arguments can only be specified for parameters in a function declaration}}
13 auto i(int) -> void (*)(int = 9); // expected-error{{default arguments can only be specified for parameters in a function declaration}}
15 void mem8(int (*fp)(int) = (int (*)(int = 17))0); // expected-error{{default arguments can only be specified for parameters in a function declaration}}
  /external/easymock/src/org/easymock/
ArgumentsMatcher.java 19 * A comparison function that is used to match arguments.
35 * Matches two arrays of arguments.
38 * the expected arguments.
40 * the actual arguments.
41 * @return true if the arguments match, false otherwise.
46 * Returns a string representation of the arguments.
48 * @param arguments
49 * the arguments to be used in the string representation.
50 * @return a string representation of the arguments.
52 String toString(Object[] arguments);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
TestRunner.cpp 829 void TestRunner::queueBackNavigation(const CppArgumentList& arguments, CppVariant* result)
831 if (arguments.size() > 0 && arguments[0].isNumber())
832 m_workQueue.addWork(new WorkItemBackForward(-arguments[0].toInt32()));
836 void TestRunner::queueForwardNavigation(const CppArgumentList& arguments, CppVariant* result)
838 if (arguments.size() > 0 && arguments[0].isNumber())
839 m_workQueue.addWork(new WorkItemBackForward(arguments[0].toInt32()));
884 void TestRunner::queueLoadingScript(const CppArgumentList& arguments, CppVariant* result)
886 if (arguments.size() > 0 && arguments[0].isString()
    [all...]
  /external/chromium_org/v8/test/webkit/
dfg-inline-arguments-use-from-all-the-places.js 25 "This tests that inlining preserves basic function.arguments functionality when said functionality is used from inside and outside getters and from inlined code, all at once."
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...]
  /external/llvm/test/Other/
optimize-options.ll 1 ;RUN: opt -S -O1 -debug-pass=Arguments 2>&1 | FileCheck %s
2 ;RUN: opt -S -O2 -debug-pass=Arguments 2>&1 | FileCheck %s
3 ;RUN: opt -S -Os -debug-pass=Arguments 2>&1 | FileCheck %s
4 ;RUN: opt -S -Oz -debug-pass=Arguments 2>&1 | FileCheck %s
5 ;RUN: opt -S -O3 -debug-pass=Arguments 2>&1 | FileCheck %s
8 ;CHECK: Pass Arguments: {{.*}} -print-module
  /frameworks/base/tests/MemoryUsage/src/com/android/tests/memoryusage/
MemoryUsageInstrumentation.java 26 private Bundle arguments; field in class:MemoryUsageInstrumentation
29 public void onCreate(Bundle arguments) {
30 this.arguments = arguments;
31 super.onCreate(arguments);
35 return arguments;
  /dalvik/dx/tests/101-verify-wide-math/
info.txt 2 ops, comparisons, etc.) verify that their arguments are actually of
  /dalvik/dx/tests/104-verify-return-ops/
info.txt 1 This tests that return opcodes verify that their arguments are actually of
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t053heteroT9.g 9 if (arguments.length===4) {
10 ttype = arguments[0];
11 x = arguments[1];
12 y = arguments[2];
13 z = arguments[3];
15 } else if (arguments.length===3) {
16 ttype = arguments[0];
17 token = arguments[1];
18 x = arguments[2];
  /external/clang/test/CodeGen/
2002-10-12-TooManyArguments.c 7 foo(1, 2, 3); /* Too many arguments passed */
  /external/mockito/src/org/mockito/internal/verification/argumentmatching/
package.html 7 Deals with matching arguments
  /external/openssh/contrib/hpux/
sshd 2 # SSHD_ARGS: Command line arguments to pass to sshd
  /external/chromium_org/ui/gl/
generate_bindings.py 17 'arguments': 'GLenum texture', },
20 'arguments': 'GLuint program, GLuint shader', },
23 'arguments': 'GLenum target, GLuint id', },
26 'arguments': 'GLenum target, GLuint id', },
29 'arguments': 'GLuint program, GLuint index, const char* name', },
32 'arguments': 'GLenum target, GLuint buffer', },
35 'arguments': 'GLuint program, GLuint colorNumber, const char* name', },
38 'arguments':
42 'arguments': 'GLenum target, GLuint framebuffer', },
45 'arguments': 'GLenum target, GLuint renderbuffer', }
1445 arguments = func['arguments'] variable
1544 arguments = func['arguments'] variable
1567 arguments = func['arguments'] variable
    [all...]
  /external/chromium_org/tools/cr/cr/actions/
adb.py 36 def Run(cls, target, arguments):
44 *arguments
62 def Uninstall(cls, target, arguments):
67 *arguments
71 def Install(cls, target, arguments):
76 *arguments
80 def Reinstall(cls, target, arguments):
87 *arguments
91 def AttachGdb(cls, target, arguments):
99 *arguments
    [all...]
  /external/chromium_org/content/test/data/npapi/
many_plugins.html 25 name="arguments"
30 name="arguments"
35 name="arguments"
40 name="arguments"
45 name="arguments"
50 name="arguments"
55 name="arguments"
60 name="arguments"
65 name="arguments"
70 name="arguments"
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
MetadataParser.java 54 final TreeMap<String, String> arguments = new TreeMap<String, String>(); local
59 arguments.put(name, reader.nextString());
63 if (TextUtils.isEmpty(arguments.get(ID_FIELD_NAME))
64 || TextUtils.isEmpty(arguments.get(LOCALE_FIELD_NAME))
65 || TextUtils.isEmpty(arguments.get(DESCRIPTION_FIELD_NAME))
66 || TextUtils.isEmpty(arguments.get(UPDATE_FIELD_NAME))
67 || TextUtils.isEmpty(arguments.get(FILESIZE_FIELD_NAME))
68 || TextUtils.isEmpty(arguments.get(CHECKSUM_FIELD_NAME))
69 || TextUtils.isEmpty(arguments.get(REMOTE_FILENAME_FIELD_NAME))
70 || TextUtils.isEmpty(arguments.get(VERSION_FIELD_NAME)
    [all...]
  /cts/tools/tradefed-host/
.project 10 <arguments>
11 </arguments>
  /cts/tools/tradefed-host/tests/
.project 10 <arguments>
11 </arguments>

Completed in 599 milliseconds

1 2 3 45 6 7 8 91011>>