Home
last modified time | relevance | path

Searched refs:Example (Results 1 – 25 of 1365) sorted by relevance

12345678910>>...55

/third_party/typescript/tests/baselines/reference/
DdeclarationEmitDefaultExportWithStaticAssignment.js8 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 …]
DdeclarationEmitDefaultExportWithStaticAssignment.types9 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 …]
DdeclarationEmitDefaultExportWithStaticAssignment.symbols9 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 …]
DinferParameterWithMethodCallInitializer.symbols7 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 …]
DinferParameterWithMethodCallInitializer.types8 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
DsubclassWithPolymorphicThisIsAssignable.js10 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;
DinferParameterWithMethodCallInitializer.js5 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;
DprivateInstanceVisibility.js4 export class Example {
44 var Example = /** @class */ (function () { class
45 function Example() { class in anonymousFunctionaea0b6310100.Example
47 Example.prototype.doSomething = function () { class
53 return Example;
55 Test.Example = Example;
DcontrolFlowPrivateClassField.symbols2 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))
DsubclassWithPolymorphicThisIsAssignable.symbols15 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))
DprivateInstanceVisibility.symbols5 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))
DclassPropertyErrorOnNameOnly.js7 class Example { class
44 var Example = /** @class */ (function () {
45 function Example() { class in Example
62 return Example;
DnewLineInTypeofInstantiation.symbols2 interface Example {
3 >Example : Symbol(Example, Decl(newLineInTypeofInstantiation.ts, 0, 0))
/third_party/mbedtls/tests/suites/
Dtest_suite_pkcs1_v21.data61 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/
DdeclarationEmitDefaultExportWithStaticAssignment.ts7 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
DinferParameterWithMethodCallInitializer.ts5 class Example { class
13 function weird(this: Example, a = this.getNumber()) {
17 doSomething(this: Example, a = this.getNumber()) {
/third_party/cef/tools/
Dtranslator.README.txt352 // CppToC Example
359 // CToCpp Example
370 // CppToC Example
389 // CToCpp Example
400 // CppToC Example
415 // CToCpp Example
426 // CppToC Example
438 // CToCpp Example
454 // CppToC Example
461 // CToCpp Example
[all …]
/third_party/json/docs/mkdocs/docs/home/
Dexceptions.md131 !!! 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/curl/docs/cmdline-opts/
Durl-query.d10 Example: --url-query name=val $URL
11 Example: --url-query =encodethis http://example.net/foo
12 Example: --url-query name@file $URL
13 Example: --url-query @fileonly $URL
14 Example: --url-query "+name=%20foo" $URL
/third_party/node/deps/undici/src/docs/api/
DMockAgent.md21 ### 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/
DREADME.md11 ## 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/
Derrors.md44 * 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/
Dexamples.cpp6 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/
DREADME47 Example:
67 Example:
98 Example:
109 Example:
120 Example:
134 Example:
149 Example:
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/namespaces/namespace_body/
Dnamespace_body.ts25 namespace Example { namespace
86 export import E = Example;
88 Assert.equal(Example.exampleName("G"), "G Example");
89 Assert.equal(Example.Color.RED, 0xFF0000);

12345678910>>...55