Home
last modified time | relevance | path

Searched refs:NodeAt (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/modules/audio_processing/transient/
Dwpd_tree_unittest.cc43 ASSERT_TRUE(NULL != tree.NodeAt(level, i)); in TEST()
46 EXPECT_EQ(NULL, tree.NodeAt(level, -1)); in TEST()
47 EXPECT_EQ(NULL, tree.NodeAt(level, -12)); in TEST()
48 EXPECT_EQ(NULL, tree.NodeAt(level, nodes_at_level)); in TEST()
49 EXPECT_EQ(NULL, tree.NodeAt(level, nodes_at_level + 5)); in TEST()
52 EXPECT_EQ(NULL, tree.NodeAt(-1, 0)); in TEST()
53 EXPECT_EQ(NULL, tree.NodeAt(-12, 0)); in TEST()
54 EXPECT_EQ(NULL, tree.NodeAt(kLevels + 1, 0)); in TEST()
55 EXPECT_EQ(NULL, tree.NodeAt(kLevels + 5, 0)); in TEST()
151 const float* node_data = tree.NodeAt(kLevels, i)->data(); in TEST()
Dwpd_tree.h66 WPDNode* NodeAt(int level, int index);
Dwpd_tree.cc67 WPDNode* WPDTree::NodeAt(int level, int index) { in NodeAt() function in webrtc::WPDTree
Dtransient_detector.cc87 WPDNode* leaf = wpd_tree_->NodeAt(kLevels, i); in Detect()