Home
last modified time | relevance | path

Searched full:things (Results 1 – 25 of 4222) sorted by relevance

12345678910>>...169

/third_party/typescript/tests/baselines/reference/
DdeclarationEmitAliasExportStar.types4 === tests/cases/compiler/things.ts ===
8 import * as things from "./things";
9 >things : typeof things
11 export const thing2 = (param: things.ThingB) => null;
12 >thing2 : (param: things.ThingB) => any
13 >(param: things.ThingB) => null : (param: things.ThingB) => any
14 >param : things.ThingB
15 >things : any
DreexportWrittenCorrectlyInDeclaration.symbols10 === tests/cases/compiler/Things.ts ===
12 >ThingA : Symbol(ThingA, Decl(Things.ts, 0, 8))
15 >ThingB : Symbol(ThingB, Decl(Things.ts, 1, 8))
18 import * as things from "./Things";
19 >things : Symbol(things, Decl(Test.ts, 0, 6))
24 public method = (input: things.ThingA) => { };
27 >things : Symbol(things, Decl(Test.ts, 0, 6))
28 >ThingA : Symbol(things.ThingA, Decl(Things.ts, 0, 8))
DreexportWrittenCorrectlyInDeclaration.types10 === tests/cases/compiler/Things.ts ===
18 import * as things from "./Things";
19 >things : typeof things
24 public method = (input: things.ThingA) => { };
25 >method : (input: things.ThingA) => void
26 >(input: things.ThingA) => { } : (input: things.ThingA) => void
27 >input : things.ThingA
28 >things : any
DdeclarationEmitAliasExportStar.symbols5 === tests/cases/compiler/things.ts ===
9 import * as things from "./things";
10 >things : Symbol(things, Decl(index.ts, 0, 6))
12 export const thing2 = (param: things.ThingB) => null;
15 >things : Symbol(things, Decl(index.ts, 0, 6))
16 >ThingB : Symbol(things.ThingB, Decl(thingB.ts, 0, 0))
DdeclarationEmitAliasExportStar.js5 //// [things.ts]
8 import * as things from "./things";
9 export const thing2 = (param: things.ThingB) => null;
15 //// [things.js]
44 //// [things.d.ts]
47 import * as things from "./things";
48 export declare const thing2: (param: things.ThingB) => any;
DreexportWrittenCorrectlyInDeclaration.js10 //// [Things.ts]
15 import * as things from "./Things";
18 public method = (input: things.ThingA) => { };
42 //// [Things.js]
80 //// [Things.d.ts]
84 import * as things from "./Things";
86 method: (input: things.ThingA) => void;
DdefaultDeclarationEmitNamedCorrectly.symbols2 export interface Things<P, T> {
3 >Things : Symbol(Things, Decl(defaultDeclarationEmitNamedCorrectly.ts, 0, 0))
8 >p : Symbol(Things.p, Decl(defaultDeclarationEmitNamedCorrectly.ts, 0, 31))
12 >t : Symbol(Things.t, Decl(defaultDeclarationEmitNamedCorrectly.ts, 1, 9))
15 export function make<P, CTor>(x: { new (): CTor & {props: P} }): Things<P, CTor> {
23 >Things : Symbol(Things, Decl(defaultDeclarationEmitNamedCorrectly.ts, 0, 0))
DdefaultDeclarationEmitNamedCorrectly.types2 export interface Things<P, T> {
9 export function make<P, CTor>(x: { new (): CTor & {props: P} }): Things<P, CTor> {
10 >make : <P, CTor>(x: { new (): CTor & { props: P; };}) => Things<P, CTor>
29 >create : Things<Props, MyComponent>
30 >make(MyComponent) : Things<Props, MyComponent>
31 >make : <P, CTor>(x: new () => CTor & { props: P; }) => Things<P, CTor>
DdefaultDeclarationEmitShadowedNamedCorrectly.symbols5 export interface Things<P, T> {
6 >Things : Symbol(me.Things, Decl(this.ts, 0, 29))
11 >p : Symbol(me.Things.p, Decl(this.ts, 1, 31))
15 >t : Symbol(me.Things.t, Decl(this.ts, 2, 9))
18 export function make<P, CTor>(x: { new (): CTor & {props: P} }): Things<P, CTor> {
26 >Things : Symbol(me.Things, Decl(this.ts, 0, 29))
DdefaultDeclarationEmitShadowedNamedCorrectly.types5 export interface Things<P, T> {
12 export function make<P, CTor>(x: { new (): CTor & {props: P} }): Things<P, CTor> {
13 >make : <P, CTor>(x: { new (): CTor & { props: P; };}) => Things<P, CTor>
39 >create : me.Things<me.Props, me.default>
40 >make(me.default) : me.Things<me.Props, me.default>
41 >make : <P, CTor>(x: new () => CTor & { props: P; }) => me.Things<P, CTor>
DdefaultDeclarationEmitNamedCorrectly.js2 export interface Things<P, T> {
6 export function make<P, CTor>(x: { new (): CTor & {props: P} }): Things<P, CTor> {
36 export interface Things<P, T> {
44 }): Things<P, CTor>;
49 static create: Things<Props, MyComponent>;
DcontrolFlowDestructuringLoop.types26 function foo(things: Val[]): void {
27 >foo : (things: Val[]) => void
28 >things : Val[]
30 for (const thing of things) {
32 >things : Val[]
DdefaultDeclarationEmitShadowedNamedCorrectly.js3 export interface Things<P, T> {
7 export function make<P, CTor>(x: { new (): CTor & {props: P} }): Things<P, CTor> {
46 export interface Things<P, T> {
54 }): Things<P, CTor>;
61 const create: me.Things<me.Props, me.default>;
DcontrolFlowDestructuringLoop.symbols30 function foo(things: Val[]): void {
32 >things : Symbol(things, Decl(controlFlowDestructuringLoop.ts, 10, 13))
35 for (const thing of things) {
37 >things : Symbol(things, Decl(controlFlowDestructuringLoop.ts, 10, 13))
DcontrolFlowDestructuringLoop.js12 function foo(things: Val[]): void {
13 for (const thing of things) {
31 function foo(things) { argument
32 for (var _i = 0, things_1 = things; _i < things_1.length; _i++) {
/third_party/rust/rust/src/tools/rust-analyzer/crates/ide-assists/src/handlers/
Dconvert_into_to_from.rs257 mod things { in convert_into_to_from_works_on_qualified_structs()
262 impl $0core::convert::Into<things::BetterThing> for &things::Thing { in convert_into_to_from_works_on_qualified_structs()
264 things::BetterThing(self.0.clone()) in convert_into_to_from_works_on_qualified_structs()
269 mod things { in convert_into_to_from_works_on_qualified_structs()
274 impl From<&things::Thing> for things::BetterThing { in convert_into_to_from_works_on_qualified_structs()
275 fn from(val: &things::Thing) -> Self { in convert_into_to_from_works_on_qualified_structs()
276 things::BetterThing(val.0.clone()) in convert_into_to_from_works_on_qualified_structs()
289 mod things { in convert_into_to_from_works_on_qualified_enums()
298 impl $0core::convert::Into<things::BetterThing> for &things::Thing { in convert_into_to_from_works_on_qualified_enums()
301 Self::A(s) => things::BetterThing::B(s) in convert_into_to_from_works_on_qualified_enums()
[all …]
/third_party/rust/crates/clap/tests/builder/
Dtemplate_help.rs53 Does awesome things
65 test does testing things
71 Does awesome things
76 test does testing things
106 .about("Does awesome things") in template_empty()
116 .about("Does awesome things") in template_notag()
126 .about("Does awesome things") in template_unknowntag()
137 .about("Does awesome things") in template_author_version()
144 .about("Does awesome things") in template_author_version()
150 "Kevin K. <kbknapp@gmail.com>\n1.0\nDoes awesome things\nMyApp\n", in template_author_version()
[all …]
/third_party/rust/rust/tests/ui/for/
Dissue-20605.next.stderr4 LL | for item in *things { *item = 0 }
10 LL | for item in *things { *item = 0 }
20 LL | for item in *things { *item = 0 }
26 LL | for item in *things { *item = 0 }
34 LL | for item in *things { *item = 0 }
40 LL | for item in *things { *item = 0 }
46 LL | for item in *things { *item = 0 }
56 LL | for item in *things { *item = 0 }
62 LL | for item in *things { *item = 0 }
/third_party/typescript/tests/cases/compiler/
DdeclarationEmitAliasExportStar.ts4 // @filename: things.ts
7 import * as things from "./things";
8 export const thing2 = (param: things.ThingB) => null;
DreexportWrittenCorrectlyInDeclaration.ts9 // @filename: Things.ts
14 import * as things from "./Things";
17 public method = (input: things.ThingA) => { };
/third_party/rust/crates/clap/examples/
Dgit.md14 push pushes things
15 add adds things
30 push pushes things
31 add adds things
39 adds things
55 adds things
Dgit-derive.md16 push pushes things
17 add adds things
32 push pushes things
33 add adds things
41 adds things
57 adds things
/third_party/openssl/util/
Dlang-compress.pl23 # Regexp for things that should be preserved
43 (?| # All things preserved end up in $1
66 (?| # All things preserved end up in $1
81 (?| # All things preserved end up in $1
124 # Regexp for things that should be preserved
150 (?| # All things preserved end up in $1
171 (?| # All things preserved end up in $1
/third_party/typescript/tests/cases/fourslash/
DcodeFixInferFromUsageContextualImport3.ts8 ////export namespace things {
13 ////export declare function getEmail<T>(thing: T, user: things.stuff.User<T>): string;
27 `import { getEmail, things } from "./a";
29 export function f(user: things.stuff.User<number>) {
/third_party/cJSON/tests/unity/docs/
DThrowTheSwitchCodingStandard.md31 tools are tolerant of things that aren't common. Some that aren't even
43 Speaking of having things Just Work™, that's our second philosophy. By that, we
50 ## Naming Things
52 Let's talk about naming things. Programming is all about naming things. We name
57 When naming things, we more or less follow this hierarchy, the first being the
74 We like descriptive names for things, especially functions and variables.
134 things up in nice tidy columns.
189 that happens, we like to indent further to line things up in nice tidy columns.

12345678910>>...169