Home
last modified time | relevance | path

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

12345678910>>...24

/third_party/jerryscript/tests/jerry/
Dstring-upper-lower-case-conversion.js17 assert ("\ufb00".toLowerCase() == "\ufb00");
20 assert ("\ufb01".toLowerCase() == "\ufb01");
23 assert ("\ufb02".toLowerCase() == "\ufb02");
26 assert ("\ufb03".toLowerCase() == "\ufb03");
29 assert ("\ufb04".toLowerCase() == "\ufb04");
32 assert ("\ufb05".toLowerCase() == "\ufb05");
35 assert ("\ufb06".toLowerCase() == "\ufb06");
39 assert ("\u0130".toLowerCase() == "\u0069\u0307");
43 assert ("\u00df".toLowerCase() == "\u00df");
47 assert ("\u012c".toLowerCase() == "\u012d");
[all …]
/third_party/typescript/tests/baselines/reference/
DnullishCoalescingOperator9.types7 let g = f || (abc => { void abc.toLowerCase() })
9 >f || (abc => { void abc.toLowerCase() }) : (x: string) => void
11 >(abc => { void abc.toLowerCase() }) : (abc: string) => void
12 >abc => { void abc.toLowerCase() } : (abc: string) => void
14 >void abc.toLowerCase() : undefined
15 >abc.toLowerCase() : string
16 >abc.toLowerCase : () => string
18 >toLowerCase : () => string
20 let gg = f ?? (abc => { void abc.toLowerCase() })
22 >f ?? (abc => { void abc.toLowerCase() }) : (x: string) => void
[all …]
DtargetTypingOnFunctions.types2 var fu: (s: string) => string = function (s) { return s.toLowerCase() };
5 >function (s) { return s.toLowerCase() } : (s: string) => string
7 >s.toLowerCase() : string
8 >s.toLowerCase : () => string
10 >toLowerCase : () => string
12 var zu = fu = function (s) { return s.toLowerCase() };
14 >fu = function (s) { return s.toLowerCase() } : (s: string) => string
16 >function (s) { return s.toLowerCase() } : (s: string) => string
18 >s.toLowerCase() : string
19 >s.toLowerCase : () => string
[all …]
DbestChoiceType.types4 (''.match(/ /) || []).map(s => s.toLowerCase());
5 >(''.match(/ /) || []).map(s => s.toLowerCase()) : any[]
16 >s => s.toLowerCase() : (s: any) => any
18 >s.toLowerCase() : any
19 >s.toLowerCase : any
21 >toLowerCase : any
42 let z = y.map(s => s.toLowerCase());
44 >y.map(s => s.toLowerCase()) : any[]
48 >s => s.toLowerCase() : (s: any) => any
50 >s.toLowerCase() : any
[all …]
Darrayconcat.types36 …(function(a, b) { var aName = a.name.toLowerCase(); var bName = b.name.toLow…
40 …(function(a, b) { var aName = a.name.toLowerCase(); var bName = b.name.toLow…
46 >function(a, b) { var aName = a.name.toLowerCase(); var bName = b.name.toLowe…
50 var aName = a.name.toLowerCase();
52 >a.name.toLowerCase() : string
53 >a.name.toLowerCase : () => string
57 >toLowerCase : () => string
59 var bName = b.name.toLowerCase();
61 >b.name.toLowerCase() : string
62 >b.name.toLowerCase : () => string
[all …]
DswitchWithConstrainedTypeVariable.symbols14 key.toLowerCase();
15 >key.toLowerCase : Symbol(String.toLowerCase, Decl(lib.es5.d.ts, --, --))
17 >toLowerCase : Symbol(String.toLowerCase, Decl(lib.es5.d.ts, --, --))
21 key.toLowerCase();
22 >key.toLowerCase : Symbol(String.toLowerCase, Decl(lib.es5.d.ts, --, --))
24 >toLowerCase : Symbol(String.toLowerCase, Decl(lib.es5.d.ts, --, --))
DtargetTypingOnFunctions.symbols2 var fu: (s: string) => string = function (s) { return s.toLowerCase() };
6 >s.toLowerCase : Symbol(String.toLowerCase, Decl(lib.es5.d.ts, --, --))
8 >toLowerCase : Symbol(String.toLowerCase, Decl(lib.es5.d.ts, --, --))
10 var zu = fu = function (s) { return s.toLowerCase() };
14 >s.toLowerCase : Symbol(String.toLowerCase, Decl(lib.es5.d.ts, --, --))
16 >toLowerCase : Symbol(String.toLowerCase, Decl(lib.es5.d.ts, --, --))
DnullishCoalescingOperator9.symbols6 let g = f || (abc => { void abc.toLowerCase() })
10 >abc.toLowerCase : Symbol(String.toLowerCase, Decl(lib.es5.d.ts, --, --))
12 >toLowerCase : Symbol(String.toLowerCase, Decl(lib.es5.d.ts, --, --))
14 let gg = f ?? (abc => { void abc.toLowerCase() })
18 >abc.toLowerCase : Symbol(String.toLowerCase, Decl(lib.es5.d.ts, --, --))
20 >toLowerCase : Symbol(String.toLowerCase, Decl(lib.es5.d.ts, --, --))
DfixingTypeParametersRepeatedly1.types10 f("", x => null, x => x.toLowerCase());
11 >f("", x => null, x => x.toLowerCase()) : string
17 >x => x.toLowerCase() : (x: string) => string
19 >x.toLowerCase() : string
20 >x.toLowerCase : () => string
22 >toLowerCase : () => string
36 g("", x => null, x => x.toLowerCase());
37 >g("", x => null, x => x.toLowerCase()) : any
43 >x => x.toLowerCase() : (x: string) => string
45 >x.toLowerCase() : string
[all …]
DswitchWithConstrainedTypeVariable.types14 key.toLowerCase();
15 >key.toLowerCase() : string
16 >key.toLowerCase : () => string
18 >toLowerCase : () => string
22 key.toLowerCase();
23 >key.toLowerCase() : string
24 >key.toLowerCase : () => string
26 >toLowerCase : () => string
DweakTypeAndPrimitiveNarrowing.types3 >LiteralsAndWeakTypes : { optional?: true | undefined; } | { toLowerCase?(): string; } | { toUpperC…
11 | { toLowerCase?(): string }
12 >toLowerCase : (() => string) | undefined
29 >arg : { toLowerCase?(): string; } | { toUpperCase?(): string; otherOptionalProp?: number | undefin…
33 >arg : { optional?: true | undefined; } | { toLowerCase?(): string; } | { toUpperCase?(): string; o…
38 >PrimitivesAndWeakTypes : string | number | { optional?: true | undefined; } | { toLowerCase?(): st…
46 | { toLowerCase?(): string }
47 >toLowerCase : (() => string) | undefined
64 >arg : "A" | { toLowerCase?(): string; } | { toUpperCase?(): string; otherOptionalProp?: number | u…
DorderMattersForSignatureGroupIdentity.types38 v({ s: "", n: 0 }).toLowerCase();
39 >v({ s: "", n: 0 }).toLowerCase() : any
40 >v({ s: "", n: 0 }).toLowerCase : any
48 >toLowerCase : any
56 w({ s: "", n: 0 }).toLowerCase();
57 >w({ s: "", n: 0 }).toLowerCase() : any
58 >w({ s: "", n: 0 }).toLowerCase : any
66 >toLowerCase : any
DlogicalOrExpressionIsNotContextuallyTyped.types13 var r = a || ((a) => a.toLowerCase());
15 >a || ((a) => a.toLowerCase()) : (a: string) => string
17 >((a) => a.toLowerCase()) : (a: string) => string
18 >(a) => a.toLowerCase() : (a: string) => string
20 >a.toLowerCase() : string
21 >a.toLowerCase : () => string
23 >toLowerCase : () => string
DbestChoiceType.js4 (''.match(/ /) || []).map(s => s.toLowerCase());
11 let z = y.map(s => s.toLowerCase());
17 let z = y.map(s => s.toLowerCase());
23 (''.match(/ /) || []).map(function (s) { return s.toLowerCase(); });
28 var z = y.map(function (s) { return s.toLowerCase(); });
33 var z = y.map(function (s) { return s.toLowerCase(); });
DfixingTypeParametersRepeatedly1.symbols17 f("", x => null, x => x.toLowerCase());
21 >x.toLowerCase : Symbol(String.toLowerCase, Decl(lib.es5.d.ts, --, --))
23 >toLowerCase : Symbol(String.toLowerCase, Decl(lib.es5.d.ts, --, --))
44 g("", x => null, x => x.toLowerCase());
48 >x.toLowerCase : Symbol(String.toLowerCase, Decl(lib.es5.d.ts, --, --))
50 >toLowerCase : Symbol(String.toLowerCase, Decl(lib.es5.d.ts, --, --))
Darrayconcat.symbols50 var aName = a.name.toLowerCase();
52 >a.name.toLowerCase : Symbol(String.toLowerCase, Decl(lib.es5.d.ts, --, --))
56 >toLowerCase : Symbol(String.toLowerCase, Decl(lib.es5.d.ts, --, --))
58 var bName = b.name.toLowerCase();
60 >b.name.toLowerCase : Symbol(String.toLowerCase, Decl(lib.es5.d.ts, --, --))
64 >toLowerCase : Symbol(String.toLowerCase, Decl(lib.es5.d.ts, --, --))
DcommaOperatorWithSecondOperandObjectType.types116 STRING.toLowerCase(), new CLASS()
117 >STRING.toLowerCase(), new CLASS() : CLASS
118 >STRING.toLowerCase() : string
119 >STRING.toLowerCase : () => string
121 >toLowerCase : () => string
168 var resultIsObject11 = (STRING.toLowerCase(), new CLASS());
170 >(STRING.toLowerCase(), new CLASS()) : CLASS
171 >STRING.toLowerCase(), new CLASS() : CLASS
172 >STRING.toLowerCase() : string
173 >STRING.toLowerCase : () => string
[all …]
DjsdocParamTagOnPropertyInitializer.types6 m = x => x.toLowerCase();
8 >x => x.toLowerCase() : (x: string) => string
10 >x.toLowerCase() : string
11 >x.toLowerCase : () => string
13 >toLowerCase : () => string
DjsdocParamTagOnPropertyInitializer.symbols6 m = x => x.toLowerCase();
9 >x.toLowerCase : Symbol(String.toLowerCase, Decl(lib.es5.d.ts, --, --))
11 >toLowerCase : Symbol(String.toLowerCase, Decl(lib.es5.d.ts, --, --))
DnonexistentPropertyOnUnion.errors.txt1 tests/cases/compiler/nonexistentPropertyOnUnion.ts(2,7): error TS2339: Property 'toLowerCase' does …
2 Property 'toLowerCase' does not exist on type 'Promise<string>'.
7 x.toLowerCase();
9 !!! error TS2339: Property 'toLowerCase' does not exist on type 'string | Promise<string>'.
10 !!! error TS2339: Property 'toLowerCase' does not exist on type 'Promise<string>'.
DnullishCoalescingOperator4.types6 const aa1 = a1 ?? a1.toLowerCase()
8 >a1 ?? a1.toLowerCase() : any
10 >a1.toLowerCase() : any
11 >a1.toLowerCase : any
13 >toLowerCase : any
DswitchWithConstrainedTypeVariable.js7 key.toLowerCase();
10 key.toLowerCase();
22 key.toLowerCase();
25 key.toLowerCase();
DweakTypeAndPrimitiveNarrowing.symbols10 | { toLowerCase?(): string }
11 >toLowerCase : Symbol(toLowerCase, Decl(weakTypeAndPrimitiveNarrowing.ts, 4, 5))
42 | { toLowerCase?(): string }
43 >toLowerCase : Symbol(toLowerCase, Decl(weakTypeAndPrimitiveNarrowing.ts, 19, 5))
/third_party/node/test/parallel/
Dtest-path-makelong.js65 assert.strictEqual(path.win32.toNamespacedPath('foo\\bar').toLowerCase(),
66 `\\\\?\\${process.cwd().toLowerCase()}\\foo\\bar`);
67 assert.strictEqual(path.win32.toNamespacedPath('foo/bar').toLowerCase(),
68 `\\\\?\\${process.cwd().toLowerCase()}\\foo\\bar`);
71 path.win32.toNamespacedPath(currentDeviceLetter).toLowerCase(),
72 `\\\\?\\${process.cwd().toLowerCase()}`);
73 assert.strictEqual(path.win32.toNamespacedPath('C').toLowerCase(),
74 `\\\\?\\${process.cwd().toLowerCase()}\\c`);
/third_party/node/deps/npm/lib/commands/
Dhelp-search.js45 const lowerCase = content.toLowerCase()
47 if (!args.some(a => lowerCase.includes(a.toLowerCase()))) {
62 nextLine.toLowerCase().includes(a.toLowerCase()))
70 match = args.some(a => line.toLowerCase().includes(a.toLowerCase()))
103 const hit = (line || '').toLowerCase()
104 .split(arg.toLowerCase()).length - 1
167 const finder = line.toLowerCase().split(arg.toLowerCase())

12345678910>>...24