/third_party/jerryscript/tests/jerry/es2015/ |
D | typedarray-prototype-slice-ext-arraybuffer.js | 30 var typed = new typedarrays[typeIdx](buffer, 8, 6); 32 typed.prototype.slice.call(undefined); class 38 for (var idx = 0; idx < typed.length; idx++) { 39 typed[idx] = idx; 43 assert(typed.slice(1, 3).toString() === "1,2"); 44 assert(typed.slice(2, 5).toString() === "2,3,4"); 45 assert(typed.slice(0, 6).toString() === "0,1,2,3,4,5"); 48 assert(typed.slice(-2, 5).toString() === "4"); 49 assert(typed.slice(0, -3).toString() === "0,1,2"); 50 assert(typed.slice(-1, -4).toString() === ""); [all …]
|
/third_party/rust/crates/clap/examples/ |
D | typed-derive.md | 5 $ typed-derive --help 6 Usage: typed-derive[EXE] [OPTIONS] 22 $ typed-derive -O 1 25 $ typed-derive -O plaid 35 $ typed-derive -I../hello 42 $ typed-derive --bind 192.0.0.1 45 $ typed-derive --bind localhost 55 $ typed-derive --sleep 10s 58 $ typed-derive --sleep forever 68 $ typed-derive -D Foo=10 -D Alice=30 [all …]
|
/third_party/mesa3d/src/intel/tools/tests/gen9/ |
D | sends.asm | 2 …dp data 1 MsgDesc: ( DC typed surface write, Surface = 1, SIMD16, Mask = 0x0) mlen 2 ex_mlen 4 rle… 4 …dp data 1 MsgDesc: ( DC typed surface write, Surface = 1, SIMD8, Mask = 0x0) mlen 2 ex_mlen 4 rlen… 6 …dp data 1 MsgDesc: ( DC typed surface write, Surface = 1, SIMD16, Mask = 0x0) mlen 2 ex_mlen 4 rle… 16 …dp data 1 MsgDesc: ( DC typed surface write, Surface = 2, SIMD16, Mask = 0x0) mlen 2 ex_mlen 4 rle… 18 …dp data 1 MsgDesc: ( DC typed surface write, Surface = 2, SIMD8, Mask = 0x0) mlen 2 ex_mlen 4 rlen… 26 …dp data 1 MsgDesc: ( DC typed surface write, Surface = 1, SIMD16, Mask = 0xe) mlen 2 ex_mlen 1 rle… 28 …dp data 1 MsgDesc: ( DC typed surface write, Surface = 1, SIMD8, Mask = 0xe) mlen 2 ex_mlen 1 rlen… 30 …dp data 1 MsgDesc: ( DC typed atomic, Surface = 1, SIMD16, umax) mlen 2 ex_mlen 1 rlen 0 { align1 … 32 …dp data 1 MsgDesc: ( DC typed atomic, Surface = 1, SIMD8, umax) mlen 2 ex_mlen 1 rlen 0 { align1 2… 34 …dp data 1 MsgDesc: ( DC typed atomic, Surface = 1, SIMD16, mov) mlen 2 ex_mlen 1 rlen 0 { align1 1… [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | typeTagWithGenericSignature.symbols | 3 function typed(param) { 4 >typed : Symbol(typed, Decl(bug25618.js, 0, 0)) 11 var n = typed(1); 13 >typed : Symbol(typed, Decl(bug25618.js, 0, 0))
|
D | typeTagWithGenericSignature.types | 3 function typed(param) { 4 >typed : <T>(param?: T | undefined) => T | undefined 11 var n = typed(1); 13 >typed(1) : 1 | undefined 14 >typed : <T>(param?: T | undefined) => T | undefined
|
D | contextualTypingOfOptionalMembers.types | 26 >app({ state: 100, actions: { foo: s => s // Should be typed number => number }, … 28 >{ state: 100, actions: { foo: s => s // Should be typed number => number }, vie… 36 >{ foo: s => s // Should be typed number => number } : { foo: (s: number) => number; } 38 foo: s => s // Should be typed number => number 68 >foo({ bar(x) { // Should be typed number => void }}) : { bar(x: number): void; } 70 >{ bar(x) { // Should be typed number => void }} : { bar(x: number): void; } 72 bar(x) { // Should be typed number => void 96 >app2({ state: 100, actions: { foo: s => s // Should be typed number => number }, … 98 >{ state: 100, actions: { foo: s => s // Should be typed number => number }, vie… 106 >{ foo: s => s // Should be typed number => number } : { foo: (s: number) => number; } [all …]
|
D | functionsMissingReturnStatementsAndExpressions.errors.txt | 25 // Fine since we are typed void. 29 // Fine since we are typed void. 34 // Fine since we are typed void and return undefined 39 // Fine since we are typed void and return null 44 // Fine since are typed any. 49 // Fine since we are typed any and return undefined 54 // Fine since we are typed any and return null
|
D | functionsMissingReturnStatementsAndExpressions.types | 25 // Fine since we are typed void. 31 // Fine since we are typed void. 38 // Fine since we are typed void and return undefined 46 // Fine since we are typed void and return null 54 // Fine since are typed any. 61 // Fine since we are typed any and return undefined 69 // Fine since we are typed any and return null
|
D | functionsMissingReturnStatementsAndExpressions.symbols | 24 // Fine since we are typed void. 30 // Fine since we are typed void. 37 // Fine since we are typed void and return undefined 45 // Fine since we are typed void and return null 52 // Fine since are typed any. 59 // Fine since we are typed any and return undefined 67 // Fine since we are typed any and return null
|
D | arrayLiteralExpressionContextualTyping.symbols | 2 …In a contextually typed array literal expression containing no spread elements, an element express… 20 // In a contextually typed array literal expression containing one or more spread elements, 21 // an element expression at index N is contextually typed by the numeric index type of the contextu…
|
D | arrayLiteralExpressionContextualTyping.types | 2 …In a contextually typed array literal expression containing no spread elements, an element express… 43 // In a contextually typed array literal expression containing one or more spread elements, 44 // an element expression at index N is contextually typed by the numeric index type of the contextu…
|
D | targetTypeObjectLiteralToAny.types | 12 …keyword, type:"keyword"}); // this should not cause a crash - push should be typed to any }) : void 16 …word, type:"keyword"}); // this should not cause a crash - push should be typed to any } : (keywor… 19 …ush({text:keyword, type:"keyword"}); // this should not cause a crash - push should be typed to any
|
D | arrayLiteralExpressionContextualTyping.errors.txt | 12 …In a contextually typed array literal expression containing no spread elements, an element express… 30 // In a contextually typed array literal expression containing one or more spread elements, 31 …// an element expression at index N is contextually typed by the numeric index type of the context…
|
D | conditionalOperatorWithIdenticalBCT.types | 29 //Be Not contextually typed 82 //Contextually typed 107 //Be Not contextually typed 160 //Contextually typed 185 //Contextually typed
|
D | thisTypeInObjectLiterals2.types | 419 … number) { this.x += dx; // Strongly typed this this.y += dy; // Strongly … 421 … number) { this.x += dx; // Strongly typed this this.y += dy; // Strongly … 433 … number) { this.x += dx; // Strongly typed this this.y += dy; // Strongly … 440 this.x += dx; // Strongly typed this 447 this.y += dy; // Strongly typed this 476 … number) { this.x += dx; // Strongly typed this this.y += dy; // Strongly … 478 … number) { this.x += dx; // Strongly typed this this.y += dy; // Strongly … 490 … number) { this.x += dx; // Strongly typed this this.y += dy; // Strongly … 497 this.x += dx; // Strongly typed this 504 this.y += dy; // Strongly typed this
|
D | tsxStatelessFunctionComponents2.errors.txt | 40 // Error (ref callback is contextually typed) 48 // OK - contextually typed intrinsic ref callback parameter 50 // Error - property not on ontextually typed intrinsic ref callback parameter
|
D | logicalOrExpressionIsContextuallyTyped.types | 3 // If the || expression is contextually typed, the operands are contextually typed by the
|
/third_party/typescript/tests/cases/compiler/ |
D | contextualTypingOfOptionalMembers.tsx | 20 foo: s => s // Should be typed number => number 33 bar(x) { // Should be typed number => void 48 foo: s => s // Should be typed number => number 61 s => s // Should be typed number => number
|
D | commonMissingSemicolons.ts | 48 typed type4 = {} 49 typed type5 = type;
|
/third_party/typescript/tests/cases/conformance/jsx/ |
D | tsxStatelessFunctionComponents2.tsx | 32 // Error (ref callback is contextually typed) 38 // OK - contextually typed intrinsic ref callback parameter 40 // Error - property not on ontextually typed intrinsic ref callback parameter
|
/third_party/typescript/tests/cases/conformance/jsdoc/ |
D | typeTagWithGenericSignature.ts | 8 function typed(param) { function 12 var n = typed(1);
|
/third_party/mesa3d/src/intel/tools/tests/gen7/ |
D | send.asm | 312 … render MsgDesc: typed surface read MsgCtrl = 0x14 Surface = 1 mlen 3 rlen 1 { align1 1Q }; 314 … render MsgDesc: typed surface write MsgCtrl = 0x14 Surface = 1 mlen 4 rlen 0 { align1 1Q }; 316 … render MsgDesc: typed surface read MsgCtrl = 0x46 Surface = 1 mlen 3 rlen 1 { align1 2Q }; 318 … render MsgDesc: typed surface write MsgCtrl = 0x46 Surface = 1 mlen 4 rlen 0 { align1 2Q }; 320 … render MsgDesc: typed atomic op MsgCtrl = 0x5 Surface = 1 mlen 3 rlen 0 { align1 1Q }; 322 … render MsgDesc: typed atomic op MsgCtrl = 0x21 Surface = 1 mlen 3 rlen 0 { align1 2Q }; 324 … render MsgDesc: typed atomic op MsgCtrl = 0x12 Surface = 1 mlen 4 rlen 0 { align1 1Q }; 326 … render MsgDesc: typed atomic op MsgCtrl = 0x28 Surface = 1 mlen 4 rlen 0 { align1 2Q }; 328 … render MsgDesc: typed atomic op MsgCtrl = 0x4 Surface = 1 mlen 4 rlen 0 { align1 1Q }; 330 … render MsgDesc: typed atomic op MsgCtrl = 0x20 Surface = 1 mlen 4 rlen 0 { align1 2Q }; [all …]
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | VersionGLSL.cpp | 141 TIntermTyped *typed = sequence.front()->getAsTyped(); in visitAggregate() local 142 if (typed && typed->isMatrix()) in visitAggregate()
|
/third_party/python/Lib/ |
D | functools.py | 448 def _make_key(args, kwds, typed, argument 471 if typed: 479 def lru_cache(maxsize=128, typed=False): argument 508 elif callable(maxsize) and isinstance(typed, bool): 511 wrapper = _lru_cache_wrapper(user_function, maxsize, typed, _CacheInfo) 512 wrapper.cache_parameters = lambda : {'maxsize': maxsize, 'typed': typed} 519 wrapper = _lru_cache_wrapper(user_function, maxsize, typed, _CacheInfo) 520 wrapper.cache_parameters = lambda : {'maxsize': maxsize, 'typed': typed} 525 def _lru_cache_wrapper(user_function, maxsize, typed, _CacheInfo): argument 554 key = make_key(args, kwds, typed) [all …]
|
/third_party/mesa3d/src/intel/tools/tests/gen7.5/ |
D | send.asm | 346 …dp data 1 MsgDesc: ( DC typed surface read, Surface = 1, SIMD16, Mask = 0x0) mlen 3 rlen 4 { align… 348 …dp data 1 MsgDesc: ( DC typed surface write, Surface = 2, SIMD16, Mask = 0x0) mlen 7 rlen 0 { alig… 350 …dp data 1 MsgDesc: ( DC typed surface read, Surface = 1, SIMD8, Mask = 0x0) mlen 3 rlen 4 { align1… 352 …dp data 1 MsgDesc: ( DC typed surface write, Surface = 2, SIMD8, Mask = 0x0) mlen 7 rlen 0 { align… 464 …dp data 1 MsgDesc: ( DC typed surface read, Surface = 1, SIMD16, Mask = 0x0) mlen 4 rlen 4 { align… 466 …dp data 1 MsgDesc: ( DC typed surface read, Surface = 1, SIMD8, Mask = 0x0) mlen 4 rlen 4 { align1… 584 …dp data 1 MsgDesc: ( DC typed surface read, Surface = 1, SIMD16, Mask = 0xe) mlen 3 rlen 1 { align… 586 …dp data 1 MsgDesc: ( DC typed surface write, Surface = 1, SIMD16, Mask = 0xe) mlen 4 rlen 0 { alig… 588 …dp data 1 MsgDesc: ( DC typed surface read, Surface = 1, SIMD8, Mask = 0xe) mlen 3 rlen 1 { align1… 590 …dp data 1 MsgDesc: ( DC typed surface write, Surface = 1, SIMD8, Mask = 0xe) mlen 4 rlen 0 { align… [all …]
|