| /third_party/node/test/fixtures/wpt/FileAPI/url/ |
| D | url-format.any.js | 32 assert_equals(new URL(url).origin, location.origin); 33 if (location.origin !== 'null') { 34 assert_true(url.includes(location.origin)); 37 }, 'Origin of Blob URL matches our origin'); 43 assert_equals(url_record.origin, location.origin); 48 if (location.origin !== 'null') { 50 assert_equals(nested_url.origin, location.origin); 52 assert_true(url.includes(location.origin)); 59 assert_equals(new URL(url).origin, location.origin); 60 if (location.origin !== 'null') { [all …]
|
| /third_party/node/deps/undici/src/types/ |
| D | dispatcher.d.ts | 41 on(eventName: 'connect', callback: (origin: URL, targets: readonly Dispatcher[]) => void): this; 42 …on(eventName: 'disconnect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.… 43 …on(eventName: 'connectionError', callback: (origin: URL, targets: readonly Dispatcher[], error: Er… 44 on(eventName: 'drain', callback: (origin: URL) => void): this; 47 once(eventName: 'connect', callback: (origin: URL, targets: readonly Dispatcher[]) => void): this; 48 …once(eventName: 'disconnect', callback: (origin: URL, targets: readonly Dispatcher[], error: Error… 49 …once(eventName: 'connectionError', callback: (origin: URL, targets: readonly Dispatcher[], error: … 50 once(eventName: 'drain', callback: (origin: URL) => void): this; 53 off(eventName: 'connect', callback: (origin: URL, targets: readonly Dispatcher[]) => void): this; 54 …off(eventName: 'disconnect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors… [all …]
|
| /third_party/openssl/doc/internal/man7/ |
| D | EVP_PKEY.pod | 23 as its "internal key" or "origin" (the reason for "origin" is 29 =item legacy origin 43 =item provider-native origin 60 confusing which one of the two is the origin. 95 For provider native origin keys, this doesn't require any help from 99 For legacy origin keys, this requires the associated 121 the key data that the cached keys came from is the "origin", and since 122 there are two forms of the latter, we have the "legacy origin" and the 123 "provider native origin".> 126 what form the origin has. [all …]
|
| /third_party/node/deps/undici/src/lib/mock/ |
| D | mock-agent.js | 52 get (origin) { argument 53 let dispatcher = this[kMockAgentGet](origin) 56 dispatcher = this[kFactory](origin) 57 this[kMockAgentSet](origin, dispatcher) 64 this.get(opts.origin) 105 [kMockAgentSet] (origin, dispatcher) { argument 106 this[kClients].set(origin, new FakeWeakRef(dispatcher)) 109 [kFactory] (origin) { argument 112 ? new MockClient(origin, mockOptions) 113 : new MockPool(origin, mockOptions) [all …]
|
| /third_party/node/deps/v8/src/heap/ |
| D | heap-allocator-inl.h | 57 int size_in_bytes, AllocationOrigin origin, AllocationAlignment alignment) { in AllocateRaw() argument 63 return AllocateRaw(size_in_bytes, AllocationType::kOld, origin, alignment); in AllocateRaw() 94 AllocateRawLargeInternal(size_in_bytes, type, origin, alignment); in AllocateRaw() 99 new_space()->AllocateRaw(size_in_bytes, alignment, origin); in AllocateRaw() 103 old_space()->AllocateRaw(size_in_bytes, alignment, origin); in AllocateRaw() 116 DCHECK_EQ(AllocationOrigin::kRuntime, origin); in AllocateRaw() 121 alignment, origin); in AllocateRaw() 125 alignment, origin); in AllocateRaw() 163 AllocationOrigin origin, in AllocateRaw() argument 167 return AllocateRaw<AllocationType::kYoung>(size_in_bytes, origin, in AllocateRaw() [all …]
|
| /third_party/node/deps/v8/tools/turbolizer/src/ |
| D | node-label.ts | 5 function formatOrigin(origin) { 6 if (origin.nodeId) { 7 return `#${origin.nodeId} in phase ${origin.phase}/${origin.reducer}`; 9 if (origin.bytecodePosition) { 10 return `Bytecode line ${origin.bytecodePosition} in phase ${origin.phase}/${origin.reducer}`; 12 return "unknown origin"; 22 origin: any; property in NodeLabel 29 …, title: string, live: boolean, properties: string, sourcePosition: any, origin: any, opcode: stri… 36 this.origin = origin; 66 if (this.origin) { [all …]
|
| /third_party/gn/src/gn/ |
| D | input_conversion.cc | 34 // Sets the origin of the value and any nested values with the given node. 38 const ParseNode* origin, in ParseValueOrScope() argument 41 // so the origin parse nodes for the values will be preserved. in ParseValueOrScope() 49 if (origin) { in ParseValueOrScope() 55 origin->GetRange().begin().Describe(true) + in ParseValueOrScope() 88 result = Value(origin, std::move(scope)); in ParseValueOrScope() 93 Value ParseList(const std::string& input, const ParseNode* origin, Err* err) { in ParseList() argument 94 Value ret(origin, Value::LIST); in ParseList() 106 ret.list_value().push_back(Value(origin, line)); in ParseList() 122 const ParseNode* origin, in ParseJSONValue() argument [all …]
|
| /third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/ |
| D | extend.inl | 9 genType const & Origin, argument 14 return Origin + (Source - Origin) * Distance; 20 tvec2<T, P> const & Origin, argument 25 return Origin + (Source - Origin) * Distance; 31 tvec3<T, P> const & Origin, argument 36 return Origin + (Source - Origin) * Distance; 42 tvec4<T, P> const & Origin, argument 47 return Origin + (Source - Origin) * Distance;
|
| /third_party/typescript/tests/baselines/reference/ |
| D | ClassAndModuleThatMergeWithStaticVariableAndExportedVarThatShareAName.errors.txt | 1 …thStaticVariableAndExportedVarThatShareAName.ts(4,12): error TS2300: Duplicate identifier 'Origin'. 2 …thStaticVariableAndExportedVarThatShareAName.ts(8,16): error TS2300: Duplicate identifier 'Origin'. 3 …hStaticVariableAndExportedVarThatShareAName.ts(16,16): error TS2300: Duplicate identifier 'Origin'. 4 …hStaticVariableAndExportedVarThatShareAName.ts(20,20): error TS2300: Duplicate identifier 'Origin'. 11 static Origin: Point = { x: 0, y: 0 }; 13 !!! error TS2300: Duplicate identifier 'Origin'. 17 export var Origin = ""; //expected duplicate identifier error 19 !!! error TS2300: Duplicate identifier 'Origin'. 27 static Origin: Point = { x: 0, y: 0 }; 29 !!! error TS2300: Duplicate identifier 'Origin'. [all …]
|
| D | ClassAndModuleThatMergeWithStaticFunctionAndExportedFunctionThatShareAName.errors.txt | 1 …ticFunctionAndExportedFunctionThatShareAName.ts(4,12): error TS2300: Duplicate identifier 'Origin'. 2 …ticFunctionAndExportedFunctionThatShareAName.ts(8,21): error TS2300: Duplicate identifier 'Origin'. 3 …icFunctionAndExportedFunctionThatShareAName.ts(16,16): error TS2300: Duplicate identifier 'Origin'. 4 …icFunctionAndExportedFunctionThatShareAName.ts(20,25): error TS2300: Duplicate identifier 'Origin'. 11 static Origin(): Point { return { x: 0, y: 0 }; } // unexpected error here bug 840246 13 !!! error TS2300: Duplicate identifier 'Origin'. 17 export function Origin() { return null; } //expected duplicate identifier error 19 !!! error TS2300: Duplicate identifier 'Origin'. 27 static Origin(): Point { return { x: 0, y: 0 }; } // unexpected error here bug 840246 29 !!! error TS2300: Duplicate identifier 'Origin'. [all …]
|
| D | ClassAndModuleThatMergeWithStaticFunctionAndExportedFunctionThatShareAName.js | 5 static Origin(): Point { return { x: 0, y: 0 }; } // unexpected error here bug 840246 9 export function Origin() { return null; } //expected duplicate identifier error class 17 static Origin(): Point { return { x: 0, y: 0 }; } // unexpected error here bug 840246 21 export function Origin() { return ""; }//expected duplicate identifier error 31 Point.Origin = function () { return { x: 0, y: 0 }; }; // unexpected error here bug 840246 class in Point 35 function Origin() { return null; } //expected duplicate identifier error class 36 Point.Origin = Origin; 45 Point.Origin = function () { return { x: 0, y: 0 }; }; // unexpected error here bug 840246 50 function Origin() { return ""; } //expected duplicate identifier error class 51 Point.Origin = Origin;
|
| D | ClassAndModuleThatMergeWithStaticVariableAndExportedVarThatShareAName.symbols | 9 static Origin: Point = { x: 0, y: 0 }; 10 >Origin : Symbol(Point.Origin, Decl(ClassAndModuleThatMergeWithStaticVariableAndExportedVarThatShar… 19 export var Origin = ""; //expected duplicate identifier error 20 >Origin : Symbol(Origin, Decl(ClassAndModuleThatMergeWithStaticVariableAndExportedVarThatShareAName… 34 static Origin: Point = { x: 0, y: 0 }; 35 >Origin : Symbol(Point.Origin, Decl(ClassAndModuleThatMergeWithStaticVariableAndExportedVarThatShar… 44 export var Origin = ""; //expected duplicate identifier error 45 >Origin : Symbol(Origin, Decl(ClassAndModuleThatMergeWithStaticVariableAndExportedVarThatShareAName…
|
| D | ClassAndModuleThatMergeWithStaticFunctionAndExportedFunctionThatShareAName.symbols | 9 static Origin(): Point { return { x: 0, y: 0 }; } // unexpected error here bug 840246 10 >Origin : Symbol(Point.Origin, Decl(ClassAndModuleThatMergeWithStaticFunctionAndExportedFunctionTha… 19 export function Origin() { return null; } //expected duplicate identifier error 20 >Origin : Symbol(Origin, Decl(ClassAndModuleThatMergeWithStaticFunctionAndExportedFunctionThatShare… 34 static Origin(): Point { return { x: 0, y: 0 }; } // unexpected error here bug 840246 35 >Origin : Symbol(Point.Origin, Decl(ClassAndModuleThatMergeWithStaticFunctionAndExportedFunctionTha… 44 export function Origin() { return ""; }//expected duplicate identifier error 45 >Origin : Symbol(Origin, Decl(ClassAndModuleThatMergeWithStaticFunctionAndExportedFunctionThatShare…
|
| D | ClassAndModuleThatMergeWithStaticVariableAndNonExportedVarThatShareAName.symbols | 9 static Origin: Point = { x: 0, y: 0 }; 10 >Origin : Symbol(Point.Origin, Decl(ClassAndModuleThatMergeWithStaticVariableAndNonExportedVarThatS… 19 var Origin = ""; // not an error, since not exported 20 >Origin : Symbol(Origin, Decl(ClassAndModuleThatMergeWithStaticVariableAndNonExportedVarThatShareAN… 34 static Origin: Point = { x: 0, y: 0 }; 35 >Origin : Symbol(Point.Origin, Decl(ClassAndModuleThatMergeWithStaticVariableAndNonExportedVarThatS… 44 var Origin = ""; // not an error since not exported 45 >Origin : Symbol(Origin, Decl(ClassAndModuleThatMergeWithStaticVariableAndNonExportedVarThatShareAN…
|
| D | ClassAndModuleThatMergeWithStaticFunctionAndNonExportedFunctionThatShareAName.symbols | 9 static Origin(): Point { return { x: 0, y: 0 }; } 10 >Origin : Symbol(Point.Origin, Decl(ClassAndModuleThatMergeWithStaticFunctionAndNonExportedFunction… 19 function Origin() { return ""; }// not an error, since not exported 20 >Origin : Symbol(Origin, Decl(ClassAndModuleThatMergeWithStaticFunctionAndNonExportedFunctionThatSh… 34 static Origin(): Point { return { x: 0, y: 0 }; } 35 >Origin : Symbol(Point.Origin, Decl(ClassAndModuleThatMergeWithStaticFunctionAndNonExportedFunction… 44 function Origin() { return ""; }// not an error since not exported 45 >Origin : Symbol(Origin, Decl(ClassAndModuleThatMergeWithStaticFunctionAndNonExportedFunctionThatSh…
|
| D | unwitnessedTypeParameterVariance.types | 5 read: (origin: O) => CalcValue<O>; 6 >read : (origin: O) => CalcValue<O> 7 >origin : O 16 const unk: CalcObj<unknown> = { read: (origin: unknown) => unk } 18 >{ read: (origin: unknown) => unk } : { read: (origin: unknown) => CalcObj<unknown>; } 19 >read : (origin: unknown) => CalcObj<unknown> 20 >(origin: unknown) => unk : (origin: unknown) => CalcObj<unknown> 21 >origin : unknown
|
| /third_party/node/test/parallel/ |
| D | test-http2-origin.js | 33 stream.session.origin('https://example.org/a/b/c', 39 session.origin('https://foo.org/a/b/c', new URL('https://bar.org')); 42 session.origin(); 46 () => session.origin(input), 56 () => session.origin(input), 66 () => session.origin(input), 75 () => session.origin(longInput), 96 client.on('origin', mustCall((origins) => { 108 // Test automatically sending origin on connection start 127 client.on('origin', mustCall((origins) => { [all …]
|
| D | test-http2-altsvc.js | 18 // Origin may be specified by string, URL object, or object with an 19 // origin property. For string and URL object, origin is guaranteed 20 // to be an ASCII serialized origin. For object with an origin 24 session.altsvc('h2=":8000"', { origin: 'https://example.org:8111' }); property 77 { origin: 'null' }, 78 { origin: '' }, 85 message: 'HTTP/2 ALTSVC frames require a valid origin' 90 // Arguments + origin are too long for an ALTSVC frame 112 client.on('altsvc', common.mustCall((alt, origin, stream) => { 116 assert.strictEqual(origin, 'https://example.org:8111'); [all …]
|
| /third_party/node/deps/undici/src/lib/ |
| D | agent.js | 21 function defaultFactory (origin, opts) { argument 23 ? new Client(origin, opts) 24 : new Pool(origin, opts) 67 this[kOnDrain] = (origin, targets) => { 68 agent.emit('drain', origin, [agent, ...targets]) 71 this[kOnConnect] = (origin, targets) => { 72 agent.emit('connect', origin, [agent, ...targets]) 75 this[kOnDisconnect] = (origin, targets, err) => { 76 agent.emit('disconnect', origin, [agent, ...targets], err) 79 this[kOnConnectionError] = (origin, targets, err) => { [all …]
|
| /third_party/node/test/fixtures/wpt/dom/events/scrolling/ |
| D | scroll_support.js | 76 .pointerMove(0, 0, {origin: target}) property 89 test_driver_actions.pointerMove(x, y, {origin: target}); property 114 .pointerMove(0, 0, {origin: target}) property 116 .pointerMove(x_delta, y_delta, {origin: target}) property 117 .pointerMove(2 * x_delta, 2 * y_delta, {origin: target}) property 118 .pointerMove(3 * x_delta, 3 * y_delta, {origin: target}) property 119 .pointerMove(4 * x_delta, 4 * y_delta, {origin: target}) property 120 .pointerMove(5 * x_delta, 5 * y_delta, {origin: target}) property 131 function mouseActionsInTarget(target, origin, delta, pause_time_in_ms = 100) { argument 134 .pointerMove(origin.x, origin.y, { origin: target }) property [all …]
|
| /third_party/python/Lib/test/test_importlib/ |
| D | test_spec.py | 74 origin=self.path) 82 self.assertIs(spec.origin, None) 93 self.assertIs(spec.origin, None) 105 self.assertIs(spec.origin, None) 117 self.assertIs(spec.origin, None) 125 origin='somewhere') 133 origin=None, 144 origin=self.path, 155 origin=None, 198 origin=self.path) [all …]
|
| /third_party/node/test/fixtures/wpt/url/resources/ |
| D | urltestdata.json | 7 "origin": "http://example.org", string 22 "origin": "http://foo:21", string 37 "origin": "https://test", string 52 "origin": "https://test", string 67 "origin": "null", string 82 "origin": "null", string 97 "origin": "http://example.org", string 112 "origin": "http://example.org", string 127 "origin": "http://example.org", string 142 "origin": "null", string [all …]
|
| /third_party/skia/src/gpu/ |
| D | GrRecordingContextPriv.cpp | 29 GrSurfaceOrigin origin, in createDevice() argument 34 std::move(colorSpace), origin, props, init); in createDevice() 46 GrSurfaceOrigin origin, in createDevice() argument 51 mipmapped, isProtected, origin, props, init); in createDevice() 91 GrSurfaceProxyView writeView(readView.refProxy(), readView.origin(), writeSwizzle); in makeSC() 120 GrSurfaceOrigin origin, in makeSC() argument 148 GrSurfaceProxyView view(std::move(proxy), origin, swizzle); in makeSC() 157 GrSurfaceOrigin origin, in makeSFC() argument 171 origin, in makeSFC() 190 GrSurfaceProxyView readView( proxy, origin, readSwizzle); in makeSFC() [all …]
|
| /third_party/typescript/tests/issues_cookbook_tests/expected/ |
| D | #16334-expected.json | 6 …"origin": "ERROR: ArkTS:ERROR File: /entry/src/main/ets/pages/cases/#16334.ets:28:1\n Indexed acce… string 13 …"origin": "ERROR: ArkTS:ERROR File: /entry/src/main/ets/pages/cases/#16334.ets:29:1\n Indexed acce… string 20 …"origin": "ERROR: ArkTS:ERROR File: /entry/src/main/ets/pages/cases/#16334.ets:30:1\n Indexed acce… string 27 …"origin": "ERROR: ArkTS:ERROR File: /entry/src/main/ets/pages/cases/#16334.ets:31:1\n Indexed acce… string 34 …"origin": "ERROR: ArkTS:ERROR File: /entry/src/main/ets/pages/cases/#16334.ets:32:1\n Indexed acce… string 41 …"origin": "ERROR: ArkTS:ERROR File: /entry/src/main/ets/pages/cases/#16334.ets:33:1\n Indexed acce… string 48 …"origin": "ERROR: ArkTS:ERROR File: /entry/src/main/ets/pages/cases/#16334.ets:34:1\n Indexed acce… string 55 …"origin": "ERROR: ArkTS:ERROR File: /entry/src/main/ets/pages/cases/#16334.ets:36:1\n Indexed acce… string 62 …"origin": "ERROR: ArkTS:ERROR File: /entry/src/main/ets/pages/cases/#16334.ets:37:1\n Indexed acce… string 69 …"origin": "ERROR: ArkTS:ERROR File: /entry/src/main/ets/pages/cases/#16334.ets:38:1\n Indexed acce… string [all …]
|
| /third_party/pulseaudio/speex/ti/speex_C54_test/ |
| D | speex_C54_test.cmd | 42 /* PAGE 0: P_DARAM03: origin = 0x80, len = 0x7f00*/ 43 PAGE 0: P_DARAM03: origin = 0x5000, len = 0x2f80 44 PAGE 0: VECT: origin = 0x7f80, len = 0x80 45 PAGE 0: P_DARAM47: origin = 0x18000, len = 0x8000 46 PAGE 0: SARAM03: origin = 0x28000, len = 0x8000 47 PAGE 0: SARAM47: origin = 0x38000, len = 0x8000 49 PAGE 1: USERREGS: origin = 0x60, len = 0x1a 50 PAGE 1: BIOSREGS: origin = 0x7c, len = 0x4 51 PAGE 1: CSLREGS: origin = 0x7a, len = 0x2 52 D_DARAM03: origin = 0x80, len = 0x4f80 [all …]
|