/third_party/typescript/tests/baselines/reference/ |
D | declarationEmitDefaultExportWithStaticAssignment.js | 8 export default function Example() {} class 9 Example.Foo = Foo 14 export default function Example() {} 15 Example.Foo = Foo 19 export default function Example() {} 21 Example.Bar = Bar 49 function Example() { } 50 exports["default"] = Example; 51 Example.Foo = foo_1.Foo; 58 function Example() { } [all …]
|
D | declarationEmitDefaultExportWithStaticAssignment.types | 9 export default function Example() {} 10 >Example : typeof Example 12 Example.Foo = Foo 13 >Example.Foo = Foo : typeof Foo 14 >Example.Foo : typeof Foo 15 >Example : typeof Example 26 export default function Example() {} 27 >Example : typeof Example 29 Example.Foo = Foo 30 >Example.Foo = Foo : typeof Foo [all …]
|
D | declarationEmitDefaultExportWithStaticAssignment.symbols | 9 export default function Example() {} 10 >Example : Symbol(Example, Decl(index1.ts, 0, 26), Decl(index1.ts, 1, 36)) 12 Example.Foo = Foo 13 >Example.Foo : Symbol(Example.Foo, Decl(index1.ts, 1, 36)) 14 >Example : Symbol(Example, Decl(index1.ts, 0, 26), Decl(index1.ts, 1, 36)) 15 >Foo : Symbol(Example.Foo, Decl(index1.ts, 1, 36)) 25 export default function Example() {} 26 >Example : Symbol(Example, Decl(index2.ts, 1, 13), Decl(index2.ts, 2, 36)) 28 Example.Foo = Foo 29 >Example.Foo : Symbol(Example.Foo, Decl(index2.ts, 2, 36)) [all …]
|
D | inferParameterWithMethodCallInitializer.symbols | 7 class Example { 8 >Example : Symbol(Example, Decl(inferParameterWithMethodCallInitializer.ts, 2, 1)) 11 >getNumber : Symbol(Example.getNumber, Decl(inferParameterWithMethodCallInitializer.ts, 3, 15)) 16 >doSomething : Symbol(Example.doSomething, Decl(inferParameterWithMethodCallInitializer.ts, 6, 5)) 18 >this.getNumber : Symbol(Example.getNumber, Decl(inferParameterWithMethodCallInitializer.ts, 3, 15)) 19 >this : Symbol(Example, Decl(inferParameterWithMethodCallInitializer.ts, 2, 1)) 20 >getNumber : Symbol(Example.getNumber, Decl(inferParameterWithMethodCallInitializer.ts, 3, 15)) 27 function weird(this: Example, a = this.getNumber()) { 30 >Example : Symbol(Example, Decl(inferParameterWithMethodCallInitializer.ts, 2, 1)) 32 >this.getNumber : Symbol(Example.getNumber, Decl(inferParameterWithMethodCallInitializer.ts, 3, 15)) [all …]
|
D | inferParameterWithMethodCallInitializer.types | 8 class Example { 9 >Example : Example 30 function weird(this: Example, a = this.getNumber()) { 31 >weird : (this: Example, a?: number) => number 32 >this : Example 36 >this : Example 45 doSomething(this: Example, a = this.getNumber()) { 46 >doSomething : (this: Example, a?: number) => number 47 >this : Example 51 >this : Example
|
D | subclassWithPolymorphicThisIsAssignable.js | 10 export class Example<Z extends CustomDocument> { class 23 exports.Example = void 0; 24 var Example = /** @class */ (function () { 25 function Example() { class in Example 29 Example.prototype.test = function () { }; 30 return Example; 32 exports.Example = Example;
|
D | inferParameterWithMethodCallInitializer.js | 5 class Example { 13 function weird(this: Example, a = this.getNumber()) { 17 doSomething(this: Example, a = this.getNumber()) { 27 var Example = /** @class */ (function () { 28 function Example() { class 30 Example.prototype.getNumber = function () { class 33 Example.prototype.doSomething = function (a) { 37 return Example;
|
D | privateInstanceVisibility.js | 4 export class Example { 44 var Example = /** @class */ (function () { class 45 function Example() { class in anonymousFunctionc43204bd0100.Example 47 Example.prototype.doSomething = function () { class 53 return Example; 55 Test.Example = Example;
|
D | controlFlowPrivateClassField.symbols | 2 class Example { 3 >Example : Symbol(Example, Decl(controlFlowPrivateClassField.ts, 0, 0)) 6 >#test : Symbol(Example.#test, Decl(controlFlowPrivateClassField.ts, 0, 15)) 12 >this.#test : Symbol(Example.#test, Decl(controlFlowPrivateClassField.ts, 0, 15)) 13 >this : Symbol(Example, Decl(controlFlowPrivateClassField.ts, 0, 0)) 18 >test : Symbol(Example.test, Decl(controlFlowPrivateClassField.ts, 5, 5)) 21 >this.#test : Symbol(Example.#test, Decl(controlFlowPrivateClassField.ts, 0, 15)) 22 >this : Symbol(Example, Decl(controlFlowPrivateClassField.ts, 0, 0))
|
D | subclassWithPolymorphicThisIsAssignable.symbols | 15 export class Example<Z extends CustomDocument> { 16 >Example : Symbol(Example, Decl(subclassWithPolymorphicThisIsAssignable.ts, 6, 45)) 23 >this.test : Symbol(Example.test, Decl(subclassWithPolymorphicThisIsAssignable.ts, 12, 5)) 24 >this : Symbol(Example, Decl(subclassWithPolymorphicThisIsAssignable.ts, 6, 45)) 25 >test : Symbol(Example.test, Decl(subclassWithPolymorphicThisIsAssignable.ts, 12, 5)) 30 >test : Symbol(Example.test, Decl(subclassWithPolymorphicThisIsAssignable.ts, 12, 5))
|
D | privateInstanceVisibility.symbols | 5 export class Example { 6 >Example : Symbol(Example, Decl(privateInstanceVisibility.ts, 0, 13)) 9 >someNumber : Symbol(Example.someNumber, Decl(privateInstanceVisibility.ts, 2, 26)) 14 >doSomething : Symbol(Example.doSomething, Decl(privateInstanceVisibility.ts, 4, 35)) 18 >this : Symbol(Example, Decl(privateInstanceVisibility.ts, 0, 13)) 25 >that.someNumber : Symbol(Example.someNumber, Decl(privateInstanceVisibility.ts, 2, 26)) 27 >someNumber : Symbol(Example.someNumber, Decl(privateInstanceVisibility.ts, 2, 26))
|
D | classPropertyErrorOnNameOnly.js | 7 class Example { class 44 var Example = /** @class */ (function () { 45 function Example() { class in Example 62 return Example;
|
D | classPropertyErrorOnNameOnly.symbols | 11 class Example { 12 >Example : Symbol(Example, Decl(classPropertyErrorOnNameOnly.ts, 2, 39)) 15 >insideClass : Symbol(Example.insideClass, Decl(classPropertyErrorOnNameOnly.ts, 5, 15))
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_pkcs1_v21.data | 61 RSAES-OAEP Encryption Example 3_1 65 RSAES-OAEP Encryption Example 3_2 69 RSAES-OAEP Encryption Example 3_3 73 RSAES-OAEP Encryption Example 3_4 77 RSAES-OAEP Encryption Example 3_5 81 RSAES-OAEP Encryption Example 3_6 85 RSAES-OAEP Encryption Example 4_1 89 RSAES-OAEP Encryption Example 4_2 93 RSAES-OAEP Encryption Example 4_3 97 RSAES-OAEP Encryption Example 4_4 [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | declarationEmitDefaultExportWithStaticAssignment.ts | 7 export default function Example() {} function 8 Example.Foo = Foo 13 export default function Example() {} function 14 Example.Foo = Foo 18 export default function Example() {} function 20 Example.Bar = Bar
|
D | inferParameterWithMethodCallInitializer.ts | 5 class Example { class 13 function weird(this: Example, a = this.getNumber()) { 17 doSomething(this: Example, a = this.getNumber()) {
|
/third_party/json/docs/mkdocs/docs/home/ |
D | exceptions.md | 131 !!! failure "Example message" 190 !!! failure "Example message" 204 !!! failure "Example message" 218 !!! failure "Example message" 228 !!! failure "Example message" 244 !!! failure "Example message" 254 !!! failure "Example message" 264 !!! failure "Example message" 274 !!! failure "Example messages" 287 !!! failure "Example message" [all …]
|
/third_party/node/deps/undici/src/docs/api/ |
D | MockAgent.md | 21 ### Example - Basic MockAgent instantiation 31 ### Example - Basic MockAgent instantiation with custom agent 66 #### Example - Basic Mocked Request 86 #### Example - Basic Mocked Request with local mock agent dispatcher 108 #### Example - Basic Mocked Request with local mock pool dispatcher 130 #### Example - Basic Mocked Request with local mock client dispatcher 152 #### Example - Basic Mocked requests with multiple intercepts 180 #### Example - Mock different requests within the same file 198 #### Example - Mocked request with query body, headers and trailers 237 #### Example - Mocked request with origin regex [all …]
|
/third_party/node/deps/npm/node_modules/libnpmteam/ |
D | README.md | 11 ## Example section in libnpmteam 28 # Example 39 * [Example](#example) 77 ##### Example l4subsection 89 ##### Example l4subsection 100 ##### Example l4subsection 111 ##### Example l4subsection 122 ##### Example l4subsection 141 ##### Example l4subsection 161 ##### Example l4subsection [all …]
|
/third_party/skia/third_party/externals/dawn/docs/ |
D | errors.md | 44 * Example: `Command encoding has already finished.` 48 * Example: `Buffer is not large enough...` 52 * Example: `("Array stride (%u) is not...", stride)` 56 * Example: `("The %s size (%s) is...", buffer, buffer.size)` 60 * Example: `("The %s format (%s) is...", texture, texture.format)` 64 * Example: `("Offset (%u) is larger than the size (%u) of %s.", offset, buffer.size, buffer)` 68 * Example: `Binding size (3) is less than the minimum binding size (32).` 105 * Example: `("validating primitive state")` 109 * Example: `("validating buffers[%u]", i)` 113 * Example: `("validating % against %", descriptor, descriptor->layout)` [all …]
|
/third_party/skia/tools/fiddle/ |
D | examples.cpp | 6 template sk_tools::Registry<fiddle::Example>* sk_tools::Registry<fiddle::Example>::gHead; 26 for (const fiddle::Example& example : sk_tools::Registry<fiddle::Example>::Range()) { in main()
|
/third_party/cups-filters/scripting/php/ |
D | README | 47 Example: 67 Example: 98 Example: 109 Example: 120 Example: 134 Example: 149 Example:
|
/third_party/gn/src/gn/ |
D | function_toolchain.cc | 137 Example of defining a toolchain 163 Example of cross-toolchain dependencies 358 Example: default_output_extension = ".exe" 368 Example: depfile = "{{output}}.d" 376 Example: depsformat = "gcc" 383 Example: description = "Compiling {{source}}" 464 Example for a compiler tool that produces .obj files: 469 Example for a linker tool that produces a .dll and a .lib. The use of 556 Example: 621 them. Example: "out/base/my_file.o" [all …]
|
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/namespaces/namespace_body/ |
D | namespace_body.ts | 25 namespace Example { namespace 86 export import E = Example; 88 Assert.equal(Example.exampleName("G"), "G Example"); 89 Assert.equal(Example.Color.RED, 0xFF0000);
|
/third_party/libcoap/doc/ |
D | upgrade_4.2.1_4.3.0.txt | 19 Example 41 Example 76 Example 105 Example 133 Example 159 Example 187 Example 216 Example 226 Example 239 Example [all …]
|