/third_party/jerryscript/tests/jerry/ |
D | string-upper-lower-case-conversion.js | 17 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/ |
D | nullishCoalescingOperator9.types | 7 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 …]
|
D | targetTypingOnFunctions.types | 2 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 …]
|
D | bestChoiceType.types | 4 (''.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 …]
|
D | arrayconcat.types | 36 …(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 …]
|
D | switchWithConstrainedTypeVariable.symbols | 14 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, --, --))
|
D | targetTypingOnFunctions.symbols | 2 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, --, --))
|
D | nullishCoalescingOperator9.symbols | 6 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, --, --))
|
D | fixingTypeParametersRepeatedly1.types | 10 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 …]
|
D | switchWithConstrainedTypeVariable.types | 14 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
|
D | weakTypeAndPrimitiveNarrowing.types | 3 >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…
|
D | orderMattersForSignatureGroupIdentity.types | 38 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
|
D | logicalOrExpressionIsNotContextuallyTyped.types | 13 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
|
D | bestChoiceType.js | 4 (''.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(); });
|
D | fixingTypeParametersRepeatedly1.symbols | 17 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, --, --))
|
D | arrayconcat.symbols | 50 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, --, --))
|
D | commaOperatorWithSecondOperandObjectType.types | 116 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 …]
|
D | jsdocParamTagOnPropertyInitializer.types | 6 m = x => x.toLowerCase(); 8 >x => x.toLowerCase() : (x: string) => string 10 >x.toLowerCase() : string 11 >x.toLowerCase : () => string 13 >toLowerCase : () => string
|
D | jsdocParamTagOnPropertyInitializer.symbols | 6 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, --, --))
|
D | nonexistentPropertyOnUnion.errors.txt | 1 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>'.
|
D | nullishCoalescingOperator4.types | 6 const aa1 = a1 ?? a1.toLowerCase() 8 >a1 ?? a1.toLowerCase() : any 10 >a1.toLowerCase() : any 11 >a1.toLowerCase : any 13 >toLowerCase : any
|
D | switchWithConstrainedTypeVariable.js | 7 key.toLowerCase(); 10 key.toLowerCase(); 22 key.toLowerCase(); 25 key.toLowerCase();
|
D | weakTypeAndPrimitiveNarrowing.symbols | 10 | { 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/ |
D | test-path-makelong.js | 65 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/ |
D | help-search.js | 45 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())
|