| /third_party/typescript/tests/baselines/reference/ |
| D | deeplyNestedAssignabilityIssue.types | 9 >something : { another: { more: { thing: A; }; yetstill: { another: A; };… 11 another: { 12 >another : { more: { thing: A;}; yetstill: { another: A;}; } 21 >yetstill : { another: A; } 23 another: A; 24 >another : A 32 …another: { more: { thing: {} }, yetstill: { … 35 >something : { another: { more: { thing: {}; }; yetstill: { another: {}; }; }; } 36 …another: { more: { thing: {} }, yetstill: { … 38 another: { [all …]
|
| D | typeofStripsFreshness.types | 25 const ANOTHER = "another"; 26 >ANOTHER : "another" 27 >"another" : "another" 29 type Another = typeof ANOTHER; 30 >Another : "another" 31 >ANOTHER : "another" 33 type Both = Another | All;
|
| D | deeplyNestedAssignabilityIssue.symbols | 15 another: { 16 >another : Symbol(another, Decl(deeplyNestedAssignabilityIssue.ts, 5, 16)) 28 another: A; 29 >another : Symbol(another, Decl(deeplyNestedAssignabilityIssue.ts, 10, 23)) 43 another: { 44 >another : Symbol(another, Decl(deeplyNestedAssignabilityIssue.ts, 18, 16)) 56 another: {} 57 >another : Symbol(another, Decl(deeplyNestedAssignabilityIssue.ts, 23, 23))
|
| D | declarationEmitMixinPrivateProtected.symbols | 40 === tests/cases/compiler/another.ts === 42 >mix : Symbol(mix, Decl(another.ts, 0, 0)) 43 >TMix : Symbol(TMix, Decl(another.ts, 0, 21)) 44 >mixin : Symbol(mixin, Decl(another.ts, 0, 27)) 45 >TMix : Symbol(TMix, Decl(another.ts, 0, 21)) 46 >TMix : Symbol(TMix, Decl(another.ts, 0, 21)) 49 >DisposableMixin : Symbol(DisposableMixin, Decl(another.ts, 2, 5)) 52 >_onDispose : Symbol(DisposableMixin._onDispose, Decl(another.ts, 2, 31)) 55 >this._assertIsStripped : Symbol(DisposableMixin._assertIsStripped, Decl(another.ts, 5, 5)) 56 >this : Symbol(DisposableMixin, Decl(another.ts, 2, 23)) [all …]
|
| D | typeofStripsFreshness.symbols | 35 const ANOTHER = "another"; 36 >ANOTHER : Symbol(ANOTHER, Decl(typeofStripsFreshness.ts, 13, 5)) 38 type Another = typeof ANOTHER; 39 >Another : Symbol(Another, Decl(typeofStripsFreshness.ts, 13, 26)) 40 >ANOTHER : Symbol(ANOTHER, Decl(typeofStripsFreshness.ts, 13, 5)) 42 type Both = Another | All; 44 >Another : Symbol(Another, Decl(typeofStripsFreshness.ts, 13, 26))
|
| D | typeofStripsFreshness.js | 15 const ANOTHER = "another"; constant 16 type Another = typeof ANOTHER; 18 type Both = Another | All; 26 var ANOTHER = "another"; variable
|
| D | deeplyNestedAssignabilityIssue.js | 8 another: { 13 another: A; 21 another: { property 26 another: {} property 36 another: { property 41 another: {} property
|
| D | jsDeclarationsReexportedCjsAlias.js | 22 const { SomeClass, SomeClass: Another } = require('./lib'); 26 Another field 49 var _a = require('./lib'), SomeClass = _a.SomeClass, Another = _a.SomeClass; variable 52 Another: Another property 66 import { SomeClass as Another } from "./lib"; 67 export { SomeClass, Another };
|
| D | jsDeclarationsReexportedCjsAlias.types | 2 const { SomeClass, SomeClass: Another } = require('./lib'); 5 >Another : typeof SomeClass 11 >module.exports = { SomeClass, Another} : typeof module.exports 15 >{ SomeClass, Another} : { SomeClass: typeof SomeClass; Another: typeof SomeClass; } 20 Another 21 >Another : typeof SomeClass
|
| D | commentsCommentParsing.js | 10 /// Another multiLine 32 * and this too*/ /** Another this one too*/ 45 /** jsdoc comment */ /*** another jsDocComment*/ 50 /** jsdoc comment */ /*** another jsDocComment*/ 56 /** jsdoc comment */ /*** another jsDocComment*/ 64 /** jsdoc comment */ /*** another jsDocComment*/ 71 /*** another jsDocComment*/ 163 /// Another multiLine 181 * and this too*/ /** Another this one too*/ 191 /** jsdoc comment */ /*** another jsDocComment*/ [all …]
|
| D | jsDeclarationsExportAssignedClassExpressionShadowing.symbols | 29 module.exports.Another = Q; 30 >module.exports.Another : Symbol(Another, Decl(index.js, 10, 1)) 31 >module.exports : Symbol(Another, Decl(index.js, 10, 1)) 34 >Another : Symbol(Another, Decl(index.js, 10, 1))
|
| D | jsDeclarationsReexportedCjsAlias.symbols | 2 const { SomeClass, SomeClass: Another } = require('./lib'); 5 >Another : Symbol(Another, Decl(main.js, 0, 18)) 17 Another 18 >Another : Symbol(Another, Decl(main.js, 3, 14))
|
| D | multipleExportDefault4.types | 6 >{ uhoh: "another default",} : { uhoh: string; } 8 uhoh: "another default", 10 >"another default" : "another default"
|
| D | multipleExportDefault1.types | 8 >{ uhoh: "another default",} : { uhoh: string; } 10 uhoh: "another default", 12 >"another default" : "another default"
|
| /third_party/boost/libs/test/test/utils-ts/ |
| D | algorithm-test.cpp | 74 const_string another( "tes" ); in BOOST_AUTO_TEST_CASE() local 76 …RROUND_EXPRESSION(utu::find_first_not_of( cs.begin(), cs.end(), another.begin(), another.end() ) -… in BOOST_AUTO_TEST_CASE() 78 another = "T_sE"; in BOOST_AUTO_TEST_CASE() 80 …RROUND_EXPRESSION(utu::find_first_not_of( cs.begin(), cs.end(), another.begin(), another.end(), RE… in BOOST_AUTO_TEST_CASE() 82 another = "tes_ring"; in BOOST_AUTO_TEST_CASE() 83 …BOOST_TEST( utu::find_last_not_of( cs.begin(), cs.end(), another.begin(), another.end() ) == cs.en… in BOOST_AUTO_TEST_CASE() 91 const_string another( "tes" ); in BOOST_AUTO_TEST_CASE() local 93 …ST_SURROUND_EXPRESSION(utu::find_last_of( cs.begin(), cs.end(), another.begin(), another.end() ) -… in BOOST_AUTO_TEST_CASE() 95 another = "_Se"; in BOOST_AUTO_TEST_CASE() 96 …ST_SURROUND_EXPRESSION(utu::find_last_of( cs.begin(), cs.end(), another.begin(), another.end(), RE… in BOOST_AUTO_TEST_CASE() [all …]
|
| /third_party/typescript/tests/baselines/reference/tscWatch/forceConsistentCasingInFileNames/ |
| D | when-changing-module-name-with-different-casing.js | 5 //// [/user/username/projects/myproject/another.ts] 34 Program root files: ["/user/username/projects/myproject/another.ts","/user/username/projects/myproj… 40 /user/username/projects/myproject/another.ts 45 /user/username/projects/myproject/another.ts 50 /user/username/projects/myproject/another.ts: 51 {"fileName":"/user/username/projects/myproject/another.ts","pollingInterval":250} 79 //// [/user/username/projects/myproject/another.js] 90 //// [/user/username/projects/myproject/another.ts] 98 [96muser/username/projects/myproject/another.ts[0m:[93m1[0m:[93m24[0m - [91merror[0m[90m T… 100 Imported via "./Logger" from file '/user/username/projects/myproject/another.ts' [all …]
|
| D | when-renaming-file-with-different-casing.js | 5 //// [/user/username/projects/myproject/another.ts] 34 Program root files: ["/user/username/projects/myproject/another.ts","/user/username/projects/myproj… 40 /user/username/projects/myproject/another.ts 45 /user/username/projects/myproject/another.ts 50 /user/username/projects/myproject/another.ts: 51 {"fileName":"/user/username/projects/myproject/another.ts","pollingInterval":250} 79 //// [/user/username/projects/myproject/another.js] 96 [96muser/username/projects/myproject/another.ts[0m:[93m1[0m:[93m24[0m - [91merror[0m[90m T… 99 Imported via "./logger" from file '/user/username/projects/myproject/another.ts' 108 …les: ["/user/username/projects/myproject/Logger.ts","/user/username/projects/myproject/another.ts"] [all …]
|
| /third_party/typescript/tests/cases/fourslash/ |
| D | quickInfoJsDocTextFormatting1.ts | 7 //// * @param {string} var2 Another **Highlighted text** 13 //// * @param {string} var2 Another *Regular text with an asterisk 21 //// * Another *Regular text with an asterisk 29 //// * Another **Highlighted text** 37 //// Another **Highlighted text** 55 text: "var2 Another **Highlighted text**" 66 text: "var2 Another *Regular text with an asterisk" 77 text: "var2 Another *Regular text with an asterisk" 88 text: "var2 Another **Highlighted text**" 99 text: "var2 Another **Highlighted text**"
|
| /third_party/curl/tests/data/ |
| D | test184 | 17 Location: http://yet.another.host/%TESTNUMBER 32 Location: http://yet.another.host/%TESTNUMBER 51 http://deathstar.another.galaxy/%TESTNUMBER -L -H "Host: another.visitor.stay.a.while.stay.foreeeee… 61 GET http://deathstar.another.galaxy/%TESTNUMBER HTTP/1.1 62 Host: another.visitor.stay.a.while.stay.foreeeeeever 67 GET http://yet.another.host/%TESTNUMBER HTTP/1.1 68 Host: yet.another.host
|
| D | test185 | 51 http://deathstar.another.galaxy/%TESTNUMBER -L -H "Host: another.visitor.stay.a.while.stay.foreeeee… 61 GET http://deathstar.another.galaxy/%TESTNUMBER HTTP/1.1 62 Host: another.visitor.stay.a.while.stay.foreeeeeever 67 GET http://deathstar.another.galaxy/go/west/%TESTNUMBER HTTP/1.1 68 Host: another.visitor.stay.a.while.stay.foreeeeeever
|
| /third_party/boost/boost/log/detail/ |
| D | code_conversion.hpp | 40 //! The function converts one string to the character type of another 42 //! The function converts one string to the character type of another 47 //! The function converts one string to the character type of another 49 //! The function converts one string to the character type of another 51 //! The function converts one string to the character type of another 55 //! The function converts one string to the character type of another 57 //! The function converts one string to the character type of another 59 //! The function converts one string to the character type of another 63 //! The function converts one string to the character type of another 65 //! The function converts one string to the character type of another [all …]
|
| /third_party/typescript/tests/cases/compiler/ |
| D | typeofStripsFreshness.ts | 14 const ANOTHER = "another"; constant 15 type Another = typeof ANOTHER; alias 17 type Both = Another | All;
|
| /third_party/node/test/es-module/ |
| D | test-esm-json-cache.mjs | 10 import another from '../fixtures/es-modules/json-cache/another.cjs'; 16 const anotherCjs = require('../fixtures/es-modules/json-cache/another.cjs'); 20 strictEqual(another.one, 'zalgo'); 24 deepStrictEqual(another, anotherCjs);
|
| /third_party/node/test/parallel/ |
| D | test-trace-atomics-wait.js | 56 [Thread 0] Atomics.wait(<address> + 4, 0, inf) was woken up by another thread 57 [Thread 1] Atomics.wait(<address> + 4, -1, inf) was woken up by another thread`, 61 [Thread 0] Atomics.wait(<address> + 4, 0, inf) was woken up by another thread 62 [Thread 1] Atomics.wait(<address> + 4, -1, inf) was woken up by another thread`, 65 [Thread 0] Atomics.wait(<address> + 4, 0, inf) was woken up by another thread 67 [Thread 1] Atomics.wait(<address> + 4, -1, inf) was woken up by another thread`, 70 [Thread 0] Atomics.wait(<address> + 4, 0, inf) was woken up by another thread 77 [Thread 0] Atomics.wait(<address> + 4, 0, inf) was woken up by another thread 83 [Thread 0] Atomics.wait(<address> + 4, 0, inf) was woken up by another thread
|
| /third_party/typescript_eslint/packages/eslint-plugin/tests/rules/ |
| D | no-unused-vars.test.ts | 237 import { Another } from 'some'; 239 do = (a: Nullable<Another>) => { 247 import { Another } from 'some'; 249 do(a: Nullable<Another>) { 257 import { Another } from 'some'; 259 do(): Nullable<Another> { 267 import { Another } from 'some'; 269 do(a: Nullable<Another>); 274 import { Another } from 'some'; 276 other: Nullable<Another>; [all …]
|