| /third_party/glib/gio/ |
| D | gemblem.c | 41 * 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/flutter/engine/flutter/tools/licenses/lib/ |
| D | licenses.dart | 119 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/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 | 19 // Origin may be specified by string, URL object, or object with an 20 // origin property. For string and URL object, origin is guaranteed 21 // to be an ASCII serialized origin. For object with an origin 25 session.altsvc('h2=":8000"', { origin: 'https://example.org:8111' }); property 78 { origin: 'null' }, 79 { origin: '' } 86 message: 'HTTP/2 ALTSVC frames require a valid origin' 91 // Arguments + origin are too long for an ALTSVC frame 113 client.on('altsvc', common.mustCall((alt, origin, stream) => { 117 assert.strictEqual(origin, 'https://example.org:8111'); [all …]
|
| /third_party/gn/src/gn/ |
| D | input_conversion.cc | 35 // Sets the origin of the value and any nested values with the given node. 39 const ParseNode* origin, in ParseValueOrScope() argument 42 // so the origin parse nodes for the values will be preserved. in ParseValueOrScope() 50 if (origin) { in ParseValueOrScope() 56 origin->GetRange().begin().Describe(true) + in ParseValueOrScope() 89 result = Value(origin, std::move(scope)); in ParseValueOrScope() 94 Value ParseList(const std::string& input, const ParseNode* origin, Err* err) { in ParseList() argument 95 Value ret(origin, Value::LIST); in ParseList() 107 ret.list_value().push_back(Value(origin, line)); in ParseList() 123 const ParseNode* origin, in ParseJSONValue() argument [all …]
|
| D | value.cc | 17 Value::Value(const ParseNode* origin, Type t) : type_(t), origin_(origin) { in Value() argument 39 Value::Value(const ParseNode* origin, bool bool_val) in Value() argument 40 : type_(BOOLEAN), origin_(origin), boolean_value_(bool_val) {} in Value() 42 Value::Value(const ParseNode* origin, int64_t int_val) in Value() argument 43 : type_(INTEGER), origin_(origin), int_value_(int_val) {} in Value() 45 Value::Value(const ParseNode* origin, std::string str_val) in Value() argument 46 : type_(STRING), origin_(origin), string_value_(std::move(str_val)) {} in Value() 48 Value::Value(const ParseNode* origin, const char* str_val) in Value() argument 49 : type_(STRING), origin_(origin), string_value_(str_val) {} in Value() 51 Value::Value(const ParseNode* origin, std::unique_ptr<Scope> scope) in Value() argument [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/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/flutter/flutter/packages/flutter/lib/src/material/ |
| D | checkbox.dart | 263 // 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/flutter/skia/docs/examples/ |
| D | Point_length_2.cpp | 11 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);
|
| D | Point_distanceToOrigin.cpp | 11 const SkPoint origin = {0, 0}; 14 canvas->drawLine(origin, point, paint); 16 SkScalar angle = SkScalarATan2((point.fY - origin.fY), point.fX - origin.fX); 17 canvas->rotate(angle * 180 / SK_ScalarPI, origin.fX, origin.fY); 20 canvas->drawString(distance, origin.fX + 25, origin.fY - 4, paint);
|
| D | Point_Length.cpp | 11 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/node/tools/node_modules/eslint/node_modules/vfile-message/ |
| D | index.js | 29 function VMessage(reason, position, origin) { argument 35 origin = position 39 parts = parseOrigin(origin) 78 function parseOrigin(origin) { argument 82 if (typeof origin === 'string') { 83 index = origin.indexOf(':') 86 result[1] = origin 88 result[0] = origin.slice(0, index) 89 result[1] = origin.slice(index + 1)
|
| /third_party/e2fsprogs/lib/ext2fs/ |
| D | llseek.c | 47 extern long long llseek (int fd, long long offset, int origin); 72 unsigned int, origin) in _syscall5() argument 75 static ext2_loff_t my_llseek (int fd, ext2_loff_t offset, int origin) in _syscall5() 86 &result, origin); in _syscall5() 95 ext2_loff_t ext2fs_llseek (int fd, ext2_loff_t offset, int origin) in ext2fs_llseek() argument 98 return my_llseek (fd, offset, origin); in ext2fs_llseek() 106 result = my_llseek (fd, offset, origin); in ext2fs_llseek() 115 return lseek(fd, (off_t) offset, origin); in ext2fs_llseek() 129 ext2_loff_t ext2fs_llseek (int fd, ext2_loff_t offset, int origin) in ext2fs_llseek() argument 132 return lseek64 (fd, offset, origin); in ext2fs_llseek() [all …]
|
| /third_party/ltp/testcases/kernel/fs/scsi/ltpscsi/ |
| D | llseek.c | 54 unsigned long ol, llse_loff_t * result, unsigned int origin) in _llseek() argument 61 unsigned long ol, llse_loff_t * result, unsigned int origin) in _llseek() argument 63 return syscall(__NR_llseek, fd, oh, ol, result, origin); in _llseek() 68 unsigned int origin) in my_llseek() argument 75 &result, origin); in my_llseek() 82 unsigned int origin) in llse_llseek() argument 88 result = my_llseek(fd, offset, origin); in llse_llseek() 104 return lseek(fd, (off_t) offset, origin); in llse_llseek() 113 unsigned int origin) in llse_llseek() argument 120 return lseek(fd, (off_t) offset, origin); in llse_llseek()
|
| /third_party/flutter/skia/src/core/ |
| D | SkPixmapPriv.h | 27 * Decode an image and then copy into dst, applying origin. 30 * applying the origin. 31 * @param origin SkEncodedOrigin to apply to the raw pixels. 33 * applying the origin. 35 static bool Orient(const SkPixmap& dst, SkEncodedOrigin origin, in Orient() argument 39 if (origin != kTopLeft_SkEncodedOrigin) { in Orient() 41 if (ShouldSwapWidthHeight(origin)) { in Orient() 53 return Orient(dst, *tmp, origin); in Orient()
|
| /third_party/flutter/skia/src/gpu/ |
| D | GrTextureRenderTargetProxy.cpp | 25 GrSurfaceOrigin origin, in GrTextureRenderTargetProxy() argument 34 : GrSurfaceProxy(format, desc, GrRenderable::kYes, origin, texSwizzle, fit, budgeted, in GrTextureRenderTargetProxy() 37 , GrRenderTargetProxy(caps, format, desc, sampleCnt, origin, texSwizzle, outSwizzle, fit, in GrTextureRenderTargetProxy() 39 , GrTextureProxy(format, desc, origin, mipMapped, mipMapsStatus, texSwizzle, fit, budgeted, in GrTextureRenderTargetProxy() 48 GrSurfaceOrigin origin, in GrTextureRenderTargetProxy() argument 57 : GrSurfaceProxy(std::move(callback), lazyType, format, desc, GrRenderable::kYes, origin, in GrTextureRenderTargetProxy() 61 , GrRenderTargetProxy(LazyInstantiateCallback(), lazyType, format, desc, sampleCnt, origin, in GrTextureRenderTargetProxy() 64 , GrTextureProxy(LazyInstantiateCallback(), lazyType, format, desc, origin, mipMapped, in GrTextureRenderTargetProxy() 71 GrSurfaceOrigin origin, in GrTextureRenderTargetProxy() argument 74 : GrSurfaceProxy(surf, origin, texSwizzle, SkBackingFit::kExact) in GrTextureRenderTargetProxy() [all …]
|
| D | GrGlyph.h | 57 SkRect destRect(SkPoint origin) { in destRect() 59 SkIntToScalar(fBounds.fLeft) + origin.x(), in destRect() 60 SkIntToScalar(fBounds.fTop) + origin.y(), in destRect() 65 SkRect destRect(SkPoint origin, SkScalar textScale) { in destRect() 68 SkIntToScalar(fBounds.fLeft) * textScale + origin.x(), in destRect() 69 SkIntToScalar(fBounds.fTop) * textScale + origin.y(), in destRect() 74 (SkIntToScalar(fBounds.fLeft) + SK_DistanceFieldInset) * textScale + origin.x(), in destRect() 75 (SkIntToScalar(fBounds.fTop) + SK_DistanceFieldInset) * textScale + origin.y(), in destRect()
|
| /third_party/node/test/fixtures/wpt/hr-time/ |
| D | unload-manual.html | 4 <title>time origin value manual test</title> 5 <link rel="help" href="https://w3c.github.io/hr-time/#time-origin-1"> 21 const t = async_test("hr-time time origin"); 41 "Document in reused window's time origin should be time of close of pop-up box." 45 "Document in reused window's time origin should be time of close of pop-up box." 49 "Time origin during unload event should match that of rest of document." 53 "Time origin during unload event should match that of rest of document." 57 "Time origin during unload event should match that of rest of document." 65 … test validates the behavior of <code>performance.now()</code> with respect to its time origin.</p>
|
| /third_party/boost/boost/geometry/formulas/ |
| D | geographic.hpp | 177 // the origin is the origin of the coordinate system in projected_to_surface() 205 inline bool projected_to_surface(Point3d const& origin, Point3d const& direction, Point3d & result1… in projected_to_surface() argument 219 coord_t const ox = get<0>(origin); in projected_to_surface() 220 coord_t const oy = get<1>(origin); in projected_to_surface() 221 coord_t const oz = get<2>(origin); in projected_to_surface() 244 // result = origin + direction * t in projected_to_surface() 252 add_point(result1, origin); in projected_to_surface() 257 add_point(result2, origin); in projected_to_surface() 286 // the opposite side of the globe is at the same distance from the origin in great_elliptic_intersection() 309 static inline int elliptic_side_value(Point3d1 const& origin, Point3d1 const& norm, Point3d2 const&… in elliptic_side_value() argument [all …]
|
| /third_party/node/test/sequential/ |
| D | test-inspector-contexts.js | 27 const { name, origin, auxData } = contextCreated.params.context; 42 assert.strictEqual(origin, '', 59 const { id, name, origin, auxData } = contextCreated.params.context; 62 assert.strictEqual(origin, '', 87 contextOrigin: 'https://origin.example' 91 const { name, origin, auxData } = contextCreated.params.context; 94 assert.strictEqual(origin, 'https://origin.example', 114 vm.createContext({}, { origin: 'https://nodejs.org' }); property 117 const { name, origin, auxData } = contextCreated.params.context; 120 assert.strictEqual(origin, 'https://nodejs.org',
|
| /third_party/flutter/skia/experimental/documentation/ |
| D | gerrit.md | 16 `origin` remote to point to point to googlesource. Advanced uses will note 17 that there is nothing special about the string `origin` and that you could call 20 git remote set-url origin 'https://skia.googlesource.com/skia.git' 39 git checkout -b TOPIC -t origin/master 57 git push origin @:refs/for/master 64 git push origin @:refs/for/chrome/m57 89 git push origin @:refs/for/master 94 git push origin @:refs/for/master%m=$M 103 git push origin @:refs/for/master%l=Commit-Queue+1,m=$M 121 git config alias.gerrit-push 'push origin @:refs/for/master' [all …]
|
| /third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/contrib/minizip/ |
| D | ioapi.c | 21 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin) argument 25 #define FSEEKO_FUNC(stream, offset, origin) fseeko64(stream, offset, origin) argument 41 …ll_zseek64 (const zlib_filefunc64_32_def* pfilefunc,voidpf filestream, ZPOS64_T offset, int origin) in call_zseek64() argument 44 …*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset,origin); in call_zseek64() 51 …urn (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,origin); in call_zseek64() 91 …ong ZCALLBACK fseek64_file_func OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin)); 161 static long ZCALLBACK fseek_file_func (voidpf opaque, voidpf stream, uLong offset, int origin) in fseek_file_func() argument 165 switch (origin) in fseek_file_func() 184 static long ZCALLBACK fseek64_file_func (voidpf opaque, voidpf stream, ZPOS64_T offset, int origin) in fseek64_file_func() argument 188 switch (origin) in fseek64_file_func()
|
| /third_party/boost/libs/beast/test/extern/zlib-1.2.11/contrib/minizip/ |
| D | ioapi.c | 21 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin) argument 25 #define FSEEKO_FUNC(stream, offset, origin) fseeko64(stream, offset, origin) argument 41 …ll_zseek64 (const zlib_filefunc64_32_def* pfilefunc,voidpf filestream, ZPOS64_T offset, int origin) in call_zseek64() argument 44 …*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset,origin); in call_zseek64() 51 …urn (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,origin); in call_zseek64() 91 …ong ZCALLBACK fseek64_file_func OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin)); 161 static long ZCALLBACK fseek_file_func (voidpf opaque, voidpf stream, uLong offset, int origin) in fseek_file_func() argument 165 switch (origin) in fseek_file_func() 184 static long ZCALLBACK fseek64_file_func (voidpf opaque, voidpf stream, ZPOS64_T offset, int origin) in fseek64_file_func() argument 188 switch (origin) in fseek64_file_func()
|
| /third_party/zlib/contrib/minizip/ |
| D | ioapi.c | 21 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin) argument 25 #define FSEEKO_FUNC(stream, offset, origin) fseeko64(stream, offset, origin) argument 41 …ll_zseek64 (const zlib_filefunc64_32_def* pfilefunc,voidpf filestream, ZPOS64_T offset, int origin) in call_zseek64() argument 44 …*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset,origin); in call_zseek64() 51 …urn (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,origin); in call_zseek64() 91 …ong ZCALLBACK fseek64_file_func OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin)); 161 static long ZCALLBACK fseek_file_func (voidpf opaque, voidpf stream, uLong offset, int origin) in fseek_file_func() argument 165 switch (origin) in fseek_file_func() 184 static long ZCALLBACK fseek64_file_func (voidpf opaque, voidpf stream, ZPOS64_T offset, int origin) in fseek64_file_func() argument 188 switch (origin) in fseek64_file_func()
|