Home
last modified time | relevance | path

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

12345678910>>...37

/third_party/typescript/tests/baselines/reference/
DtypeArgumentsWithStringLiteralTypes01.types9 declare function takeReturnHello(str: "Hello"): "Hello";
10 >takeReturnHello : (str: "Hello") => "Hello"
11 >str : "Hello"
13 declare function takeReturnHelloWorld(str: "Hello" | "World"): "Hello" | "World";
14 >takeReturnHelloWorld : (str: "Hello" | "World") => "Hello" | "World"
15 >str : "Hello" | "World"
60 // They should not be assignable to either "Hello" or "World".
61 export let a = fun1("Hello", "World");
63 >fun1("Hello", "World") : "Hello" | "World"
65 >"Hello" : "Hello"
[all …]
DtypeArgumentsWithStringLiteralTypes01.errors.txt1 …s(36,25): error TS2345: Argument of type 'string' is not assignable to parameter of type '"Hello"'.
2 …s(37,25): error TS2345: Argument of type 'string' is not assignable to parameter of type '"Hello"'.
3 …s(38,25): error TS2345: Argument of type 'string' is not assignable to parameter of type '"Hello"'.
4 …s(39,25): error TS2345: Argument of type 'string' is not assignable to parameter of type '"Hello"'.
5 …s(40,25): error TS2345: Argument of type 'string' is not assignable to parameter of type '"Hello"'.
6 …error TS2345: Argument of type 'string' is not assignable to parameter of type '"Hello" | "World"'.
7 …error TS2345: Argument of type 'string' is not assignable to parameter of type '"Hello" | "World"'.
8 …error TS2345: Argument of type 'string' is not assignable to parameter of type '"Hello" | "World"'.
9 …error TS2345: Argument of type 'string' is not assignable to parameter of type '"Hello" | "World"'.
10 …error TS2345: Argument of type 'string' is not assignable to parameter of type '"Hello" | "World"'.
[all …]
DjsdocTypeNongenericInstantiationAttempt.types9 return 'Hello ' + somebody;
10 >'Hello ' + somebody : string
11 >'Hello ' : "Hello "
23 return 'Hello ' + somebody;
24 >'Hello ' + somebody : string
25 >'Hello ' : "Hello "
38 return 'Hello ' + somebody;
39 >'Hello ' + somebody : string
40 >'Hello ' : "Hello "
53 return 'Hello ' + somebody;
[all …]
DdeclarationEmitClassMemberNameConflict2.js4 enum Hello {
17 Hello = Hello;
25 var Hello; variable
26 (function (Hello) { argument
27 Hello[Hello["World"] = 0] = "World";
28 })(Hello || (Hello = {}));
38 this.Hello = Hello;
48 declare enum Hello {
56 Hello: typeof Hello;
DasOperator3.types30 var d = `Hello ${123} World` as string;
32 >`Hello ${123} World` as string : string
33 >`Hello ${123} World` : string
36 var e = `Hello` as string;
38 >`Hello` as string : string
39 >`Hello` : "Hello"
49 var g = tag `Hello ${123} World` as string;
51 >tag `Hello ${123} World` as string : string
52 >tag `Hello ${123} World` : any
54 >`Hello ${123} World` : string
[all …]
DdeclarationEmitClassMemberNameConflict2.types6 enum Hello {
7 >Hello : Hello
10 >World : Hello.World
29 Hello = Hello;
30 >Hello : typeof Hello
31 >Hello : typeof Hello
DdeclarationEmitClassMemberNameConflict2.symbols5 enum Hello {
6 >Hello : Symbol(Hello, Decl(declarationEmitClassMemberNameConflict2.ts, 0, 18))
9 >World : Symbol(Hello.World, Decl(declarationEmitClassMemberNameConflict2.ts, 2, 12))
28 Hello = Hello;
29 >Hello : Symbol(Foo.Hello, Decl(declarationEmitClassMemberNameConflict2.ts, 12, 14))
30 >Hello : Symbol(Hello, Decl(declarationEmitClassMemberNameConflict2.ts, 0, 18))
DduplicateClassElements.types34 return "Hello";
35 >"Hello" : "Hello"
48 return "Hello";
49 >"Hello" : "Hello"
72 return "Hello";
73 >"Hello" : "Hello"
DobjectLiteralShorthandPropertiesAssignment.types53 var person1 = bar("Hello", 5);
55 >bar("Hello", 5) : { name: string; id: number; }
57 >"Hello" : "Hello"
60 var person2: { name: string } = bar("Hello", 5);
63 >bar("Hello", 5) : { name: string; id: number; }
65 >"Hello" : "Hello"
68 var person3: { name: string; id:number } = bar("Hello", 5);
72 >bar("Hello", 5) : { name: string; id: number; }
74 >"Hello" : "Hello"
DobjectLiteralShorthandPropertiesAssignmentES6.types53 var person1 = bar("Hello", 5);
55 >bar("Hello", 5) : { name: string; id: number; }
57 >"Hello" : "Hello"
60 var person2: { name: string } = bar("Hello", 5);
63 >bar("Hello", 5) : { name: string; id: number; }
65 >"Hello" : "Hello"
68 var person3: { name: string; id: number } = bar("Hello", 5);
72 >bar("Hello", 5) : { name: string; id: number; }
74 >"Hello" : "Hello"
DtypeArgumentsWithStringLiteralTypes01.symbols9 declare function takeReturnHello(str: "Hello"): "Hello";
13 declare function takeReturnHelloWorld(str: "Hello" | "World"): "Hello" | "World";
63 // They should not be assignable to either "Hello" or "World".
64 export let a = fun1("Hello", "World");
68 export let b = fun1("Hello", "Hello");
72 export let c = fun2("Hello", "World");
76 export let d = fun2("Hello", "Hello");
80 export let e = fun3("Hello", "Hello", "World", "Foo");
167 // as "Hello" (or "Hello" | "Hello").
168 export let a = fun1<"Hello">("Hello", "Hello");
[all …]
DcheckIndexConstraintOfJavascriptClassExpression.symbols9 class Hello extends BaseClass {
10 >Hello : Symbol(Hello, Decl(weird.js, 2, 35))
16 >this.foo : Symbol(Hello.foo, Decl(weird.js, 5, 20))
17 >this : Symbol(Hello, Decl(weird.js, 2, 35))
18 >foo : Symbol(Hello.foo, Decl(weird.js, 5, 20))
21 >_render : Symbol(Hello._render, Decl(weird.js, 7, 9))
DdeclarationEmitDetachedComment1.js9 class Hello { class
39 var Hello = /** @class */ (function () {
40 function Hello() { class in Hello
42 return Hello;
71 declare class Hello {
DdeclarationEmitDetachedComment2.js9 class Hello { class
36 var Hello = (function () {
37 function Hello() { class in Hello
39 return Hello;
57 declare class Hello {
DcontextualTypeWithUnionTypeMembers.types61 …thTypeParameter: a => a, methodOnlyInI1: a => a, propertyOnlyInI1: "Hello",} : { commonPrope…
85 propertyOnlyInI1: "Hello",
87 >"Hello" : "Hello"
92 …thTypeParameter: a => a, methodOnlyInI2: a => a, propertyOnlyInI2: "Hello",} : { commonPrope…
116 propertyOnlyInI2: "Hello",
118 >"Hello" : "Hello"
123 …ethodOnlyInI1: a => a, propertyOnlyInI1: "Hello", methodOnlyInI2: a => a, propertyOnlyInI…
147 propertyOnlyInI1: "Hello",
149 >"Hello" : "Hello"
157 propertyOnlyInI2: "Hello",
[all …]
/third_party/parse5/test/data/parser-feedback/
Ddoctype01.test4 "description": "<!DOCTYPE html>Hello",
5 "input": "<!DOCTYPE html>Hello",
16 "Hello"
21 "description": "<!dOctYpE HtMl>Hello",
22 "input": "<!dOctYpE HtMl>Hello",
33 "Hello"
38 "description": "<!DOCTYPEhtml>Hello",
39 "input": "<!DOCTYPEhtml>Hello",
50 "Hello"
55 "description": "<!DOCTYPE>Hello",
[all …]
/third_party/flutter/flutter/packages/flutter/test/widgets/
Dlinked_scroll_view_test.dart305 child: const Center(child: Text('Hello A')),
312 child: const Center(child: Text('Hello B')),
319 child: const Center(child: Text('Hello C')),
326 child: const Center(child: Text('Hello D')),
341 child: const Center(child: Text('Hello 1')),
348 child: const Center(child: Text('Hello 2')),
355 child: const Center(child: Text('Hello 3')),
362 child: const Center(child: Text('Hello 4')),
376 expect(find.text('Hello A'), findsOneWidget);
377 expect(find.text('Hello 1'), findsOneWidget);
[all …]
/third_party/json/doc/examples/
Dbasic_json__size_type_basic_json.output2 ["Hello"]
3 ["Hello","Hello","Hello","Hello","Hello"]
/third_party/flutter/flutter/packages/flutter/test/foundation/
Dprint_test.dart14 captureOutput(() { debugPrintSynchronously('Hello, world'); }),
15 equals(<String>['Hello, world']),
19 captureOutput(() { debugPrintSynchronously('Hello, world', wrapWidth: 10); }),
20 equals(<String>['Hello,\nworld']),
25 captureOutput(() { debugPrintSynchronously('Hello, world', wrapWidth: i); }),
26 equals(<String>['Hello,\nworld']),
31 captureOutput(() { debugPrintThrottled('Hello, world'); }),
32 equals(<String>['Hello, world']),
36 captureOutput(() { debugPrintThrottled('Hello, world', wrapWidth: 10); }),
37 equals(<String>['Hello,', 'world']),
/third_party/gettext/gettext-tools/examples/hello-java/
DMakefile.am17 hello_SOURCES = Hello.java
18 hello_CLASSES = Hello.class
21 hello_MAINCLASS = Hello
53 $(JAR) cfm $@ Manifest.mf Hello*.class
57 Hello.class: $(srcdir)/Hello.java
58 CLASSPATH=.@CLASSPATH_SEPARATOR@$(hello_JAVALIBS) $(JAVACOMP) -d . $(srcdir)/Hello.java
86 CLEANFILES += hello.jar Hello*.class Manifest.mf hello.sh
/third_party/gettext/gettext-tools/examples/hello-java-swing/
DMakefile.am17 hello_SOURCES = Hello.java
18 hello_CLASSES = Hello.class
21 hello_MAINCLASS = Hello
52 $(JAR) cfm $@ Manifest.mf Hello*.class
56 Hello.class: $(srcdir)/Hello.java
57 CLASSPATH=.@CLASSPATH_SEPARATOR@$(hello_JAVALIBS) $(JAVACOMP) -d . $(srcdir)/Hello.java
85 CLEANFILES += hello.jar Hello*.class Manifest.mf hello.sh
/third_party/gettext/gettext-tools/examples/hello-java-awt/
DMakefile.am17 hello_SOURCES = Hello.java
18 hello_CLASSES = Hello.class
21 hello_MAINCLASS = Hello
52 $(JAR) cfm $@ Manifest.mf Hello*.class
56 Hello.class: $(srcdir)/Hello.java
57 CLASSPATH=.@CLASSPATH_SEPARATOR@$(hello_JAVALIBS) $(JAVACOMP) -d . $(srcdir)/Hello.java
85 CLEANFILES += hello.jar Hello*.class Manifest.mf hello.sh
/third_party/gettext/gettext-tools/examples/hello-java-qtjambi/
DMakefile.am17 hello_SOURCES = Hello.java
18 hello_CLASSES = Hello.class
21 hello_MAINCLASS = Hello
52 $(JAR) cfm $@ Manifest.mf Hello*.class
56 Hello.class: $(srcdir)/Hello.java
57 …H_SEPARATOR@$(hello_JAVALIBS)@CLASSPATH_SEPARATOR@$$CLASSPATH $(JAVACOMP) -d . $(srcdir)/Hello.java
85 CLEANFILES += hello.jar Hello*.class Manifest.mf hello.sh
/third_party/gettext/gettext-tools/examples/po/
Dms.po26 #: hello-objc/hello.m:30 hello-objc-gnustep/Hello.m:49
30 #: hello-java/Hello.java:14 hello-java-awt/Hello.java:23
31 #: hello-java-swing/Hello.java:20 hello-java-qtjambi/Hello.java:27
37 msgid "Hello, world!"
38 msgstr "Hello, world!"
42 #: hello-objc/hello.m:31 hello-objc-gnustep/Hello.m:58
53 "<big>Hello world!</big>\n"
56 "<big>Hello dunia!</big>\n"
68 msgid "Hello"
69 msgstr "Hello"
[all …]
Dmt.po25 #: hello-objc/hello.m:30 hello-objc-gnustep/Hello.m:49
29 #: hello-java/Hello.java:14 hello-java-awt/Hello.java:23
30 #: hello-java-swing/Hello.java:20 hello-java-qtjambi/Hello.java:27
36 msgid "Hello, world!"
37 msgstr "Hello, lil kulħadd!"
41 #: hello-objc/hello.m:31 hello-objc-gnustep/Hello.m:58
52 "<big>Hello world!</big>\n"
65 msgid "Hello"
91 msgid "Hello example"
92 msgstr "Eżempju tal-Hello"
[all …]

12345678910>>...37