Home
last modified time | relevance | path

Searched refs:childTree (Results 1 – 25 of 33) sorted by relevance

12

/dports/audio/carla/Carla-2.4.1/source/modules/juce_data_structures/values/
H A Djuce_ValueTreeSynchroniser.cpp132 void ValueTreeSynchroniser::valueTreeChildAdded (ValueTree& parentTree, ValueTree& childTree) in valueTreeChildAdded() argument
134 const int index = parentTree.indexOf (childTree); in valueTreeChildAdded()
140 childTree.writeToStream (m); in valueTreeChildAdded()
/dports/devel/juce/JUCE-f37e9a1/modules/juce_data_structures/values/
H A Djuce_ValueTreeSynchroniser.cpp132 void ValueTreeSynchroniser::valueTreeChildAdded (ValueTree& parentTree, ValueTree& childTree) in valueTreeChildAdded() argument
134 const int index = parentTree.indexOf (childTree); in valueTreeChildAdded()
140 childTree.writeToStream (m); in valueTreeChildAdded()
/dports/audio/libopenshot-audio/libopenshot-audio-0.2.2/JuceLibraryCode/modules/juce_data_structures/values/
H A Djuce_ValueTreeSynchroniser.cpp133 void ValueTreeSynchroniser::valueTreeChildAdded (ValueTree& parentTree, ValueTree& childTree) in valueTreeChildAdded() argument
135 const int index = parentTree.indexOf (childTree); in valueTreeChildAdded()
141 childTree.writeToStream (m); in valueTreeChildAdded()
/dports/net/ooni-probe-cli/probe-cli-3.10.1/vendor/github.com/ooni/psiphon/oopsi/github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/
H A Dconfig_test.go566 for _, childTree := range tree.Children {
567 traverseFileTree(f, filePath, childTree)
590 childTree, err := buildDirectoryTree(filePath, file.Name())
594 tree.Children = append(tree.Children, *childTree)
/dports/net/ooni-mini/probe-engine-0.23.0/vendor/github.com/ooni/psiphon/oopsi/github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/
H A Dconfig_test.go566 for _, childTree := range tree.Children {
567 traverseFileTree(f, filePath, childTree)
590 childTree, err := buildDirectoryTree(filePath, file.Name())
594 tree.Children = append(tree.Children, *childTree)
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/third_party/antlr3/
H A Dtree.py652 def addChild(self, childTree): argument
663 if childTree is None:
666 if childTree.isNil():
669 if self.children is childTree.children:
673 for idx, child in enumerate(childTree.children):
677 self.children += childTree.children
681 self.children.append(childTree)
682 childTree.parent = self
683 childTree.childIndex = len(self.children) - 1
/dports/www/xist/ll-xist-5.34/src/antlr3/
H A Dtree.py729 def addChild(self, childTree): argument
740 if childTree is None:
743 if childTree.isNil():
746 if self.children is childTree.children:
750 for idx, child in enumerate(childTree.children):
754 self.children += childTree.children
758 self.children.append(childTree)
759 childTree.parent = self
760 childTree.childIndex = len(self.children) - 1
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/mlir/lib/TableGen/
H A DPredicate.cpp183 auto childTree = in buildPredicateTree() local
185 rootNode->children.push_back(childTree); in buildPredicateTree()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/mlir/lib/TableGen/
H A DPredicate.cpp191 auto childTree = in buildPredicateTree() local
193 rootNode->children.push_back(childTree); in buildPredicateTree()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/mlir/lib/TableGen/
H A DPredicate.cpp181 auto childTree = in buildPredicateTree() local
183 rootNode->children.push_back(childTree); in buildPredicateTree()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/mlir/lib/TableGen/
H A DPredicate.cpp184 auto childTree = in buildPredicateTree() local
186 rootNode->children.push_back(childTree); in buildPredicateTree()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/mlir/lib/TableGen/
H A DPredicate.cpp191 auto childTree = in buildPredicateTree() local
193 rootNode->children.push_back(childTree); in buildPredicateTree()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/mlir/lib/TableGen/
H A DPredicate.cpp184 auto childTree = in buildPredicateTree() local
186 rootNode->children.push_back(childTree); in buildPredicateTree()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/mlir/lib/TableGen/
H A DPredicate.cpp191 auto childTree = in buildPredicateTree() local
193 rootNode->children.push_back(childTree); in buildPredicateTree()
/dports/devel/llvm12/llvm-project-12.0.1.src/mlir/lib/TableGen/
H A DPredicate.cpp184 auto childTree = in buildPredicateTree() local
186 rootNode->children.push_back(childTree); in buildPredicateTree()
/dports/devel/llvm13/llvm-project-13.0.1.src/mlir/lib/TableGen/
H A DPredicate.cpp191 auto childTree = in buildPredicateTree() local
193 rootNode->children.push_back(childTree); in buildPredicateTree()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/qmakeprojectmanager/
H A Dqmakeparsernodes.cpp1437 auto childTree = new QmakeIncludedPriFile; in evaluate() local
1438 childTree->proFile = child; in evaluate()
1439 childTree->name = childName; in evaluate()
1440 current->children.insert(childName, childTree); in evaluate()
1441 proToResult[child->id()] = &childTree->result; in evaluate()
1473 auto childTree = new QmakeIncludedPriFile; in evaluate() local
1474 childTree->proFile = child; in evaluate()
1475 childTree->name = childName; in evaluate()
1476 current->children.insert(childName, childTree); in evaluate()
1477 proToResult[child->id()] = &childTree->result; in evaluate()
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/antlr/antlr4/tool/src/org/antlr/v4/gui/
H A DTreeViewer.java617 Tree childTree = tree.getChild(i);
618 TreeNodeWrapper childNode = new TreeNodeWrapper(childTree, viewer);
622 fillTree(childNode, childTree, viewer);
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/machine/machine-7b7a141da844/vendor/github.com/vmware/govmomi/object/
H A Dvirtual_machine.go534 childTree := s.ChildSnapshotList
536 o, err = traverseSnapshotInTree(childTree, name)
/dports/sysutils/docker-machine/machine-0.16.2/vendor/github.com/vmware/govmomi/object/
H A Dvirtual_machine.go534 childTree := s.ChildSnapshotList
536 o, err = traverseSnapshotInTree(childTree, name)
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/toonz/
H A Dsubscenecommand.cpp1355 TStageObjectTree *childTree = childXsh->getStageObjectTree(); in collapseColumns() local
1372 childTree->getStageObject(TStageObjectId::CameraId(tmpCamId)) in collapseColumns()
1383 childTree->setCurrentCameraId(parentTree->getCurrentCameraId()); in collapseColumns()
/dports/devel/cscope/cscope-15.9/contrib/
H A Dcctree.vim1772 function! s:CallTree.mAddChildLink(childTree) dict argument
1776 call add(self.childlinks, a:childTree)
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/perf_tests/speedometer/resources/todomvc/architecture-examples/react-redux/dist/static/js/
H A Dmain.18b409e1.js.map1childTree","appendChild","queueHTML","queueText","nodeName","DOMLazyTree","DOMNamespaces","createM…
/dports/lang/spidermonkey60/firefox-60.9.0/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/architecture-examples/react-redux/dist/static/js/
H A Dmain.18b409e1.js.map1childTree","appendChild","queueHTML","queueText","nodeName","DOMLazyTree","DOMNamespaces","createM…
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/architecture-examples/react-redux/dist/static/js/
H A Dmain.18b409e1.js.map1childTree","appendChild","queueHTML","queueText","nodeName","DOMLazyTree","DOMNamespaces","createM…

12