Home
last modified time | relevance | path

Searched defs:arguments (Results 1 – 25 of 300) sorted by relevance

12345678910>>...12

/third_party/jerryscript/tools/
Dbuild.py167 def generate_build_options(arguments): argument
232 def configure_output_dir(arguments): argument
242 def configure_jerry(arguments): argument
256 def make_jerry(arguments): argument
266 def install_jerry(arguments): argument
/third_party/typescript/tests/cases/conformance/classes/propertyMemberDeclarations/
DstaticPropertyNameConflicts.ts48 static arguments: number; // error property in StaticArguments
49 arguments: string; // ok property in StaticArguments
53 static arguments() {} // error method in StaticArgumentsFn
54 arguments() {} // ok method in StaticArgumentsFn
107 static arguments: number; // error variable
108 arguments: string; // ok variable
112 static arguments() {} // error variable
113 arguments() {} // ok variable
182 static arguments: number; // error property in StaticArguments
183 arguments: string; // ok property in StaticArguments
[all …]
/third_party/typescript/tests/baselines/reference/
DcollisionArgumentsClassConstructor.js4 constructor(i: number, ...arguments) { // error
54 constructor(i: any, ...arguments) { // error
102 function c12(arguments) { argument
112 function c1NoError(arguments) { argument
134 function c3(arguments) { argument
145 function c3NoError(arguments) { argument
162 function c52(arguments) { argument
172 function c5NoError(arguments) { argument
DemitArrowFunctionWhenUsingArguments17.js3 var { arguments } = { arguments: "hello" }; property
12 var arguments = { arguments: "hello" }.arguments; property
DcollisionArgumentsClassMethod.js3 public foo(i: number, ...arguments) { //arguments is error
14 public f4(i: any, ...arguments) { // error
62 c1.prototype.foo1 = function (arguments) { argument
69 c1.prototype.fooNoError = function (arguments) { argument
79 c1.prototype.f41 = function (arguments) { argument
86 c1.prototype.f4NoError = function (arguments) { argument
DemitArrowFunctionWhenUsingArguments03.js2 var arguments; variable
6 var arguments; variable
DemitArrowFunctionWhenUsingArguments18_ES6.js3 var { arguments: args } = { arguments }; field
11 var { arguments: args } = { arguments }; field
DemitArrowFunctionWhenUsingArguments03_ES6.js2 var arguments; variable
6 var arguments; variable
DemitArrowFunctionWhenUsingArguments07_ES6.js2 function f(arguments) { argument
3 var a = (arguments) => () => arguments; argument
DemitArrowFunctionWhenUsingArguments18.js3 var { arguments: args } = { arguments }; field
11 var args = { arguments: arguments }.arguments; property
DemitArrowFunctionWhenUsingArguments07.js2 function f(arguments) { argument
3 var a = (arguments) => () => arguments; argument
DemitArrowFunctionWhenUsingArguments08.js2 function f(arguments) { argument
8 var a = function () { return function (arguments) { return arguments; }; }; argument
DemitArrowFunctionWhenUsingArguments17_ES6.js3 var { arguments } = { arguments: "hello" }; property
12 var { arguments } = { arguments: "hello" }; property
DstaticPropertyNameConflicts.js53 static arguments() {} // error method in StaticArgumentsFn
54 arguments() {} // ok method in StaticArgumentsFn
112 static arguments() {} // error method in StaticArgumentsFn_Anonymous
113 arguments() {} // ok method in StaticArgumentsFn_Anonymous
256 StaticArgumentsFn.arguments = function () { }; // error function in StaticArgumentsFn
257 StaticArgumentsFn.prototype.arguments = function () { }; // ok method in StaticArgumentsFn
322 StaticArgumentsFn_Anonymous.arguments = function () { }; // error function in StaticArgumentsFn_Anonymous
323 StaticArgumentsFn_Anonymous.prototype.arguments = function () { }; // ok method in StaticArgumentsFn_Anonymous
425 StaticArgumentsFn.prototype.arguments = function () { }; // ok method in StaticArgumentsFn
DargumentsReferenceInMethod5_Js.js3 arguments: {} property
28 const arguments: {}; constant
DargumentsReferenceInConstructor5_Js.js3 arguments: {} property
30 const arguments: {}; constant
/third_party/skia/src/sksl/ir/
DSkSLChildCall.h24 ChildCall(int line, const Type* type, const Variable* child, ExpressionArray arguments) in ChildCall()
40 ExpressionArray& arguments() { in arguments() function
44 const ExpressionArray& arguments() const { in arguments() function
DSkSLFunctionCall.h25 ExpressionArray arguments) in FunctionCall()
53 ExpressionArray& arguments() { in arguments() function
57 const ExpressionArray& arguments() const { in arguments() function
DSkSLExternalFunctionCall.h25 ExternalFunctionCall(int line, const ExternalFunction* function, ExpressionArray arguments) in ExternalFunctionCall()
30 ExpressionArray& arguments() { in arguments() function
34 const ExpressionArray& arguments() const { in arguments() function
/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/plugin/common/
DMethodCall.java29 public final Object arguments; field in MethodCall
37 public MethodCall(String method, Object arguments) { in MethodCall()
52 public <T> T arguments() { in arguments() method in MethodCall
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DDataDrivenTestHelper.java62 protected DataDrivenTestHelper addLine(List<String> arguments, String commentBase) { in addLine()
73 public boolean isTestLine(List<String> arguments) { in isTestLine()
80 List<String> arguments = lines.get(i); in test() local
144 List<String> arguments = SEMICOLON.splitToList(line); in load() local
178 …public void handle(int lineNumber, boolean breakpoint, String commentBase, List<String> arguments); in handle()
180 public void handleParams(String comment, List<String> arguments) { in handleParams()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
DDataDrivenTestHelper.java63 protected DataDrivenTestHelper addLine(List<String> arguments, String commentBase) { in addLine()
74 public boolean isTestLine(List<String> arguments) { in isTestLine()
81 List<String> arguments = lines.get(i); in test() local
145 List<String> arguments = SEMICOLON.splitToList(line); in load() local
179 …public void handle(int lineNumber, boolean breakpoint, String commentBase, List<String> arguments); in handle()
181 public void handleParams(String comment, List<String> arguments) { in handleParams()
/third_party/node/deps/npm/node_modules/libnpmconfig/node_modules/p-try/
Dreadme.md41 #### fn
45 #### arguments argument
/third_party/node/deps/npm/node_modules/yargs/node_modules/p-try/
Dreadme.md41 #### fn
45 #### arguments subsubsection
/third_party/typescript/tests/cases/compiler/
DargumentsReferenceInMethod4_Js.ts21 const arguments = this.arguments; constant
39 get arguments() { method in A

12345678910>>...12