Home
last modified time | relevance | path

Searched refs:add_child (Results 1 – 18 of 18) sorted by relevance

/third_party/mindspore/tests/ut/python/dataset/
Dtest_sampler_chain.py73 sampler.add_child(ds.SequentialSampler(start_index=1, num_samples=2))
103 sampler.add_child(child_sampler)
130 sampler.add_child(child_sampler)
155 sampler.add_child(child_sampler)
181 sampler.add_child(child_sampler)
207 sampler.add_child(child_sampler)
236 child_sampler.add_child(child_sampler2)
237 sampler.add_child(child_sampler)
263 sampler.add_child(child_sampler)
291 sampler = sampler.add_child(ds.SequentialSampler(start_index=1, num_samples=2))
[all …]
Dtest_datasets_imagefolder.py429 sampler.add_child(child_sampler)
458 sampler.add_child(child_sampler)
488 sampler.add_child(child_sampler)
518 sampler.add_child(child_sampler)
551 sampler.add_child(child_sampler)
581 sampler.add_child(child_sampler)
611 sampler.add_child(child_sampler)
643 sampler.add_child(child_sampler)
Dtest_sampler.py97 sampler1.add_child(sampler)
253 sampler.add_child(child_sampler)
Dtest_datasets_cifarop.py524 sampler.add_child(child_sampler)
Dtest_serdes_dataset.py54 sampler.add_child(child_sampler)
/third_party/boost/libs/ptr_container/test/
Dtree_test.cpp40 void add_child( node* n );
147 inline void tree::add_child( node* n ) in add_child() function in tree
244 node1.add_child( new leaf<string>( "leaf 1" ) ); in test_tree()
245 node1.add_child( new leaf<int>( 42 ) ); in test_tree()
247 node2.add_child( new leaf<float>( 42.0f ) ); in test_tree()
248 node2.add_child( new leaf<string>( "leaf 4" ) ); in test_tree()
250 root.add_child( node1.release() ); in test_tree()
252 root.add_child( node2.release() ); in test_tree()
253 root.add_child( new inner_node( "node 3" ) ); in test_tree()
255 root.add_child( new leaf<string>( "leaf 5" ) ); in test_tree()
/third_party/mindspore/mindspore/dataset/engine/
Dsamplers.py106 def add_child(self, sampler): member in BuiltinSampler
287 c_sampler.add_child(c_child_sampler)
290 def add_child(self, sampler): member in Sampler
391 c_sampler.add_child(c_child_sampler)
401 c_sampler.add_child(c_child_sampler)
481 c_sampler.add_child(c_child_sampler)
504 c_sampler.add_child(c_child_sampler)
551 c_sampler.add_child(c_child_sampler)
559 c_sampler.add_child(c_child_sampler)
614 c_sampler.add_child(c_child_sampler)
[all …]
Ddatasets.py1981 new_sampler.add_child(self.sampler)
/third_party/boost/tools/build/test/
Dtree.py51 def add_child(self, newchild): member in TreeNode
60 a.add_child(i)
237 node.add_child(new_file_node)
243 node.add_child(new_dir_node)
/third_party/boost/boost/heap/detail/
Dheap_node.hpp204 void add_child(heap_node * n) in add_child() function
283 void add_child(parent_pointing_heap_node * n) in add_child() function
287 super_t::add_child(n); in add_child()
/third_party/boost/boost/heap/
Dbinomial_heap.hpp791 grand_parent->add_child(n); in siftup()
796 n->add_child(parent); in siftup()
817 max_child->add_child(n); in siftdown()
818 parent->add_child(max_child); in siftdown()
821 max_child->add_child(n); in siftdown()
881 node1->add_child(node2); in merge_trees()
/third_party/boost/libs/property_tree/test/
Dtest_property_tree.hpp889 pt.add_child(T("key"), tmp1); in test_get_child_put_child()
891 pt.add_child(T("key"), tmp2); in test_get_child_put_child()
894 pt.add_child(T("key.key.key"), tmp1); in test_get_child_put_child()
898 pt.add_child(T("key.key.key"), tmp2); in test_get_child_put_child()
917 pt.add_child(T("k1"), PTREE()); in test_equal_range()
918 pt.add_child(T("k2"), PTREE()); in test_equal_range()
919 pt.add_child(T("k1"), PTREE()); in test_equal_range()
920 pt.add_child(T("k3"), PTREE()); in test_equal_range()
921 pt.add_child(T("k1"), PTREE()); in test_equal_range()
922 pt.add_child(T("k2"), PTREE()); in test_equal_range()
/third_party/mesa3d/src/util/
Dralloc.c92 add_child(ralloc_header *parent, ralloc_header *info) in add_child() function
141 add_child(parent, info); in ralloc_size()
318 add_child(parent, info); in ralloc_steal()
/third_party/boost/libs/property_tree/
Dbreaking_changes.txt18 The put and put_child functions of basic_ptree had add and add_child split from
/third_party/boost/boost/property_tree/
Dptree.hpp298 self_type &add_child(const path_type &path, const self_type &value);
/third_party/mindspore/mindspore/explainer/explanation/_counterfactual/
Dhierarchical_occlusion.py164 def add_child(self, child): member in EditStep
623 job.parent_step.add_child(step)
/third_party/boost/boost/property_tree/detail/
Dptree_implementation.hpp652 basic_ptree<K, D, C>::add_child(const path_type &path, in add_child() function in boost::property_tree::basic_ptree
868 self_type &child = add_child(path, self_type()); in add()
/third_party/python/Lib/tkinter/
Dtix.py871 def add_child(self, parent=None, cnf={}, **kw): member in HList