/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
D | cord_rep_btree_navigator.cc | 122 CordRepBtree* subtree = CordRepBtree::New(Substring(edge, edge_offset)); in Read() local 129 subtree->set_end(subtree_end); in Read() 130 if (length == 0) return {subtree, 0}; in Read() 131 CordRep::Unref(subtree); in Read() 135 subtree->set_end(subtree_end); in Read() 136 subtree = CordRepBtree::New(subtree); in Read() 144 subtree->length += edge->length; in Read() 145 subtree->edges_[subtree_end++] = CordRep::Ref(edge); in Read() 148 CordRepBtree* tree = subtree; in Read() 149 subtree->length += length; in Read() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | IntervalMap.cpp | 21 path.insert(path.begin() + 1, Entry(subtree(0), Offsets.second)); in replaceRoot() 39 NodeRef NR = path[l].subtree(path[l].offset - 1); in getLeftSibling() 43 NR = NR.subtree(NR.size() - 1); in getLeftSibling() 64 NodeRef NR = subtree(l); in moveLeft() 69 NR = NR.subtree(NR.size() - 1); in moveLeft() 89 NodeRef NR = path[l].subtree(path[l].offset + 1); in getRightSibling() 93 NR = NR.subtree(0); in getRightSibling() 109 NodeRef NR = subtree(l); in moveRight() 113 NR = NR.subtree(0); in moveRight()
|
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/ |
D | visibility.dart | 14 /// in the subtree or not; when it is not [visible], the [replacement] child 19 /// subtree to be rebuilt, with any state in the subtree being discarded. 38 /// subtree changes. 97 /// doing so will result in a subtree shape change). 99 /// Unless [maintainState] is set, the [child] subtree will be disposed 103 /// Whether to maintain the [State] objects of the [child] subtree when it is 106 /// Keeping the state of the subtree is potentially expensive (because it 110 /// subtree contains a [Navigator], since that widget maintains elaborate 119 /// subtree to be lost (and a new instance of the subtree, with new [State] 123 /// Whether to maintain animations within the [child] subtree when it is [all …]
|
D | primary_scroll_controller.dart | 10 /// Associates a [ScrollController] with a subtree. 14 /// [ScrollController] associated with its subtree. 17 /// subtree. For example, the [Scaffold] uses this mechanism to implement the 20 /// Creates a widget that associates a [ScrollController] with a subtree. 28 /// Creates a subtree without an associated [ScrollController]. 35 /// The [ScrollController] associated with the subtree.
|
D | value_listenable_builder.dart | 32 /// If your [builder] function contains a subtree that does not depend on the 33 /// value of the [ValueListenable], it's more efficient to build that subtree 36 /// If you pass the pre-built subtree as the [child] parameter, the 116 /// subtree does not depend on the value of the [valueListenable]. 135 /// Can incorporate a [valueListenable] value-independent widget subtree 143 /// This argument is optional and can be null if the entire widget subtree
|
D | automatic_keep_alive.dart | 20 /// The subtree is kept alive whenever there is one or more descendant that has 89 // build of this subtree. Wait until the end of the frame to update 121 // the same subtree and it always includes the node we're looking for 125 // If we are called during the first build of this subtree the links to the 163 // of our subtree somehow. We're probably in the middle of build or 241 …description.add(FlagProperty('_keepingAlive', value: _keepingAlive, ifTrue: 'keeping subtree alive… 253 /// Indicates that the subtree through which this notification bubbles must be 261 /// a [Listenable] that is triggered when the subtree no longer needs to be kept 276 /// widget that requested keep-alive is removed from the subtree but doesn't 277 /// trigger its [Listenable] on the way out, then the subtree will continue to [all …]
|
D | ticker_provider.dart | 13 /// subtree. 29 /// The current ticker mode of this subtree. 31 /// If true, then tickers in this subtree will tick. 33 /// If false, then tickers in this subtree will not tick. Animations driven by 38 /// Whether tickers in the given subtree should be enabled or disabled.
|
D | scroll_configuration.dart | 17 /// subtree. 81 /// Controls how [Scrollable] widgets behave in a subtree. 86 /// Creates a widget that controls how [Scrollable] widgets behave in a subtree.
|
D | icon_theme.dart | 11 /// Controls the default color, opacity, and size of icons in a widget subtree. 47 /// The color, opacity, and size to use for icons in this subtree.
|
D | notification_listener.dart | 20 /// To listen for notifications in a subtree, use a [NotificationListener]. 59 // The `target` may be null if the subtree the notification is supposed to be 143 /// To listen for notifications in a subtree, use a
|
/third_party/flutter/flutter/packages/flutter/test/widgets/ |
D | reparent_state_harder_test.dart | 97 // * The keyA subtree is regrafted to be one level higher, but later than 98 // the keyB subtree. 99 // * The keyB subtree is, similarly, moved one level deeper, but earlier, than 100 // the keyA subtree. 101 // * The keyD subtree is replaced by the previously earlier and shallower 102 // keyC subtree. This happens during a LayoutBuilder layout callback, so it
|
D | box_decoration_test.dart | 67 final Widget subtree = KeyedSubtree( 79 await tester.pumpWidget(subtree); 82 await tester.pumpWidget(Container(child: subtree));
|
D | icon_test.dart | 195 // Compare a leaf Element in the Icon subtree before and after changing the 196 // semanticLabel to make sure the subtree was not rebuilt.
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | IntervalMap.h | 520 NodeRef &subtree(unsigned i) const { in subtree() function 703 const NodeRef &subtree(unsigned i) const { return this->first[i]; } in subtree() function 706 NodeRef &subtree(unsigned i) { return this->first[i]; } in subtree() function 741 return subtree(safeFind(0, x)); in safeLookup() 753 subtree(i) = Node; in insert() 782 : node(&Node.subtree(0)), size(Node.size()), offset(Offset) {} in Entry() 784 NodeRef &subtree(unsigned i) const { in subtree() function 821 NodeRef &subtree(unsigned Level) const { in subtree() function 822 return path[Level].subtree(path[Level].offset); in subtree() 828 path[Level] = Entry(subtree(Level - 1), offset(Level)); in reset() [all …]
|
/third_party/flutter/flutter/packages/flutter/lib/src/material/ |
D | popup_menu_theme.dart | 22 /// [PopupMenuTheme] can be used to configure its own widget subtree. 120 /// popup menus in this widget's subtree. 126 /// popup menus in its widget subtree.
|
D | tooltip_theme.dart | 15 /// widget subtree. 23 /// subtree. 187 /// [Tooltip]s in this widget's subtree.
|
D | banner_theme.dart | 115 /// [MaterialBanner]s in this widget's subtree. 121 /// [MaterialBanner]s in its widget subtree.
|
D | divider_theme.dart | 134 /// between rows in [DataTable]s in this widget's subtree. 138 /// between rows in [DataTable]s in its widget subtree.
|
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | TextFormatParseInfoTreeTest.java | 160 TextFormatParseInfoTree subtree = root.getNestedTrees(OPTIONAL_NESTED_MESSAGE).get(0); in testGetNestedTreesReturnsSingleTree() local 161 assertNotNull(subtree); in testGetNestedTreesReturnsSingleTree()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/bloat/ |
D | bloat.py | 272 subtree = jsonify_tree(val, key) 273 total += subtree['data']['$area'] 274 children.append(subtree)
|
/third_party/skia/third_party/externals/swiftshader/third_party/ |
D | update-marl.sh | 12 git subtree pull --prefix third_party/marl https://github.com/google/marl main --squash -m "Update …
|
D | update-spirvheaders.sh | 13 git subtree pull --prefix third_party/SPIRV-Headers https://github.com/KhronosGroup/SPIRV-Headers m…
|
D | update-spirvtools.sh | 15 GIT_RESULT=`git subtree pull --prefix third_party/SPIRV-Tools https://github.com/KhronosGroup/SPIRV…
|
/third_party/skia/third_party/externals/swiftshader/ |
D | README.md | 86 … project. The fork was made using [git-subtree](https://github.com/git/git/blob/master/contrib/sub…
|
/third_party/glib/ |
D | backport-patch.log | 25 Patch6024: backport-gdbusconnection-Fix-race-between-subtree-method-call-and-unregistration.pa… 26 Patch6025: backport-Add-D-Bus-object-subtree-unregistration-tests.patch
|