Home
last modified time | relevance | path

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

1234567891011

/third_party/typescript/tests/baselines/reference/
DexternalModuleImmutableBindings.types29 stuff.blah = 2;
30 >stuff.blah = 2 : 2
31 >stuff.blah : any
33 >blah : any
55 stuff['blah']++;
56 >stuff['blah']++ : number
57 >stuff['blah'] : any
59 >'blah' : "blah"
83 (stuff.blah) = 2;
84 >(stuff.blah) = 2 : 2
[all …]
DoverloadsWithProvisionalErrors.types24 func(s => ({ a: blah, b: 3 })); // Only error inside the function, but not outside (since it would …
25 >func(s => ({ a: blah, b: 3 })) : string
27 >s => ({ a: blah, b: 3 }) : (s: string) => { a: any; b: number; }
29 >({ a: blah, b: 3 }) : { a: any; b: number; }
30 >{ a: blah, b: 3 } : { a: any; b: number; }
32 >blah : any
36 func(s => ({ a: blah })); // Two errors here, one for blah not being defined, and one for the overl…
37 >func(s => ({ a: blah })) : never
39 >s => ({ a: blah }) : (s: string) => { a: any; }
41 >({ a: blah }) : { a: any; }
[all …]
DexternalModuleImmutableBindings.js14 stuff.blah = 2;
24 (stuff.blah) = 2;
36 for (stuff.blah in []) {}
37 for (stuff.blah of []) {}
45 for ((stuff.blah) in []) {}
46 for ((stuff.blah) of []) {}
66 stuff.blah = 2;
74 (stuff.blah) = 2;
88 for (stuff.blah in []) { }
90 stuff.blah = _e[_d];
[all …]
DcaptureSuperPropertyAccessInSuperCall01.types8 public blah(): string { return ""; }
9 >blah : () => string
18 super(() => { return super.blah(); })
19 >super(() => { return super.blah(); }) : void
21 >() => { return super.blah(); } : () => string
22 >super.blah() : string
23 >super.blah : () => string
25 >blah : () => string
DcaptureSuperPropertyAccessInSuperCall01.symbols8 public blah(): string { return ""; }
9 >blah : Symbol(A.blah, Decl(captureSuperPropertyAccessInSuperCall01.ts, 2, 2))
17 super(() => { return super.blah(); })
19 >super.blah : Symbol(A.blah, Decl(captureSuperPropertyAccessInSuperCall01.ts, 2, 2))
21 >blah : Symbol(A.blah, Decl(captureSuperPropertyAccessInSuperCall01.ts, 2, 2))
DsuperPropertyAccessInSuperCall01.symbols8 public blah(): string { return ""; }
9 >blah : Symbol(A.blah, Decl(superPropertyAccessInSuperCall01.ts, 2, 2))
17 super(super.blah())
19 >super.blah : Symbol(A.blah, Decl(superPropertyAccessInSuperCall01.ts, 2, 2))
21 >blah : Symbol(A.blah, Decl(superPropertyAccessInSuperCall01.ts, 2, 2))
DsuperPropertyAccessInSuperCall01.types8 public blah(): string { return ""; }
9 >blah : () => string
18 super(super.blah())
19 >super(super.blah()) : void
21 >super.blah() : string
22 >super.blah : () => string
24 >blah : () => string
DexternalModuleImmutableBindings.errors.txt3 tests/cases/compiler/f2.ts(8,7): error TS2339: Property 'blah' does not exist on type 'typeof impor…
8 tests/cases/compiler/f2.ts(18,8): error TS2339: Property 'blah' does not exist on type 'typeof impo…
15 tests/cases/compiler/f2.ts(30,12): error TS2339: Property 'blah' does not exist on type 'typeof imp…
16 tests/cases/compiler/f2.ts(31,12): error TS2339: Property 'blah' does not exist on type 'typeof imp…
21 tests/cases/compiler/f2.ts(39,13): error TS2339: Property 'blah' does not exist on type 'typeof imp…
22 tests/cases/compiler/f2.ts(40,13): error TS2339: Property 'blah' does not exist on type 'typeof imp…
40 stuff.blah = 2;
42 !!! error TS2339: Property 'blah' does not exist on type 'typeof import("tests/cases/compiler/f1")'.
51 stuff['blah']++;
60 (stuff.blah) = 2;
[all …]
DvoidReturnIndexUnionInference.types43 safeInvoke(props.onFoo, "blah");
44 >safeInvoke(props.onFoo, "blah") : boolean | undefined
49 >"blah" : "blah"
53 safeInvoke(props.onBar, "blah");
54 >safeInvoke(props.onBar, "blah") : void | undefined
59 >"blah" : "blah"
DerrorsWithInvokablesInUnions01.js15 export let blah: IDirectiveLinkFn<number> | ConstructableA | IDirectivePrePost<number> = (x: string… function
25 exports.ctor = exports.blah = void 0;
26 var blah = function (x) { };
27 exports.blah = blah;
DtypeFromPropertyAssignment39.types13 foo["baz"]["blah"] = 3;
14 >foo["baz"]["blah"] = 3 : 3
15 >foo["baz"]["blah"] : number
19 >"blah" : "blah"
DtsxGenericAttributesType2.types7 …ct.StatelessComponent<T> { return (props) => <Component {...props} y={"blah"} ></Component>} : …
13 return (props) => <Component {...props} y={"blah"} ></Component>
14 >(props) => <Component {...props} y={"blah"} ></Component> : (props: T & { children?: React.ReactNo…
16 ><Component {...props} y={"blah"} ></Component> : JSX.Element
20 >"blah" : "blah"
DargumentsObjectIterator02_ES5.symbols8 let blah = arguments[Symbol.iterator];
9 >blah : Symbol(blah, Decl(argumentsObjectIterator02_ES5.ts, 1, 7))
15 for (let arg of blah()) {
17 >blah : Symbol(blah, Decl(argumentsObjectIterator02_ES5.ts, 1, 7))
DtypeParameterExplicitlyExtendsAny.types8 t.blah; // Error
9 >t.blah : any
11 >blah : any
25 t.blah; // ok
26 >t.blah : any
28 >blah : any
DargumentsObjectIterator02_ES6.symbols8 let blah = arguments[Symbol.iterator];
9 >blah : Symbol(blah, Decl(argumentsObjectIterator02_ES6.ts, 1, 7))
18 for (let arg of blah()) {
20 >blah : Symbol(blah, Decl(argumentsObjectIterator02_ES6.ts, 1, 7))
DargumentsObjectIterator02_ES5.types8 let blah = arguments[Symbol.iterator];
9 >blah : any
20 for (let arg of blah()) {
22 >blah() : any
23 >blah : any
DargumentsObjectIterator02_ES6.types8 let blah = arguments[Symbol.iterator];
9 >blah : () => IterableIterator<any>
20 for (let arg of blah()) {
22 >blah() : IterableIterator<any>
23 >blah : () => IterableIterator<any>
Dparser536727.types12 var g = (x: string) => x + "blah";
14 >(x: string) => x + "blah" : (x: string) => string
16 >x + "blah" : string
18 >"blah" : "blah"
DoverloadsWithProvisionalErrors.js8 func(s => ({ a: blah, b: 3 })); // Only error inside the function, but not outside (since it would …
9 func(s => ({ a: blah })); // Two errors here, one for blah not being defined, and one for the overl…
14 func(function (s) { return ({ a: blah, b: 3 }); }); // Only error inside the function, but not outs…
15 func(function (s) { return ({ a: blah }); }); // Two errors here, one for blah not being defined, a…
/third_party/ffmpeg/tests/ref/fate/
Davstring14 |foo': blah:blah| -> |foo: blah:blah| + ||
15 |foo\: blah:blah| -> |foo: blah| + |:blah|
18 |\ :blah| -> | | + |:blah|
22 |foo ':blah| -> |foo :blah| + ||
/third_party/openssl/test/recipes/30-test_evp_data/
Devppkey_sm2.txt66 …ger plaintext for testing SM2 decryption. Blah blah blah blah blah blah blah blah blah blah blah b…
/third_party/typescript/tests/cases/compiler/
DexternalModuleImmutableBindings.ts14 stuff.blah = 2;
24 (stuff.blah) = 2;
36 for (stuff.blah in []) {}
37 for (stuff.blah of []) {}
45 for ((stuff.blah) in []) {}
46 for ((stuff.blah) of []) {}
/third_party/toybox/scripts/
Dmkstatus.py24 stuff,blah=readit(["sed","-n", 's/<span id=\\([a-z_]*\\)>/\\1 /;t good;d;:good;h;:loop;n;s@</span>@… variable
25 blah,toystuff=readit(["./toybox"]) variable
26 blah,pending=readit(["sed -n 's/[^ \\t].*TOY(\\([^,]*\\),.*/\\1/p' toys/pending/*.c"], 1) variable
27 blah,version=readit(["git","describe","--tags"]) variable
84 blah=list(reverse) variable
85 blah.sort()
86 for i in blah:
/third_party/cups-filters/scripting/perl/
DREADME28 blah blah blah
34 Copyright (C) 2002 A. U. Thor blah blah blah
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/ios/
Dmac_test.dart236 const List<String> buildCommands = <String>['xcrun', 'cc', 'blah'];
242 appDirectory: '/blah/blah',
278 BUILD_DIR = /Users/blah/blah
292 /bin/mkdir -p /Users/blah/Runner.app
294 Clean.Remove clean /Users/blah/Runner.app.dSYM
295 builtin-rm -rf /Users/blah/Runner.app.dSYM
297 Clean.Remove clean /Users/blah/Runner.app
298 builtin-rm -rf /Users/blah/Runner.app
300 …Clean.Remove clean /Users/blah/Runner-dfvicjniknvzghgwsthwtgcjhtsk/Build/Intermediates/Runner.buil…
301 …builtin-rm -rf /Users/blah/Runner-dfvicjniknvzghgwsthwtgcjhtsk/Build/Intermediates/Runner.build/Re…
[all …]

1234567891011