Home
last modified time | relevance | path

Searched refs:someFunction (Results 1 – 25 of 25) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DcheckIndexConstraintOfJavascriptClassExpression.errors.txt1 tests/cases/compiler/weird.js(1,1): error TS2552: Cannot find name 'someFunction'. Did you mean 'Fu…
7 someFunction(function(BaseClass) {
9 !!! error TS2552: Cannot find name 'someFunction'. Did you mean 'Function'?
DcheckIndexConstraintOfJavascriptClassExpression.types2 someFunction(function(BaseClass) {
3 >someFunction(function(BaseClass) { 'use strict'; const DEFAULT_MESSAGE = "nop!"; class He…
4 >someFunction : any
DdynamicImportEvaluateSpecifier.symbols21 const someFunction = async () => {
22 >someFunction : Symbol(someFunction, Decl(dynamicImportEvaluateSpecifier.ts, 11, 5))
DdynamicImportEvaluateSpecifier.js13 const someFunction = async () => { function
28 const someFunction = async () => {
DdynamicImportEvaluateSpecifier.types31 const someFunction = async () => {
32 >someFunction : () => Promise<void>
DunusedIdentifiersConsolidated1.symbols127 someFunction(s1: string): void;
128 >someFunction : Symbol(usedLocallyInterface2.someFunction, Decl(unusedIdentifiersConsolidated1.ts, …
DunusedIdentifiersConsolidated1.types130 someFunction(s1: string): void;
131 >someFunction : (s1: string) => void
DcontrolFlowOptionalChain.js565 function someFunction(someOptionalObject: SomeObject | undefined): void {
577 someFunction(someObject);
578 someFunction(undefined);
1074 function someFunction(someOptionalObject) { function
1084 someFunction(someObject);
1085 someFunction(undefined);
DcheckIndexConstraintOfJavascriptClassExpression.symbols2 someFunction(function(BaseClass) {
DunusedIdentifiersConsolidated1.js59 someFunction(s1: string): void;
DcontrolFlowOptionalChain.types1978 function someFunction(someOptionalObject: SomeObject | undefined): void {
1979 >someFunction : (someOptionalObject: SomeObject | undefined) => void
2024 someFunction(someObject);
2025 >someFunction(someObject) : void
2026 >someFunction : (someOptionalObject: SomeObject | undefined) => void
2029 someFunction(undefined);
2030 >someFunction(undefined) : void
2031 >someFunction : (someOptionalObject: SomeObject | undefined) => void
DunusedIdentifiersConsolidated1.errors.txt104 someFunction(s1: string): void;
DcontrolFlowOptionalChain.errors.txt748 function someFunction(someOptionalObject: SomeObject | undefined): void {
762 someFunction(someObject);
763 someFunction(undefined);
DcontrolFlowOptionalChain.symbols1754 function someFunction(someOptionalObject: SomeObject | undefined): void {
1755 >someFunction : Symbol(someFunction, Decl(controlFlowOptionalChain.ts, 561, 42))
1796 someFunction(someObject);
1797 >someFunction : Symbol(someFunction, Decl(controlFlowOptionalChain.ts, 561, 42))
1800 someFunction(undefined);
1801 >someFunction : Symbol(someFunction, Decl(controlFlowOptionalChain.ts, 561, 42))
/third_party/skia/third_party/externals/spirv-cross/shaders-msl/frag/
Dprivate-variable-prototype-declaration.frag5 void someFunction(out AStruct s) { s.foobar = vec4(1.0); }
17 someFunction(inputs);
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-msl/frag/
Dprivate-variable-prototype-declaration.frag19 void someFunction(thread AStruct& s)
34 someFunction(param);
/third_party/jerryscript/tests/jerry/fail/
Dmodule-015.js17 function someFunction() { function
/third_party/typescript/tests/cases/compiler/
DdynamicImportEvaluateSpecifier.ts15 const someFunction = async () => { constant
DcheckIndexConstraintOfJavascriptClassExpression.ts7 someFunction(function(BaseClass) {
DunusedIdentifiersConsolidated1.ts61 someFunction(s1: string): void; method
/third_party/typescript/tests/cases/conformance/controlFlow/
DcontrolFlowOptionalChain.ts567 function someFunction(someOptionalObject: SomeObject | undefined): void { function
579 someFunction(someObject);
580 someFunction(undefined);
/third_party/node/tools/doc/
DREADME.md25 ## module.someFunction(x, y, [z=100])
/third_party/node/doc/contributing/
Dprimordials.md397 SafePromiseAll(ArrayPrototypeMap(array, someFunction));
398 SafePromiseAll(array, someFunction); // Same as the above, but more efficient.
544 SafePromiseAll(ArrayPrototypeMap(array, someFunction));
545 SafePromiseAll(array, someFunction); // Same as the above, but more efficient.
/third_party/node/doc/api/
Dperf_hooks.md365 function someFunction() {
369 const wrapped = performance.timerify(someFunction);
Dutil.md219 const fn1 = util.deprecate(someFunction, someMessage, 'DEP0001');