Home
last modified time | relevance | path

Searched refs:GetDepth (Results 1 – 25 of 1212) sorted by relevance

12345678910>>...49

/dports/editors/libreoffice6/libreoffice-6.4.7.2/sw/source/filter/html/
H A Dhtmlnumwriter.cxx69 m_pNextNumRuleInfo->SetDepth( GetNumInfo().GetDepth() ); in FillNextNumInfo()
102 if( bSameRule && rPrevInfo.GetDepth() >= rInfo.GetDepth() && in OutHTML_NumBulListStart()
109 if( !bSameRule && rInfo.GetDepth() ) in OutHTML_NumBulListStart()
116 ->Get( rInfo.GetDepth()-1 ).GetNumberingType(); in OutHTML_NumBulListStart()
123 if( rInfo.GetDepth() > 1 ) in OutHTML_NumBulListStart()
143 rInfo.GetDepth() ) in OutHTML_NumBulListStart()
145 if (rPrevInfo.GetDepth() == 0) in OutHTML_NumBulListStart()
181 (bSameRule && !rInfo.IsRestart()) ? rPrevInfo.GetDepth() : 0; in OutHTML_NumBulListStart()
183 for( sal_uInt16 i=nPrevDepth; i<rInfo.GetDepth(); i++ ) in OutHTML_NumBulListStart()
293 if( bSameRule && rNextInfo.GetDepth() >= rInfo.GetDepth() && in OutHTML_NumBulListEnd()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/sw/source/filter/html/
H A Dhtmlnumwriter.cxx58 m_pNextNumRuleInfo->SetDepth( GetNumInfo().GetDepth() ); in FillNextNumInfo()
91 if( bSameRule && rPrevInfo.GetDepth() >= rInfo.GetDepth() && in OutHTML_NumberBulletListStart()
134 if( !bSameRule && rInfo.GetDepth() ) in OutHTML_NumberBulletListStart()
141 ->Get( rInfo.GetDepth()-1 ).GetNumberingType(); in OutHTML_NumberBulletListStart()
148 if( rInfo.GetDepth() > 1 ) in OutHTML_NumberBulletListStart()
168 rInfo.GetDepth() ) in OutHTML_NumberBulletListStart()
170 if (rPrevInfo.GetDepth() == 0) in OutHTML_NumberBulletListStart()
206 (bSameRule && !rInfo.IsRestart()) ? rPrevInfo.GetDepth() : 0; in OutHTML_NumberBulletListStart()
208 for( sal_uInt16 i=nPrevDepth; i<rInfo.GetDepth(); i++ ) in OutHTML_NumberBulletListStart()
318 bool bListEnd = !bSameRule || rNextInfo.GetDepth() < rInfo.GetDepth() || rNextInfo.IsRestart(); in OutHTML_NumberBulletListEnd()
[all …]
/dports/net/norm/norm-1.5r6/protolib/src/common/
H A DprotoAverage.cpp31 if(list.GetHead()->GetDepth()!=0)//first entry is not a single value so just prepend the item in AddNumber()
40 while(firstItemPtr->GetDepth()==secondItemPtr->GetDepth()) in AddNumber()
75 tempItem.SetDepth(item->GetDepth()); in GetAverage()
85 dpx = tempItem.GetDepth(); in GetAverage()
87 dpy = item->GetDepth(); in GetAverage()
122 TRACE("(%f,%f) ",item->GetValue(),item->GetDepth()); in Print()
131 if(otherItem.GetDepth()!=GetDepth()) in Merge()
/dports/editors/libreoffice/libreoffice-7.2.6.2/editeng/source/outliner/
H A Dparalist.cxx161 return pNext && ( pNext->GetDepth() > pParagraph->GetDepth() ); in HasChildren()
168 return pNext && ( pNext->GetDepth() > pParagraph->GetDepth() ) && !pNext->IsVisible(); in HasHiddenChildren()
175 return pNext && ( pNext->GetDepth() > pParagraph->GetDepth() ) && pNext->IsVisible(); in HasVisibleChildren()
183 while ( pPara && ( pPara->GetDepth() > pParent->GetDepth() ) ) in GetChildCount()
195 while ( pPrev && ( pPrev->GetDepth() >= pParagraph->GetDepth() ) ) in GetParent()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/editeng/source/outliner/
H A Dparalist.cxx163 return pNext && ( pNext->GetDepth() > pParagraph->GetDepth() ); in HasChildren()
170 return pNext && ( pNext->GetDepth() > pParagraph->GetDepth() ) && !pNext->IsVisible(); in HasHiddenChildren()
177 return pNext && ( pNext->GetDepth() > pParagraph->GetDepth() ) && pNext->IsVisible(); in HasVisibleChildren()
185 while ( pPara && ( pPara->GetDepth() > pParent->GetDepth() ) ) in GetChildCount()
197 while ( pPrev && ( pPrev->GetDepth() >= pParagraph->GetDepth() ) ) in GetParent()
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/util/image/
H A Dimage_util.cpp44 CRef<CImage> new_image(new CImage(width, height, image.GetDepth())); in Scale()
77 for (size_t k = 0; k < image.GetDepth(); ++k) { in Scale()
84 for (size_t k = 0; k < new_image->GetDepth(); ++k) { in Scale()
107 for (size_t k = 0; k < image.GetDepth(); ++k) { in Scale()
133 for (size_t k = 0; k < image.GetDepth(); ++k) { in Scale()
158 const size_t scanline_size = image.GetWidth() * image.GetDepth(); in FlipX()
159 const size_t depth = image.GetDepth(); in FlipX()
193 size_t scanline_size = image.GetWidth() * image.GetDepth(); in FlipY()
H A Dimage_io_png.cpp380 size_t to_stride = image->GetWidth() * image->GetDepth(); in ReadImage()
381 size_t to_offs = x * image->GetDepth(); in ReadImage()
490 if (image.GetDepth() != 3 && image.GetDepth() != 4) { in WriteImage()
492 msg += NStr::NumericToString(image.GetDepth()); in WriteImage()
502 image.GetWidth(), image.GetHeight(), image.GetDepth(), in WriteImage()
513 size_t depth = image.GetDepth(); in WriteImage()
547 if (image.GetDepth() != 3 && image.GetDepth() != 4) { in WriteImage()
549 msg += NStr::NumericToString(image.GetDepth()); in WriteImage()
559 w, h, image.GetDepth(), in WriteImage()
573 from_data += (y * image.GetWidth() + x) * image.GetDepth(); in WriteImage()
[all …]
/dports/misc/py-xgboost/xgboost-1.5.1/tests/cpp/tree/hist/
H A Dtest_histogram.cc32 nodes_for_explicit_hist_build_.emplace_back(3, tree.GetDepth(3), 0.0f); in TestAddHistRows()
33 nodes_for_explicit_hist_build_.emplace_back(4, tree.GetDepth(4), 0.0f); in TestAddHistRows()
34 nodes_for_subtraction_trick_.emplace_back(5, tree.GetDepth(5), 0.0f); in TestAddHistRows()
35 nodes_for_subtraction_trick_.emplace_back(6, tree.GetDepth(6), 0.0f); in TestAddHistRows()
96 nodes_for_explicit_hist_build_.emplace_back(0, tree.GetDepth(0), 0.0f); in TestSyncHist()
107 tree.GetDepth(1), 0.0f); in TestSyncHist()
109 tree.GetDepth(2), 0.0f); in TestSyncHist()
121 nodes_for_explicit_hist_build_.emplace_back(3, tree.GetDepth(3), 0.0f); in TestSyncHist()
122 nodes_for_subtraction_trick_.emplace_back(4, tree.GetDepth(4), 0.0f); in TestSyncHist()
123 nodes_for_explicit_hist_build_.emplace_back(5, tree.GetDepth(5), 0.0f); in TestSyncHist()
[all …]
/dports/misc/xgboost/xgboost-1.5.1/tests/cpp/tree/hist/
H A Dtest_histogram.cc32 nodes_for_explicit_hist_build_.emplace_back(3, tree.GetDepth(3), 0.0f); in TestAddHistRows()
33 nodes_for_explicit_hist_build_.emplace_back(4, tree.GetDepth(4), 0.0f); in TestAddHistRows()
34 nodes_for_subtraction_trick_.emplace_back(5, tree.GetDepth(5), 0.0f); in TestAddHistRows()
35 nodes_for_subtraction_trick_.emplace_back(6, tree.GetDepth(6), 0.0f); in TestAddHistRows()
96 nodes_for_explicit_hist_build_.emplace_back(0, tree.GetDepth(0), 0.0f); in TestSyncHist()
107 tree.GetDepth(1), 0.0f); in TestSyncHist()
109 tree.GetDepth(2), 0.0f); in TestSyncHist()
121 nodes_for_explicit_hist_build_.emplace_back(3, tree.GetDepth(3), 0.0f); in TestSyncHist()
122 nodes_for_subtraction_trick_.emplace_back(4, tree.GetDepth(4), 0.0f); in TestSyncHist()
123 nodes_for_explicit_hist_build_.emplace_back(5, tree.GetDepth(5), 0.0f); in TestSyncHist()
[all …]
/dports/x11-toolkits/wxgtk28-contrib-common/wxGTK-2.8.12/src/gtk/
H A Ddcmemory.cpp75 m_selected.GetDepth() == 1 && in SetPen()
88 m_selected.GetDepth() == 1 && in SetBrush()
102 m_selected.GetDepth() == 1 && in SetBackground()
113 if ( m_selected.Ok() && m_selected.GetDepth() == 1 ) in SetTextForeground()
125 if (m_selected.Ok() && m_selected.GetDepth() == 1) in SetTextBackground()
/dports/x11-toolkits/wxgtk28-contrib/wxGTK-2.8.12/src/gtk/
H A Ddcmemory.cpp75 m_selected.GetDepth() == 1 && in SetPen()
88 m_selected.GetDepth() == 1 && in SetBrush()
102 m_selected.GetDepth() == 1 && in SetBackground()
113 if ( m_selected.Ok() && m_selected.GetDepth() == 1 ) in SetTextForeground()
125 if (m_selected.Ok() && m_selected.GetDepth() == 1) in SetTextBackground()
/dports/x11-toolkits/wxgtk28/wxGTK-2.8.12/src/gtk/
H A Ddcmemory.cpp75 m_selected.GetDepth() == 1 && in SetPen()
88 m_selected.GetDepth() == 1 && in SetBrush()
102 m_selected.GetDepth() == 1 && in SetBackground()
113 if ( m_selected.Ok() && m_selected.GetDepth() == 1 ) in SetTextForeground()
125 if (m_selected.Ok() && m_selected.GetDepth() == 1) in SetTextBackground()
/dports/x11-toolkits/wxgtk28-common/wxGTK-2.8.12/src/gtk/
H A Ddcmemory.cpp75 m_selected.GetDepth() == 1 && in SetPen()
88 m_selected.GetDepth() == 1 && in SetBrush()
102 m_selected.GetDepth() == 1 && in SetBackground()
113 if ( m_selected.Ok() && m_selected.GetDepth() == 1 ) in SetTextForeground()
125 if (m_selected.Ok() && m_selected.GetDepth() == 1) in SetTextBackground()
/dports/x11-toolkits/wxgtk30/wxWidgets-3.0.5.1/src/gtk/
H A Ddcmemory.cpp84 m_selected.GetDepth() == 1 && in SetPen()
97 m_selected.GetDepth() == 1 && in SetBrush()
111 m_selected.GetDepth() == 1 && in SetBackground()
122 if ( m_selected.IsOk() && m_selected.GetDepth() == 1 ) in SetTextForeground()
130 if (m_selected.IsOk() && m_selected.GetDepth() == 1) in SetTextBackground()
/dports/x11-toolkits/wxgtk31/wxWidgets-3.1.5/src/gtk/
H A Ddcmemory.cpp83 m_selected.GetDepth() == 1 && in SetPen()
96 m_selected.GetDepth() == 1 && in SetBrush()
110 m_selected.GetDepth() == 1 && in SetBackground()
121 if ( m_selected.IsOk() && m_selected.GetDepth() == 1 ) in SetTextForeground()
129 if (m_selected.IsOk() && m_selected.GetDepth() == 1) in SetTextBackground()
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/ext/wxWidgets/src/gtk/
H A Ddcmemory.cpp84 m_selected.GetDepth() == 1 && in SetPen()
97 m_selected.GetDepth() == 1 && in SetBrush()
111 m_selected.GetDepth() == 1 && in SetBackground()
122 if ( m_selected.IsOk() && m_selected.GetDepth() == 1 ) in SetTextForeground()
130 if (m_selected.IsOk() && m_selected.GetDepth() == 1) in SetTextBackground()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/libaddressinput/src/cpp/test/
H A Dlookup_key_test.cc44 EXPECT_EQ(0, lookup_key.GetDepth()); in TEST()
54 EXPECT_EQ(1, lookup_key.GetDepth()); in TEST()
65 EXPECT_EQ(2, lookup_key.GetDepth()); in TEST()
77 EXPECT_EQ(3, lookup_key.GetDepth()); in TEST()
89 EXPECT_EQ(1, lookup_key.GetDepth()); in TEST()
101 EXPECT_EQ(1, lookup_key.GetDepth()); in TEST()
/dports/devel/intel-graphics-compiler/SPIRV-Tools/test/opt/loop_optimizations/
H A Dnested_loops.cpp171 EXPECT_EQ(parent_loop.GetDepth(), 1u); in TEST_F()
180 EXPECT_EQ(child_loop_1.GetDepth(), 2u); in TEST_F()
367 EXPECT_EQ(loop->GetDepth(), 1u); in TEST_F()
385 EXPECT_EQ(loop->GetDepth(), 2u); in TEST_F()
402 EXPECT_EQ(loop->GetDepth(), 3u); in TEST_F()
419 EXPECT_EQ(loop->GetDepth(), 3u); in TEST_F()
576 EXPECT_EQ(loop.GetDepth(), 1u); in TEST_F()
584 EXPECT_EQ(loop.GetDepth(), 2u); in TEST_F()
592 EXPECT_EQ(loop.GetDepth(), 3u); in TEST_F()
600 EXPECT_EQ(loop.GetDepth(), 2u); in TEST_F()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/third_party/SPIRV-Tools/test/opt/loop_optimizations/
H A Dnested_loops.cpp171 EXPECT_EQ(parent_loop.GetDepth(), 1u); in TEST_F()
180 EXPECT_EQ(child_loop_1.GetDepth(), 2u); in TEST_F()
367 EXPECT_EQ(loop->GetDepth(), 1u); in TEST_F()
385 EXPECT_EQ(loop->GetDepth(), 2u); in TEST_F()
402 EXPECT_EQ(loop->GetDepth(), 3u); in TEST_F()
419 EXPECT_EQ(loop->GetDepth(), 3u); in TEST_F()
576 EXPECT_EQ(loop.GetDepth(), 1u); in TEST_F()
584 EXPECT_EQ(loop.GetDepth(), 2u); in TEST_F()
592 EXPECT_EQ(loop.GetDepth(), 3u); in TEST_F()
600 EXPECT_EQ(loop.GetDepth(), 2u); in TEST_F()
[all …]
/dports/emulators/mess/mame-mame0226/3rdparty/bgfx/3rdparty/spirv-tools/test/opt/loop_optimizations/
H A Dnested_loops.cpp171 EXPECT_EQ(parent_loop.GetDepth(), 1u); in TEST_F()
180 EXPECT_EQ(child_loop_1.GetDepth(), 2u); in TEST_F()
367 EXPECT_EQ(loop->GetDepth(), 1u); in TEST_F()
385 EXPECT_EQ(loop->GetDepth(), 2u); in TEST_F()
402 EXPECT_EQ(loop->GetDepth(), 3u); in TEST_F()
419 EXPECT_EQ(loop->GetDepth(), 3u); in TEST_F()
576 EXPECT_EQ(loop.GetDepth(), 1u); in TEST_F()
584 EXPECT_EQ(loop.GetDepth(), 2u); in TEST_F()
592 EXPECT_EQ(loop.GetDepth(), 3u); in TEST_F()
600 EXPECT_EQ(loop.GetDepth(), 2u); in TEST_F()
[all …]
/dports/emulators/mame/mame-mame0226/3rdparty/bgfx/3rdparty/spirv-tools/test/opt/loop_optimizations/
H A Dnested_loops.cpp171 EXPECT_EQ(parent_loop.GetDepth(), 1u); in TEST_F()
180 EXPECT_EQ(child_loop_1.GetDepth(), 2u); in TEST_F()
367 EXPECT_EQ(loop->GetDepth(), 1u); in TEST_F()
385 EXPECT_EQ(loop->GetDepth(), 2u); in TEST_F()
402 EXPECT_EQ(loop->GetDepth(), 3u); in TEST_F()
419 EXPECT_EQ(loop->GetDepth(), 3u); in TEST_F()
576 EXPECT_EQ(loop.GetDepth(), 1u); in TEST_F()
584 EXPECT_EQ(loop.GetDepth(), 2u); in TEST_F()
592 EXPECT_EQ(loop.GetDepth(), 3u); in TEST_F()
600 EXPECT_EQ(loop.GetDepth(), 2u); in TEST_F()
[all …]
/dports/graphics/spirv-tools/SPIRV-Tools-2021.4/test/opt/loop_optimizations/
H A Dnested_loops.cpp171 EXPECT_EQ(parent_loop.GetDepth(), 1u); in TEST_F()
180 EXPECT_EQ(child_loop_1.GetDepth(), 2u); in TEST_F()
367 EXPECT_EQ(loop->GetDepth(), 1u); in TEST_F()
385 EXPECT_EQ(loop->GetDepth(), 2u); in TEST_F()
402 EXPECT_EQ(loop->GetDepth(), 3u); in TEST_F()
419 EXPECT_EQ(loop->GetDepth(), 3u); in TEST_F()
576 EXPECT_EQ(loop.GetDepth(), 1u); in TEST_F()
584 EXPECT_EQ(loop.GetDepth(), 2u); in TEST_F()
592 EXPECT_EQ(loop.GetDepth(), 3u); in TEST_F()
600 EXPECT_EQ(loop.GetDepth(), 2u); in TEST_F()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/SPIRV-Tools/src/test/opt/loop_optimizations/
H A Dnested_loops.cpp171 EXPECT_EQ(parent_loop.GetDepth(), 1u); in TEST_F()
180 EXPECT_EQ(child_loop_1.GetDepth(), 2u); in TEST_F()
367 EXPECT_EQ(loop->GetDepth(), 1u); in TEST_F()
385 EXPECT_EQ(loop->GetDepth(), 2u); in TEST_F()
402 EXPECT_EQ(loop->GetDepth(), 3u); in TEST_F()
419 EXPECT_EQ(loop->GetDepth(), 3u); in TEST_F()
576 EXPECT_EQ(loop.GetDepth(), 1u); in TEST_F()
584 EXPECT_EQ(loop.GetDepth(), 2u); in TEST_F()
592 EXPECT_EQ(loop.GetDepth(), 3u); in TEST_F()
600 EXPECT_EQ(loop.GetDepth(), 2u); in TEST_F()
[all …]
/dports/graphics/colmap/colmap-3.6/src/mvs/
H A Dnormal_map_test.cc44 BOOST_CHECK_EQUAL(normal_map.GetDepth(), 3); in BOOST_AUTO_TEST_CASE()
51 BOOST_CHECK_EQUAL(normal_map.GetDepth(), 3); in BOOST_AUTO_TEST_CASE()
59 BOOST_CHECK_EQUAL(normal_map.GetDepth(), 3); in BOOST_AUTO_TEST_CASE()
67 BOOST_CHECK_EQUAL(normal_map.GetDepth(), 3); in BOOST_AUTO_TEST_CASE()
H A Ddepth_map_test.cc44 BOOST_CHECK_EQUAL(depth_map.GetDepth(), 1); in BOOST_AUTO_TEST_CASE()
53 BOOST_CHECK_EQUAL(depth_map.GetDepth(), 1); in BOOST_AUTO_TEST_CASE()
63 BOOST_CHECK_EQUAL(depth_map.GetDepth(), 1); in BOOST_AUTO_TEST_CASE()
73 BOOST_CHECK_EQUAL(depth_map.GetDepth(), 1); in BOOST_AUTO_TEST_CASE()

12345678910>>...49