Home
last modified time | relevance | path

Searched refs:_path (Results 1 – 25 of 67) sorted by relevance

123

/third_party/boost/libs/regex/src/
Dfileiter.cpp423 _root = _path = 0; in file_iterator()
430 _path = new char[MAX_PATH]; in file_iterator()
431 BOOST_REGEX_NOEH_ASSERT(_path) in file_iterator()
432 ptr = _path; in file_iterator()
433 *_path = 0; in file_iterator()
444 delete[] _path; in file_iterator()
453 _root = _path = 0; in file_iterator()
460 _path = new char[MAX_PATH]; in file_iterator()
461 BOOST_REGEX_NOEH_ASSERT(_path) in file_iterator()
469 …BOOST_REGEX_DETAIL_NS::overflow_error_if_not_zero(BOOST_REGEX_DETAIL_NS::strcpy_s(_path, MAX_PATH,… in file_iterator()
[all …]
/third_party/typescript/tests/baselines/reference/
DdynamicImportWithNestedThis_es5.symbols6 private _path = './other';
7 >_path : Symbol(C._path, Decl(dynamicImportWithNestedThis_es5.ts, 1, 9))
12 return import(this._path);
13 >this._path : Symbol(C._path, Decl(dynamicImportWithNestedThis_es5.ts, 1, 9))
15 >_path : Symbol(C._path, Decl(dynamicImportWithNestedThis_es5.ts, 1, 9))
DdynamicImportWithNestedThis_es2015.symbols6 private _path = './other';
7 >_path : Symbol(C._path, Decl(dynamicImportWithNestedThis_es2015.ts, 1, 9))
12 return import(this._path);
13 >this._path : Symbol(C._path, Decl(dynamicImportWithNestedThis_es2015.ts, 1, 9))
15 >_path : Symbol(C._path, Decl(dynamicImportWithNestedThis_es2015.ts, 1, 9))
DdynamicImportWithNestedThis_es2015.types6 private _path = './other';
7 >_path : string
13 return import(this._path);
14 >import(this._path) : Promise<any>
15 >this._path : string
17 >_path : string
DdynamicImportWithNestedThis_es5.types6 private _path = './other';
7 >_path : string
13 return import(this._path);
14 >import(this._path) : Promise<any>
15 >this._path : string
17 >_path : string
DdynamicImportWithNestedThis_es5.js4 private _path = './other'; field in C
7 return import(this._path);
29 this._path = './other';
33 …return _a = this._path, __syncRequire ? Promise.resolve().then(function () { return require(_a); }…
DdynamicImportWithNestedThis_es2015.js4 private _path = './other'; field in C
7 return import(this._path);
29 this._path = './other';
33 …return _a = this._path, __syncRequire ? Promise.resolve().then(() => require(_a)) : new Promise((r…
/third_party/flutter/skia/modules/canvaskit/htmlcanvas/
Dpath2d.js145 this._path = null;
147 this._path = CanvasKit.MakePathFromSVGString(path);
149 this._path = path._getPath().copy();
151 this._path = new CanvasKit.SkPath();
155 return this._path;
165 this._path.addPath(path2d._getPath(), [transform.a, transform.c, transform.e,
170 arc(this._path, x, y, radius, startAngle, endAngle, ccw);
174 arcTo(this._path, x1, y1, x2, y2, radius);
178 bezierCurveTo(this._path, cp1x, cp1y, cp2x, cp2y, x, y);
182 closePath(this._path);
[all …]
/third_party/skia/modules/canvaskit/htmlcanvas/
Dpath2d.js146 this._path = null;
148 this._path = CanvasKit.Path.MakeFromSVGString(path);
150 this._path = path._getPath().copy();
152 this._path = new CanvasKit.Path();
156 return this._path;
166 this._path.addPath(path2d._getPath(), [transform.a, transform.c, transform.e,
171 arc(this._path, x, y, radius, startAngle, endAngle, ccw);
175 arcTo(this._path, x1, y1, x2, y2, radius);
179 bezierCurveTo(this._path, cp1x, cp1y, cp2x, cp2y, x, y);
183 closePath(this._path);
[all …]
/third_party/iowow/src/platform/
Diwp.c143 char _path[PATH_MAX]; local
148 if (len > sizeof(_path) - 1) {
152 strcpy(_path, path);
155 for (p = _path + 1; *p; p++) {
160 if (_mkdir(_path) != 0) {
162 if (mkdir(_path, S_IRWXU) != 0) {
172 if (_mkdir(_path) != 0) {
174 if (mkdir(_path, S_IRWXU) != 0) {
/third_party/node/deps/npm/node_modules/make-fetch-happen/
Dcache.js33 this._path = path
42 return cacache.get.info(this._path, key).then(info => {
44 this._path, info.integrity, opts
55 addCacheHeaders(resHeaders, this._path, key, info.integrity, info.time)
64 const cachePath = this._path
124 return cacache.get.info(this._path, ckey).then(info => {
128 response.headers, this._path, ckey, info.integrity, info.time
132 cacache.get.stream.byDigest(this._path, info.integrity, cacheOpts),
133 cacache.put.stream(this._path, cacheKey(req), cacheOpts),
142 const cachePath = this._path
[all …]
/third_party/python/Lib/
Dmailbox.py39 self._path = os.path.abspath(os.path.expanduser(path))
276 'tmp': os.path.join(self._path, 'tmp'),
277 'new': os.path.join(self._path, 'new'),
278 'cur': os.path.join(self._path, 'cur'),
280 if not os.path.exists(self._path):
282 os.mkdir(self._path, 0o700)
286 raise NoSuchMailboxError(self._path)
311 dest = os.path.join(self._path, subdir, uniq + suffix)
336 os.remove(os.path.join(self._path, self._lookup(key)))
363 tmp_path = os.path.join(self._path, temp_subpath)
[all …]
/third_party/node/deps/npm/node_modules/fs-minipass/
Dindex.js28 const _path = Symbol('_path') constant
51 this[_path] = path
66 get path () { return this[_path] }
77 fs.open(this[_path], 'r', (er, fd) => this[_onopen](er, fd))
163 this[_onopen](null, fs.openSync(this[_path], 'r'))
212 this[_path] = path
229 get path () { return this[_path] }
238 fs.open(this[_path], this[_flags], this[_mode],
343 fd = fs.openSync(this[_path], this[_flags], this[_mode])
/third_party/python/Lib/test/
Dtest_mailbox.py55 self._path = os_helper.TESTFN
56 self._delete_recursively(self._path)
57 self._box = self._factory(self._path)
61 self._delete_recursively(self._path)
235 self._box = self._factory(self._path)
529 self._box = self._factory(self._path)
550 return self._path + '.lock'
599 self.assertEqual(os.listdir(os.path.join(self._path, 'tmp')), [])
607 self.assertTrue(os.path.exists(os.path.join(self._path, 'cur', '%s%sfoo' %
654 box = mailbox.Maildir(self._path, factory=FakeMessage)
[all …]
/third_party/typescript/tests/cases/compiler/
DdynamicImportWithNestedThis_es5.ts6 private _path = './other'; property in C
9 return import(this._path);
DdynamicImportWithNestedThis_es2015.ts6 private _path = './other'; property in C
9 return import(this._path);
/third_party/grpc/src/objective-c/examples/InterceptorSample/InterceptorSample/
DCacheInterceptor.m23 NSString *_path;
27 @synthesize path = _path;
32 _path = [path copy];
39 return [[RequestCacheEntry allocWithZone:zone] initWithPath:_path message:_message];
45 return ([_path isEqualToString:rhs.path] && [_message isEqual:rhs.message]);
49 return _path.hash ^ _message.hash;
60 _path = [path copy];
/third_party/flutter/flutter/packages/flutter/lib/src/gestures/
Dhit_test.dart75 : _path = <HitTestEntry>[],
85 : _path = result._path,
93 Iterable<HitTestEntry> get path => _path;
94 final List<HitTestEntry> _path;
106 _path.add(entry);
178 String toString() => 'HitTestResult(${_path.isEmpty ? "<empty path>" : _path.join(", ")})';
/third_party/flutter/skia/tools/skpbench/
Dskpbench.py90 import _adb_path as _path namespace
91 _path.init(FLAGS.device_serial, FLAGS.adb_binary)
93 import _os_path as _path namespace
212 pngfile = _path.join(FLAGS.write_path, self.config,
213 _path.basename(self.src) + '.png')
329 srcs = _path.find_skps(FLAGS.srcs)
/third_party/skia/tools/skpbench/
Dskpbench.py104 import _adb_path as _path namespace
105 _path.init(FLAGS.device_serial, FLAGS.adb_binary)
107 import _os_path as _path namespace
234 pngfile = _path.join(FLAGS.write_path, self.config,
235 _path.basename(self.src) + '.png')
351 srcs = _path.find_skps(FLAGS.srcs)
/third_party/libwebsockets/lib/secure-streams/cpp/
DlssFile.cxx116 lssFile::lssFile(lws_ctx_t ctx, std::string uri, std::string _path, in lssFile() argument
120 path = _path; in lssFile()
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/compositor/
Dlayer.dart298 final ui.Path _path;
305 this._path,
313 ElevationShadow.computeShadowRect(_path.getBounds(), _elevation);
321 drawShadow(paintContext.canvas, _path, _shadowColor, _elevation,
327 paintContext.canvas.drawPath(_path, paint);
333 paintContext.canvas.clipPath(_path);
339 paintContext.canvas.clipPath(_path);
342 paintContext.canvas.clipPath(_path);
/third_party/skia/demos.skia.org/demos/textedit/
Dtextapi_utils.js28 _path: null, // only use x,top,bottom if path is null
43 if (this._path) {
44 this._path.delete();
46 this._path = path;
49 if (this._path) {
50 canvas.drawPath(this._path, this._path_paint);
54 if (this._path) {
/third_party/flatbuffers/dart/lib/src/
Dreference.dart13 final String _path;
18 Reference._(this._buffer, this._offset, this._parentWidth, int packedType, this._path) {
126 … throw ArgumentError('Key: [$key] is not applicable on: $_path of: $_valueType length: $length');
129 …= Reference._(_buffer, elementOffset, BitWidthUtil.fromByteWidth(_byteWidth), 0, "$_path[$index]");
140 …ce._(_buffer, elementOffset, BitWidthUtil.fromByteWidth(_byteWidth), packedType, "$_path[$index]");
148 throw ArgumentError('Key: [$key] is not applicable on: $_path of: $_valueType');
360 …rence._(_buffer, elementOffset, BitWidthUtil.fromByteWidth(_byteWidth), packedType, "$_path/$key");
367 …e._(_buffer, elementOffset, BitWidthUtil.fromByteWidth(_byteWidth), packedType, "$_path/[$index]");
/third_party/boost/boost/regex/v4/
Dfileiter.hpp387 char* _path; member in boost::BOOST_REGEX_DETAIL_NS::file_iterator
404 const char* path()const { return _path; } in path()
457 char* _path; member in boost::BOOST_REGEX_DETAIL_NS::directory_iterator
475 const char* path()const { return _path; } in path()

123