Home
last modified time | relevance | path

Searched refs:_parent (Results 1 – 25 of 56) sorted by relevance

123

/third_party/python/Lib/xml/sax/
Dsaxutils.py237 self._parent = parent
307 self._parent.setContentHandler(self)
308 self._parent.setErrorHandler(self)
309 self._parent.setEntityResolver(self)
310 self._parent.setDTDHandler(self)
311 self._parent.parse(source)
314 self._parent.setLocale(locale)
317 return self._parent.getFeature(name)
320 self._parent.setFeature(name, state)
323 return self._parent.getProperty(name)
[all …]
/third_party/typescript/src/harness/
DcollectionsImpl.ts252 private _parent: Metadata | undefined; property in collections.Metadata
259 this._parent = parent;
264 … if (this._size === -1 || (this._parent && this._parent._version !== this._parentVersion)) {
268 if (this._parent) {
269 this._parentVersion = this._parent._version;
276 return this._parent;
307 …this._map = Object.create(this._parent ? this._parent._map : null); // eslint-disable-line no-null…
/third_party/python/Lib/multiprocessing/dummy/
D__init__.py41 self._parent = current_process()
44 if self._parent is not current_process():
47 self._parent, current_process()))
49 if hasattr(self._parent, '_children'):
50 self._parent._children[self] = None
/third_party/flutter/flutter/packages/flutter/lib/src/animation/
Danimations.dart173 _parent = animation;
174 if (_parent == null) {
187 Animation<double> get parent => _parent;
188 Animation<double> _parent;
190 if (value == _parent)
192 if (_parent != null) {
193 _status = _parent.status;
194 _value = _parent.value;
198 _parent = value;
199 if (_parent != null) {
[all …]
Dtween.dart101 _ChainedEvaluation(this._parent, this._evaluatable);
103 final Animatable<double> _parent;
108 return _evaluatable.transform(_parent.transform(t));
113 return '$_parent\u27A9$_evaluatable';
/third_party/flutter/flutter/packages/flutter_tools/lib/src/base/
Dcontext.dart49 this._parent,
56 final AppContext _parent;
112 if (value == null && _parent != null) {
113 value = _parent.get<T>();
123 if (value == null && _parent != null)
124 value = _parent[type];
173 if (ctx._parent != null)
175 ctx = ctx._parent;
/third_party/flutter/flutter/packages/flutter/lib/src/foundation/
Dnode.dart112 AbstractNode get parent => _parent;
113 AbstractNode _parent;
122 assert(child._parent == null);
130 child._parent = this;
143 assert(child._parent == this);
145 child._parent = null;
/third_party/node/deps/npm/node_modules/bluebird/js/release/
Ddebuggability.js418 if (ignoreSelf) trace = trace._parent;
733 this._parent = parent;
750 node = node._parent;
764 nodes[index - 1]._parent = undefined;
767 nodes[i]._parent = undefined;
772 cycleEdgeNode._parent = nodes[index + 1];
773 cycleEdgeNode._parent.uncycle();
775 cycleEdgeNode._parent._length + 1;
777 cycleEdgeNode._parent = undefined;
800 trace = trace._parent;
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/tree_util/
DIntermTraverse.h223 NodeInsertMultipleEntry(TIntermBlock *_parent, in NodeInsertMultipleEntry()
227 : parent(_parent), in NodeInsertMultipleEntry()
245 NodeUpdateEntry(TIntermNode *_parent, in NodeUpdateEntry()
249 : parent(_parent), in NodeUpdateEntry()
/third_party/iowow/src/utils/
Diwavl.h362 iwavl_first_in_postorder(root), *_parent; \
366 && (_parent = iwavl_get_parent(_cur), 1); \
367 _cur = iwavl_next_in_postorder(_cur, _parent))
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_util/
DIntermTraverse.h278 NodeInsertMultipleEntry(TIntermBlock *_parent, in NodeInsertMultipleEntry()
282 : parent(_parent), in NodeInsertMultipleEntry()
300 NodeUpdateEntry(TIntermNode *_parent, in NodeUpdateEntry()
304 : parent(_parent), in NodeUpdateEntry()
/third_party/node/deps/npm/node_modules/har-validator/node_modules/json-schema-traverse/
DREADME.md55 - _parent JSON pointer_: from the root schema to the parent schema object (see below)
56 - _parent keyword_: the keyword inside which this schema appears (e.g. `properties`, `anyOf`, etc.)
57 - _parent schema_: not necessarily parent object/array; in the example above the parent schema for …
/third_party/protobuf/python/google/protobuf/internal/
Dcontainers.py686 self._parent = parent
691 if not self._parent:
694 if self._index >= len(self._parent):
702 return self._parent._internal_get(self._index)._field_number
708 return self._parent._internal_get(self._index)._wire_type
714 return self._parent._internal_get(self._index)._data
/third_party/flutter/flutter/packages/flutter/test/widgets/
Dlinked_scroll_view_test.dart25 ScrollController _parent;
28 if (_parent != null) {
29 positions.forEach(_parent.detach);
31 _parent = newParent;
32 if (_parent != null) {
33 positions.forEach(_parent.attach);
43 _parent?.attach(position);
49 _parent?.detach(position);
54 if (_parent != null) {
55 positions.forEach(_parent.detach);
/third_party/python/Lib/unittest/
Dmock.py370 _parent = parent
371 while _parent is not None:
374 if _parent is value:
376 _parent = _parent._mock_new_parent
678 _parent = self._mock_new_parent
685 while _parent is not None:
686 last = _parent
688 _name_list.append(_parent._mock_new_name + dot)
690 if _parent._mock_new_name == '()':
693 _parent = _parent._mock_new_parent
[all …]
/third_party/python/Tools/c-analyzer/c_parser/parser/
D_compound_decl_body.py127 def parse_enum_body(source, _anon_name, _parent): argument
148 yield srcinfo.resolve('field', data, name, _parent)
/third_party/node/lib/
D_tls_wrap.js537 if (this._parent[name])
538 return this._parent[name].apply(this._parent, args);
567 if (this._parentWrap && this._parentWrap._handle === this._parent) {
571 return this._parent.close(done);
601 res._parent = handle; // C++ "wrap" object: TCPWrap, JSStream, ...
801 this._parent = socket;
/third_party/jsframework/runtime/main/model/
Dindex.ts241 return this._parent;
590 public get _parent() { method in Vm
876 const parent = vm._parent;
/third_party/node/test/parallel/
Dtest-tls-socket-close.js67 if (tlsSocket._handle._parent.bytesRead === 0) {
/third_party/python/Tools/c-analyzer/c_analyzer/
Danalyze.py201 _file = _name = _data = _parent = None
202 super().__init__(_file, _name, _data, _parent, _shortkey='<skipped>')
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dfocus_manager.dart87 _node._parent?._removeChild(_node);
454 FocusNode get parent => _parent;
455 FocusNode _parent;
502 FocusNode parent = _parent;
505 parent = parent._parent;
685 assert(node._parent == this);
690 node._parent = null;
707 if (child._parent == this) {
716 child._parent?._removeChild(child);
718 child._parent = this;
[all …]
Dframework.dart1735 assert(child._parent == element);
1765 assert(element._parent == null);
1774 assert(element._parent == null);
2536 assert(root._parent == null);
2603 Element _parent;
2707 current = current._parent;
2902 assert(child._parent == null);
2920 assert(_parent == null);
2925 _parent = parent;
2927 _depth = _parent != null ? _parent.depth + 1 : 1;
[all …]
Dnested_scroll_view.dart469 _NestedScrollCoordinator(this._state, this._parent, this._onHasScrolledBodyChanged) {
470 final double initialScrollOffset = _parent?.initialScrollOffset ?? 0.0;
476 ScrollController _parent;
833 _parent = value;
838 _outerPosition?.setParent(_parent ?? PrimaryScrollController.of(_state.context));
945 ScrollController _parent;
948 _parent?.detach(this);
949 _parent = value;
950 _parent?.attach(this);
1142 _parent?.detach(this);
/third_party/node/deps/npm/lib/
Dls.js312 dep._parent = markPkg
330 var parent = dep._parent
333 parent = parent._parent
/third_party/node/deps/npm/node_modules/bluebird/js/browser/
Dbluebird.core.min.js30_parent),void 0!==n)n.attachExtraTrace(t);else if(!t.__stackCleaned__){var r=k(t);H.notEnumerableP…

123