Home
last modified time | relevance | path

Searched defs:rest (Results 1 – 25 of 226) sorted by relevance

12345678910

/third_party/typescript/tests/baselines/reference/
DemitRestParametersMethodES6.js3 constructor(name: string, ...rest) { }
5 public bar(...rest) { }
6 public foo(x: number, ...rest) { }
10 constructor(...rest) { }
12 public bar(...rest) { }
13 public foo(x: number, ...rest) { }
19 constructor(name, ...rest) { }
20 bar(...rest) { }
21 foo(x, ...rest) { }
24 constructor(...rest) { }
[all …]
DemitRestParametersFunctionExpression.js2 var funcExp = (...rest) => { }
3 var funcExp1 = (X: number, ...rest) => { }
4 var funcExp2 = function (...rest) { }
5 var funcExp3 = (function (...rest) { })()
DemitRestParametersFunctionExpressionES6.js2 var funcExp = (...rest) => { }
3 var funcExp1 = (X: number, ...rest) => { }
4 var funcExp2 = function (...rest) { }
5 var funcExp3 = (function (...rest) { })()
DemitRestParametersMethod.js3 constructor(name: string, ...rest) { }
5 public bar(...rest) { }
6 public foo(x: number, ...rest) { }
10 constructor(...rest) { }
12 public bar(...rest) { }
13 public foo(x: number, ...rest) { }
DemitDefaultParametersFunctionExpression.js4 var lambda3 = (x: number, y = "hello", ...rest) => { }
5 var lambda4 = (y = "hello", ...rest) => { }
7 var x = function (str = "hello", ...rest) { }
8 var y = (function (num = 10, boo = false, ...rest) { })()
9 var z = (function (num: number, boo = false, ...rest) { })(10)
DemitDefaultParametersFunctionExpressionES6.js4 var lambda3 = (x: number, y = "hello", ...rest) => { }
5 var lambda4 = (y = "hello", ...rest) => { }
7 var x = function (str = "hello", ...rest) { }
8 var y = (function (num = 10, boo = false, ...rest) { })()
9 var z = (function (num: number, boo = false, ...rest) { })(10)
DemitDefaultParametersMethodES6.js6 public foo1(x: string, t = false, ...rest) { }
8 public boo(t = false, ...rest) { }
16 constructor(y = "hello", ...rest) { }
23 foo1(x, t = false, ...rest) { }
25 boo(t = false, ...rest) { }
31 constructor(y = "hello", ...rest) { }
DemitDefaultParametersFunctionPropertyES6.js3 func1(y = 10, ...rest) { },
6 func4(x: string, z: number, y = "hello", ...rest) { },
11 func1(y = 10, ...rest) { },
14 func4(x, z, y = "hello", ...rest) { },
DemitRestParametersFunction.js2 function bar(...rest) { }
3 function foo(x: number, y: string, ...rest) { }
DemitRestParametersFunctionES6.js2 function bar(...rest) { }
3 function foo(x: number, y: string, ...rest) { }
DemitRestParametersFunctionPropertyES6.js7 func(...rest) { }
13 func(...rest) { }
DcommentsAfterSpread.js37 function f (
44 function g (
57 const i = (
61 const j = (
DreactTagNameComponentWithPropsNoOOM.js8 const rest: {} = {}; constant
31 var rest = {}; variable
DemitDefaultParametersFunction.js3 function baz(x: string, y = 5, ...rest) { }
5 function bar1(y = 10, ...rest) { }
DemitDefaultParametersFunctionES6.js3 function baz(x: string, y = 5, ...rest) { }
5 function bar1(y = 10, ...rest) { }
DobjectSpreadNoTransform.js5 var rest: any; variable
13 var rest; variable
DdisallowLineTerminatorBeforeArrow.js6 var f3 = (x: string, y: number, ...rest)
8 var f4 = (x: string, y: number, ...rest) /*
10 var f5 = (...rest)
12 var f6 = (...rest) /*
DobjectRestAssignment.js5 let rest: { }; variable
33 let rest; variable
DemitDefaultParametersMethod.js6 public foo1(x: string, t = false, ...rest) { }
8 public boo(t = false, ...rest) { }
16 constructor(y = "hello", ...rest) { }
DemitDefaultParametersFunctionProperty.js3 func1(y = 10, ...rest) { },
6 func4(x: string, z: number, y = "hello", ...rest) { },
DrestParameterNoTypeAnnotation.js2 function foo(...rest) {
/third_party/node/benchmark/es/
Dspread-bench.js10 rest: [0, 1], property
14 function makeTest(count, rest) { argument
25 function main({ n, context, count, rest, method }) { property
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DAlignOf.h25 AlignerImpl<Ts...> rest; variable
36 SizerImpl<Ts...> rest; member
/third_party/python/Lib/lib2to3/tests/data/
Dpy2_test_grammar.py172 def v0(*rest): pass
173 def v1(a, *rest): pass
174 def v2(a, b, *rest): pass
175 def v3(a, (b, c), *rest): return a, b, c, rest
240 def d01v(a=1, *rest): pass
247 def d11v(a, b=1, *rest): pass
251 def d21v(a, b, c=1, *rest): pass
257 def d02v(a=1, b=2, *rest): pass
264 def d12v(a, b=1, c=2, *rest): pass
272 def d22v(a, b, c=1, d=2, *rest): pass
/third_party/rust/crates/proc-macro2/src/
Dparse.rs11 pub rest: &'a str, field
277 let rest = input.advance((raw as usize) << 1); in ident_any() localVariable
315 let rest = literal_nocapture(input)?; in literal() localVariable
436 let rest = input.advance(newline + 1); in cooked_byte_string() localVariable
482 let rest = input.advance(i + 1 + n); in raw_string() localVariable
597 let mut rest = float_digits(input)?; in float() localVariable
692 let mut rest = digits(input)?; in int() localVariable
807 let rest = &scan_for_bare_cr[cr + 1..]; in doc_comment() localVariable

12345678910