Home
last modified time | relevance | path

Searched refs:expectedPath (Results 1 – 14 of 14) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DoptionalParamArgsTest.js120 function fnOpt1(id: number, children: number[] = [], expectedPath: number[] = [], isRoot?: boolean)…
121 function fnOpt2(id: number, children?: number[], expectedPath?: number[], isRoot?: boolean): void {}
252 function fnOpt1(id, children, expectedPath, isRoot) { argument
254 if (expectedPath === void 0) { expectedPath = []; }
256 function fnOpt2(id, children, expectedPath, isRoot) { } argument
DoptionalParamArgsTest.types488 function fnOpt1(id: number, children: number[] = [], expectedPath: number[] = [], isRoot?: boolean)…
489 >fnOpt1 : (id: number, children?: number[], expectedPath?: number[], isRoot?: boolean) => void
493 >expectedPath : number[]
497 function fnOpt2(id: number, children?: number[], expectedPath?: number[], isRoot?: boolean): void {}
498 >fnOpt2 : (id: number, children?: number[], expectedPath?: number[], isRoot?: boolean) => void
501 >expectedPath : number[]
506 >fnOpt1 : (id: number, children?: number[], expectedPath?: number[], isRoot?: boolean) => void
517 >fnOpt2 : (id: number, children?: number[], expectedPath?: number[], isRoot?: boolean) => void
DoptionalParamArgsTest.symbols364 function fnOpt1(id: number, children: number[] = [], expectedPath: number[] = [], isRoot?: boolean)…
368 >expectedPath : Symbol(expectedPath, Decl(optionalParamArgsTest.ts, 118, 52))
371 function fnOpt2(id: number, children?: number[], expectedPath?: number[], isRoot?: boolean): void {}
375 >expectedPath : Symbol(expectedPath, Decl(optionalParamArgsTest.ts, 119, 48))
DoptionalParamArgsTest.errors.txt196 …function fnOpt1(id: number, children: number[] = [], expectedPath: number[] = [], isRoot?: boolean…
197 …function fnOpt2(id: number, children?: number[], expectedPath?: number[], isRoot?: boolean): void …
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/test/
Dtest_load.js20 function testLoad(testPath, expectedPath) { argument
25 helpers.assertExpectedResult(expectedPath, code);
Dtest_mutate_variable_or_object.js22 function testMutations(testPath, expectedPath) { argument
31 helpers.assertExpectedResult(expectedPath, mutated);
Dhelpers.js55 function assertExpectedResult(expectedPath, result) { argument
56 const absPath = path.join(BASE_DIR, expectedPath);
/third_party/skia/modules/pathkit/tests/
Dpathops.spec.js9 function addSVG(testName, expectedPath, actualPath, message) { argument
34 <svg class='expected' viewBox='${getViewBox(expectedPath)}'>
35 <path stroke=black fill=white stroke-width=0.01 d="${expectedPath.toSVGString()}"></path>
/third_party/typescript/tests/cases/compiler/
DoptionalParamArgsTest.ts119 function fnOpt1(id: number, children: number[] = [], expectedPath: number[] = [], isRoot?: boolean)…
120 function fnOpt2(id: number, children?: number[], expectedPath?: number[], isRoot?: boolean): void {}
/third_party/typescript/src/loggedIO/
DloggedIO.ts404 …function findFileByPath(expectedPath: string, throwFileNotFoundError: boolean): FileInformation | …
405 const normalizedName = ts.normalizePath(expectedPath).toLowerCase();
414 throw new Error("No matching result in log array for path: " + expectedPath);
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/regex/
DRegexTransformerTest.java262 CldrPath expectedPath = in testDynamicVars() local
265 assertThat(p).isEqualTo(expectedPath); in testDynamicVars()
/third_party/python/Lib/unittest/test/
Dtest_program.py18 expectedPath = os.path.abspath(os.path.dirname(unittest.test.__file__))
23 self.assertEqual(start_dir, expectedPath)
Dtest_discovery.py792 expectedPath = os.path.abspath(os.path.dirname(unittest.test.__file__))
797 self.assertEqual(start_dir, expectedPath)
/third_party/skia/tests/
DRoundRectTest.cpp1144 SkPath aPath, bPath, expectedPath; in verify_success() local
1147 SkAssertResult(Op(aPath, bPath, kIntersect_SkPathOp, &expectedPath)); in verify_success()
1156 SkAssertResult(Op(testPath, expectedPath, kXOR_SkPathOp, &empty)); in verify_success()