Home
last modified time | relevance | path

Searched full:origin (Results 1 – 25 of 4031) sorted by relevance

12345678910>>...162

/third_party/glib/gio/
Dgemblem.c41 * Currently, only metainformation about the emblem's origin is
52 GEmblemOrigin origin; member
85 g_value_set_enum (value, emblem->origin); in G_DEFINE_TYPE_WITH_CODE()
109 emblem->origin = g_value_get_enum (value); in g_emblem_set_property()
140 g_param_spec_enum ("origin", in g_emblem_class_init()
141 P_("GEmblem’s origin"), in g_emblem_class_init()
142 … P_("Tells which origin the emblem is derived from"), in g_emblem_class_init()
183 emblem->origin = G_EMBLEM_ORIGIN_UNKNOWN; in g_emblem_new()
191 * @origin: a GEmblemOrigin enum defining the emblem's origin
201 GEmblemOrigin origin) in g_emblem_new_with_origin() argument
[all …]
/third_party/node/test/fixtures/wpt/FileAPI/url/
Durl-format.any.js32 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 …]
Dunicode-origin.sub.html3 <title>FileAPI Test: Verify origin of Blob URL</title>
14 'Origin should be ascii rather than unicode');
15 assert_equals(new URL(url).origin, e.origin,
16 'Origin of URL should match origin of frame');
20 … = '{{location[scheme]}}://{{domains[天気の良い日]}}:{{location[port]}}/FileAPI/support/url-origin.html';
22 }, 'Verify serialization of non-ascii origin in Blob URLs');
/third_party/flutter/engine/flutter/tools/licenses/lib/
Dlicenses.dart119 String origin,
124 …sult = _registry.putIfAbsent(body, () => UniqueLicense._(body, type, origin: origin, yesWeKnowWhat…
135 String origin
139 … License result = _registry.putIfAbsent(body, () => TemplateLicense._(body, type, origin: origin));
150 String origin
154 …l License result = _registry.putIfAbsent(body, () => MessageLicense._(body, type, origin: origin));
163 factory License.blank(String body, LicenseType type, { String origin }) {
164 … result = _registry.putIfAbsent(body, () => BlankLicense._(_reformat(body), type, origin: origin));
180 String origin
191 return TemplateLicense._(body, type, origin: origin);
[all …]
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/
Dextend.inl9 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/
DClassAndModuleThatMergeWithStaticVariableAndExportedVarThatShareAName.errors.txt1 …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 …]
DClassAndModuleThatMergeWithStaticFunctionAndExportedFunctionThatShareAName.errors.txt1 …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 …]
DClassAndModuleThatMergeWithStaticFunctionAndExportedFunctionThatShareAName.js5 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;
DClassAndModuleThatMergeWithStaticVariableAndExportedVarThatShareAName.symbols9 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…
DClassAndModuleThatMergeWithStaticVariableAndNonExportedVarThatShareAName.symbols9 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…
DClassAndModuleThatMergeWithStaticFunctionAndExportedFunctionThatShareAName.symbols9 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…
DClassAndModuleThatMergeWithStaticFunctionAndNonExportedFunctionThatShareAName.symbols9 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…
DunwitnessedTypeParameterVariance.types5 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
DClassAndModuleThatMergeWithStaticVariableAndExportedVarThatShareAName.types9 static Origin: Point = { x: 0, y: 0 };
10 >Origin : Point
21 export var Origin = ""; //expected duplicate identifier error
22 >Origin : string
37 static Origin: Point = { x: 0, y: 0 };
38 >Origin : Point
49 export var Origin = ""; //expected duplicate identifier error
50 >Origin : string
/third_party/gn/src/gn/
Dinput_conversion.cc34 // 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/node/test/parallel/
Dtest-http2-origin.js33 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 …]
Dtest-http2-altsvc.js18 // 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/test/fixtures/wpt/url/resources/
Durltestdata.json7 "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/cef/patch/patches/
Dbrowser_security_policy_1081397.patch28 // Calculate an approximation of the origin. The sandbox/csp are ignored.
29 url::Origin origin = GetOriginForURLLoaderFactoryUnchecked(this);
30 + if (!origin.GetURL().IsStandard()) {
31 + // Always return an opaque origin for non-standard URLs. Otherwise, the
34 + return origin.DeriveNewOpaqueOrigin();
38 // See https://html.spec.whatwg.org/#sandboxed-origin-browsing-context-flag
43 + // Calculate an approximation of the origin. The sandbox/csp are ignored.
44 + url::Origin unchecked_origin = GetOriginForURLLoaderFactoryUnchecked(this);
46 + // Always return an opaque origin for non-standard URLs. Otherwise, the
52 url::Origin origin = GetOriginForURLLoaderFactoryWithoutFinalFrameHost(
/third_party/python/Lib/test/test_importlib/
Dtest_spec.py74 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/cef/tests/cefclient/resources/
Dwebsocket.html9 // Match the secure state of the current origin.
10 var origin = location.origin;
11 if (origin.indexOf('http://') == 0) {
12 origin = origin.replace('http://', 'ws://');
13 } else if (origin.indexOf('https://') == 0) {
14 origin = origin.replace('https://', 'wss://');
16 origin = '';
19 if (origin.length > 0)
20 document.getElementById('server').value = origin;
/third_party/skia/src/gpu/
DGrRecordingContextPriv.cpp29 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/flutter/flutter/packages/flutter/lib/src/material/
Dcheckbox.dart263 // The square outer bounds of the checkbox at t, with the specified origin.
267 RRect _outerRectAt(Offset origin, double t) {
270 final Rect rect = Rect.fromLTWH(origin.dx + inset, origin.dy + inset, size, size);
299 void _drawCheck(Canvas canvas, Offset origin, double t, Paint paint) {
310 path.moveTo(origin.dx + start.dx, origin.dy + start.dy);
311 path.lineTo(origin.dx + drawMid.dx, origin.dy + drawMid.dy);
315 path.moveTo(origin.dx + start.dx, origin.dy + start.dy);
316 path.lineTo(origin.dx + mid.dx, origin.dy + mid.dy);
317 path.lineTo(origin.dx + drawEnd.dx, origin.dy + drawEnd.dy);
322 void _drawDash(Canvas canvas, Offset origin, double t, Paint paint) {
[all …]
/third_party/skia/docs/examples/
DPoint_length_2.cpp11 const SkPoint origin = {30, 140};
13 canvas->drawLine(origin, point, paint);
15 SkScalar angle = SkScalarATan2((point.fY - origin.fY), point.fX - origin.fX);
16 canvas->rotate(angle * 180 / SK_ScalarPI, origin.fX, origin.fY);
19 canvas->drawString(length, origin.fX + 25, origin.fY - 4, paint);
/third_party/flutter/skia/docs/examples/
DPoint_length_2.cpp11 const SkPoint origin = {30, 140};
13 canvas->drawLine(origin, point, paint);
15 SkScalar angle = SkScalarATan2((point.fY - origin.fY), point.fX - origin.fX);
16 canvas->rotate(angle * 180 / SK_ScalarPI, origin.fX, origin.fY);
19 canvas->drawString(length, origin.fX + 25, origin.fY - 4, paint);

12345678910>>...162