| /third_party/typescript/tests/baselines/reference/ |
| D | computedPropertyNamesSourceMap2_ES6.types | 3 >v : { hello(): void; readonly goodbye: number; } 4 …{ ["hello"]() { debugger; }, get ["goodbye"]() { return 0; }} : { hello(): void; readon… 12 get ["goodbye"]() { 13 >["goodbye"] : number 14 >"goodbye" : "goodbye"
|
| D | computedPropertyNamesSourceMap2_ES5.types | 3 >v : { hello(): void; readonly goodbye: number; } 4 … ["hello"]() { debugger; }, get ["goodbye"]() { return 0; }} : { hello(): void; readon… 12 get ["goodbye"]() { 13 >["goodbye"] : number 14 >"goodbye" : "goodbye"
|
| D | moduleCodeGenTest3.types | 7 Baz.x = "goodbye"; 8 >Baz.x = "goodbye" : "goodbye" 12 >"goodbye" : "goodbye"
|
| D | moduleCodegenTest4.types | 7 Baz.x = "goodbye"; 8 >Baz.x = "goodbye" : "goodbye" 12 >"goodbye" : "goodbye"
|
| D | computedPropertyNamesSourceMap1_ES5.symbols | 11 get ["goodbye"]() { 12 >["goodbye"] : Symbol(C["goodbye"], Decl(computedPropertyNamesSourceMap1_ES5.ts, 3, 5)) 13 >"goodbye" : Symbol(C["goodbye"], Decl(computedPropertyNamesSourceMap1_ES5.ts, 3, 5))
|
| D | computedPropertyNamesSourceMap1_ES6.symbols | 11 get ["goodbye"]() { 12 >["goodbye"] : Symbol(C["goodbye"], Decl(computedPropertyNamesSourceMap1_ES6.ts, 3, 2)) 13 >"goodbye" : Symbol(C["goodbye"], Decl(computedPropertyNamesSourceMap1_ES6.ts, 3, 2))
|
| D | computedPropertyNamesSourceMap2_ES5.symbols | 11 get ["goodbye"]() { 12 >["goodbye"] : Symbol(["goodbye"], Decl(computedPropertyNamesSourceMap2_ES5.ts, 3, 3)) 13 >"goodbye" : Symbol(["goodbye"], Decl(computedPropertyNamesSourceMap2_ES5.ts, 3, 3))
|
| D | computedPropertyNamesSourceMap2_ES6.symbols | 11 get ["goodbye"]() { 12 >["goodbye"] : Symbol(["goodbye"], Decl(computedPropertyNamesSourceMap2_ES6.ts, 3, 3)) 13 >"goodbye" : Symbol(["goodbye"], Decl(computedPropertyNamesSourceMap2_ES6.ts, 3, 3))
|
| D | computedPropertyNamesSourceMap1_ES5.types | 11 get ["goodbye"]() { 12 >["goodbye"] : number 13 >"goodbye" : "goodbye"
|
| D | computedPropertyNamesSourceMap1_ES6.types | 11 get ["goodbye"]() { 12 >["goodbye"] : number 13 >"goodbye" : "goodbye"
|
| D | computedPropertyNamesSourceMap1_ES5.sourcemap.txt | 31 > get ["goodbye"]() { 78 >>> Object.defineProperty(C.prototype, "goodbye", { 85 3 > ["goodbye"] 101 1->get ["goodbye"]() { 151 > get ["goodbye"]() {
|
| D | moduleCodeGenTest3.js | 4 Baz.x = "goodbye"; 11 Baz.x = "goodbye";
|
| D | computedPropertyNamesSourceMap1_ES6.js | 6 get ["goodbye"]() { getter in C 16 get ["goodbye"]() { getter in C
|
| /third_party/node/test/parallel/ |
| D | test-internal-iterable-weak-map.js | 24 wm.set(_cache.moduleC, 'goodbye'); 30 deepStrictEqual(values, ['hello', 'goodbye']); 42 wm.set(_cache.moduleB, 'goodbye'); 58 wm.set(_cache.moduleC, 'goodbye'); 61 deepStrictEqual(values, ['hello', 'goodbye']); 73 wm.set(_cache.moduleC, 'goodbye'); 76 deepStrictEqual(values, ['hello', 'goodbye']); 89 wm.set(_cache.moduleC, 'goodbye');
|
| D | test-child-process-stdout-flush-exit.js | 33 console.log('goodbye'); 46 // Check if we receive both 'hello' at start and 'goodbye' at end 54 assert.strictEqual(stdout.slice(stdout.length - 8), 'goodbye\n');
|
| /third_party/typescript/tests/cases/fourslash/ |
| D | completionsSelfDeclaring3.ts | 3 ////function f<T extends { x: number }>(p: T & (T extends { hello: string } ? { goodbye: number } :… 4 ////f({ x/*x*/: 0, hello/*hello*/: "", goodbye/*goodbye*/: 0, abc/*abc*/: "" }) 18 marker: "goodbye", 19 exact: ["goodbye"]
|
| D | indentationInJsx3.ts | 8 ////goodbye 18 goodbye 31 goodbye
|
| D | goToImplementationInterfaceMethod_10.ts | 15 //// goodbye(): void; 29 //// goodbye() {} 35 //// goodbye() {}
|
| /third_party/littlefs/tests/ |
| D | test_powerloss.toml | 65 strcpy(buffer, "goodbye"); 66 size = strlen("goodbye"); 80 strcpy(buffer, "goodbye"); 81 size = strlen("goodbye"); 161 strcpy(buffer, "goodbye"); 162 size = strlen("goodbye"); 176 strcpy(buffer, "goodbye"); 177 size = strlen("goodbye");
|
| /third_party/python/Doc/library/ |
| D | atexit.rst | 100 def goodbye(name, adjective): 101 print('Goodbye %s, it was %s to meet you.' % (name, adjective)) 105 atexit.register(goodbye, 'Donny', 'nice') 107 atexit.register(goodbye, adjective='nice', name='Donny') 114 def goodbye():
|
| /third_party/typescript/tests/arkTSTest/testcase/arkts-no-indexed-signatures/ |
| D | arkts-no-indexed-signatures-3-error.ets | 22 en: { hello: 'Hello', goodbye: 'Goodbye' }, 23 fr: { hello: 'Bonjour', goodbye: 'Au revoir' },
|
| /third_party/pulseaudio/src/modules/rtp/ |
| D | sap.c | 73 int pa_sap_send(pa_sap_context *c, bool goodbye) { in pa_sap_send() argument 97 (goodbye ? (uint32_t) 1 << 26 : 0) | in pa_sap_send() 142 int pa_sap_recv(pa_sap_context *c, bool *goodbye) { in pa_sap_recv() argument 152 pa_assert(goodbye); in pa_sap_recv() 227 *goodbye = !!((header >> 26) & 1); in pa_sap_recv()
|
| /third_party/skia/third_party/externals/abseil-cpp/absl/functional/ |
| D | bind_front_test.cc | 125 s.value = "goodbye"; in TEST() 126 EXPECT_EQ("goodbye", g()); in TEST() 137 s.value = "goodbye"; in TEST() 138 EXPECT_EQ("goodbye", g()); in TEST() 154 s.value = "goodbye"; in TEST() 155 EXPECT_EQ("goodbye", g()); in TEST()
|
| /third_party/rust/crates/clap/clap_complete/tests/ |
| D | dynamic.rs | 9 .subcommand(clap::Command::new("goodbye-world")); in suggest_subcommand_subset() 52 clap::Arg::new("goodbye-world") in suggest_long_flag_subset() 53 .long("goodbye-world") in suggest_long_flag_subset() 89 "goodbye-world", in suggest_possible_value_subset()
|
| /third_party/node/test/fixtures/source-map/output/ |
| D | source_map_throw_set_immediate.snapshot | 2 throw Error('goodbye'); 6 Error: goodbye
|