/third_party/boost/boost/pending/ |
D | fibonacci_heap.hpp | 49 , _root(n) in fibonacci_heap() 74 if (_root == nil()) in push() 76 _root = _left[v] = _right[v] = v; in push() 81 size_type u = _left[_root]; in push() 83 _right[v] = _root; in push() 84 _left[_root] = _right[u] = v; in push() 85 if (_compare(d, _key[_root])) in push() 86 _root = v; in push() 90 T& top() { return _key[_root]; } in top() 91 const T& top() const { return _key[_root]; } in top() [all …]
|
/third_party/boost/libs/regex/src/ |
D | fileiter.cpp | 423 _root = _path = 0; in file_iterator() 428 _root = new char[MAX_PATH]; in file_iterator() 429 BOOST_REGEX_NOEH_ASSERT(_root) in file_iterator() 434 *_root = 0; in file_iterator() 443 delete[] _root; in file_iterator() 453 _root = _path = 0; in file_iterator() 458 _root = new char[MAX_PATH]; in file_iterator() 459 BOOST_REGEX_NOEH_ASSERT(_root) in file_iterator() 462 …BOOST_REGEX_DETAIL_NS::overflow_error_if_not_zero(BOOST_REGEX_DETAIL_NS::strcpy_s(_root, MAX_PATH,… in file_iterator() 463 ptr = _root; in file_iterator() [all …]
|
/third_party/node/deps/npm/node_modules/lodash._root/ |
D | README.md | 1 # lodash._root v3.0.1 10 $ npm i --save lodash._root 15 var root = require('lodash._root'); 18 See the [package source](https://github.com/lodash/lodash/blob/3.0.1-npm-packages/lodash._root) for…
|
/third_party/node/deps/npm/node_modules/har-validator/node_modules/ajv/lib/compile/ |
D | index.js | 81 function localCompile(_schema, _root, localRefs, baseId) { argument 82 var isRoot = !_root || (_root && _root.schema == _schema); 83 if (_root.schema != root.schema) 84 return compile.call(self, _schema, _root, localRefs, baseId); 93 root: _root, 157 validate.root = isRoot ? validate : _root;
|
/third_party/python/Lib/ |
D | pathlib.py | 516 self._root = path._root 520 if self._drv or self._root: 531 return self._pathcls._from_parsed_parts(self._drv, self._root, 594 self._root = root 602 self._root = root 616 self._drv, self._root, self._parts, drv, root, parts) 625 self._str = self._format_parsed_parts(self._drv, self._root, 705 anchor = self._drv + self._root 712 if len(parts) == (1 if (self._drv or self._root) else 0): 761 return self._from_parsed_parts(self._drv, self._root, [all …]
|
D | typing.py | 362 class _SpecialForm(_Final, _root=True): 405 class _LiteralSpecialForm(_SpecialForm, _root=True): 653 class ForwardRef(_Final, _root=True): 750 class TypeVar( _Final, _Immutable, _TypeVarLike, _root=True): 815 class ParamSpecArgs(_Final, _Immutable, _root=True): 834 class ParamSpecKwargs(_Final, _Immutable, _root=True): 853 class ParamSpec(_Final, _Immutable, _TypeVarLike, _root=True): 924 class _BaseGenericAlias(_Final, _root=True): 1001 class _GenericAlias(_BaseGenericAlias, _root=True): 1110 class _SpecialGenericAlias(_BaseGenericAlias, _root=True): [all …]
|
D | turtle.py | 3669 _root = None variable in _Screen 3679 if _Screen._root is None: 3680 _Screen._root = self._root = _Root() 3681 self._root.title(_Screen._title) 3682 self._root.ondestroy(self._destroy) 3690 self._root.setupcanvas(width, height, canvwidth, canvheight) 3691 _Screen._canvas = self._root._getcanvas() 3720 if not hasattr(self._root, "set_geometry"): 3722 sw = self._root.win_width() 3723 sh = self._root.win_height() [all …]
|
/third_party/python/Lib/xml/etree/ |
D | ElementTree.py | 538 self._root = element # first node 544 return self._root 554 self._root = element 580 self._root = parser._parse_whole(source) 581 return self._root 587 self._root = parser.close() 588 return self._root 603 return self._root.iter(tag) 625 return self._root.find(path, namespaces) 647 return self._root.findtext(path, default, namespaces) [all …]
|
/third_party/boost/boost/graph/ |
D | graph_as_tree.hpp | 34 graph_as_tree_base(Graph& g, Node root) : _g(g), _root(root) {} in graph_as_tree_base() 36 friend Node root(const Tree& t) { return t._root; } in root() 50 Node _root; member in boost::graph_as_tree_base
|
/third_party/flutter/skia/infra/bots/ |
D | gen_compile_isolate.py | 161 self._root = Tree.Node(None) 168 self._root.add(split) 179 return self._root.entries()
|
/third_party/boost/boost/regex/v4/ |
D | fileiter.hpp | 386 char* _root; member in boost::BOOST_REGEX_DETAIL_NS::file_iterator 403 const char* root()const { return _root; } in root() 456 char* _root; member in boost::BOOST_REGEX_DETAIL_NS::directory_iterator 474 const char* root()const { return _root; } in root()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
D | TextTrieMap.java | 27 private Node _root = new Node(); field in TextTrieMap 55 _root.add(chitr, val); in put() 106 find(_root, chitr, handler, output); in find() 124 _root.putLeadCodePoints(output); in putLeadCodePoints()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | TextTrieMap.java | 25 private Node _root = new Node(); field in TextTrieMap 50 _root.add(chitr, val); in put() 101 find(_root, chitr, handler, output); in find() 119 _root.putLeadCodePoints(output); in putLeadCodePoints()
|
/third_party/protobuf/python/google/protobuf/internal/ |
D | well_known_types.py | 582 self._root = {} 605 node = self._root 619 _AddFieldPaths(self._root, '', field_mask) 628 node = self._root 651 self._root, source, destination, replace_message, replace_repeated)
|
/third_party/jsframework/runtime/vdom/ |
D | Document.ts | 114 this._nodeMap._root = el;
|
/third_party/python/Lib/idlelib/ |
D | search.py | 21 root = text._root()
|
D | grep.py | 34 root = text._root()
|
D | replace.py | 23 root = text._root()
|
/third_party/flutter/engine/flutter/tools/licenses/lib/ |
D | filesystem.dart | 364 ArchiveDirectory _root; 369 _root ??= ArchiveDirectory.parseArchive(a.ZipDecoder().decodeBytes(readBytes()), fullName); 370 return _root.walk; 379 ArchiveDirectory _root; 384 _root ??= ArchiveDirectory.parseArchive(a.TarDecoder().decodeBytes(readBytes()), fullName); 385 return _root.walk;
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/base/ |
D | context.dart | 36 AppContext get context => Zone.current[_Key.key] as AppContext ?? AppContext._root; 64 static final AppContext _root = AppContext._(null, 'ROOT');
|
/third_party/python/Lib/turtledemo/ |
D | __main__.py | 130 self.root = root = turtle._root = Tk() 240 turtle._Screen._root = root
|
/third_party/node/deps/npm/node_modules/har-validator/node_modules/json-schema-traverse/ |
D | README.md | 54 - _root schema_: the schema passed to `traverse` object
|
/third_party/json/third_party/cpplint/ |
D | cpplint.py | 633 _root = None variable 2050 % (_root, fileinfo.RepositoryName())) 2053 if not _root: 2068 PathSplitToList(_root)) 2072 " _root=%s)\n") % (maybe_path, file_path_from_root, _root)) 2079 root_abspath = os.path.abspath(_root) 6271 global _root 6273 _root = os.path.join(os.path.dirname(cfg_file), val) 6475 global _root 6476 _root = val
|
/third_party/python/Lib/tkinter/ |
D | dnd.py | 126 root = event.widget._root()
|
/third_party/mbedtls/tests/scripts/ |
D | check_files.py | 157 _root, ext = os.path.splitext(filepath)
|