Home
last modified time | relevance | path

Searched refs:m_leftChild (Results 1 – 9 of 9) sorted by relevance

/dports/graphics/digikam/digikam-7.4.0/core/dplugins/generic/tools/printcreator/tools/
H A Datkinspagelayoutnode.cpp45 m_leftChild(nullptr), in AtkinsPageLayoutNode()
59 m_leftChild(subtree), in AtkinsPageLayoutNode()
71 delete m_leftChild; in ~AtkinsPageLayoutNode()
82 m_leftChild = other.m_leftChild ? new AtkinsPageLayoutNode(*other.m_leftChild) : nullptr; in operator =()
91 if (m_leftChild == oldChild) in takeAndSetChild()
93 m_leftChild = newChild; in takeAndSetChild()
155 double leftProductRoot = std::sqrt(m_leftChild->m_a * m_leftChild->m_e); in computeRelativeSizes()
159 double leftDivisionRoot = std::sqrt(m_leftChild->m_e / m_leftChild->m_a); in computeRelativeSizes()
187 double leftDivisionRoot = std::sqrt(m_leftChild->m_e / m_leftChild->m_a); in computeDivisions()
196 double leftProductRoot = std::sqrt(m_leftChild->m_a * m_leftChild->m_e); in computeDivisions()
[all …]
H A Datkinspagelayoutnode.h125 AtkinsPageLayoutNode* m_leftChild; variable
/dports/graphics/kipi-plugins/kipi-plugins-21.12.3/printimages/tools/
H A Dlayouttree.cpp46 m_leftChild(nullptr), in LayoutNode()
57 m_leftChild(subtree), in LayoutNode()
69 delete m_leftChild; in ~LayoutNode()
80 m_leftChild = other.m_leftChild ? new LayoutNode(*other.m_leftChild) : nullptr; in operator =()
89 if (m_leftChild == oldChild) in takeAndSetChild()
90 m_leftChild = newChild; in takeAndSetChild()
139 double leftProductRoot = std::sqrt(m_leftChild->m_a * m_leftChild->m_e); in computeRelativeSizes()
143 double leftDivisionRoot = std::sqrt(m_leftChild->m_e / m_leftChild->m_a); in computeRelativeSizes()
165 m_leftChild->computeDivisions(); in computeDivisions()
170 double leftDivisionRoot = std::sqrt(m_leftChild->m_e / m_leftChild->m_a); in computeDivisions()
[all …]
H A Dlayouttree.h81 LayoutNode* leftChild() const { return m_leftChild; } in leftChild()
104 LayoutNode* m_leftChild; variable
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Core/System/Linq/Parallel/QueryOperators/Binary/
H A DZipQueryOperator.cs36 private readonly QueryOperator<TLeftInput> m_leftChild; field in System.Linq.Parallel.ZipQueryOperator
67 m_leftChild = left; in ZipQueryOperator()
70 m_outputOrdered = m_leftChild.OutputOrdered || m_rightChild.OutputOrdered; in ZipQueryOperator()
72 OrdinalIndexState leftIndexState = m_leftChild.OrdinalIndexState; in ZipQueryOperator()
90 QueryResults<TLeftInput> leftChildResults = m_leftChild.Open(settings, preferStriping); in Open()
97 … false, ParallelMergeOptions.FullyBuffered, settings.TaskScheduler, m_leftChild.OutputOrdered, in Open()
123 …using(IEnumerator<TLeftInput> leftEnumerator = m_leftChild.AsSequentialQuery(token).GetEnumerator(… in AsSequentialQuery()
/dports/math/cgal/CGAL-5.3/include/CGAL/Surface_mesh_shortest_path/internal/
H A DCone_tree.h76 Cone_tree_node* m_leftChild; variable
107 , m_leftChild(nullptr) in Cone_tree_node()
128 , m_leftChild(nullptr) in Cone_tree_node()
154 , m_leftChild(nullptr) in m_traits()
378 m_leftChild = child; in set_left_child()
384 return m_leftChild; in get_left_child()
389 Cone_tree_node* temp = m_leftChild; in remove_left_child()
390 m_leftChild = nullptr; in remove_left_child()
425 return m_parent != nullptr && m_parent->m_leftChild == this; in is_left_child()
/dports/mail/thunderbird/thunderbird-91.8.0/comm/mailnews/search/src/
H A DnsMsgLocalSearch.cpp50 if (!aOrigExpr->m_term && !aOrigExpr->m_leftChild && in AddExpressionTree()
66 m_leftChild = nullptr; in nsMsgSearchBoolExpression()
82 m_leftChild = nullptr; in nsMsgSearchBoolExpression()
92 m_leftChild = expr1; in nsMsgSearchBoolExpression()
102 delete m_leftChild; in ~nsMsgSearchBoolExpression()
110 if (!m_term && !m_leftChild && !m_rightChild) { in leftToRightAddTerm()
154 if (m_leftChild) { in OfflineEvaluate()
188 return sizeOfORTerm + m_leftChild->CalcEncodeStrSize() + in CalcEncodeStrSize()
191 return sizeOfANDTerm + m_leftChild->CalcEncodeStrSize() + in CalcEncodeStrSize()
212 m_leftChild->GenerateEncodeStr( in GenerateEncodeStr()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Core/System/Linq/Parallel/QueryOperators/
H A DBinaryQueryOperator.cs30 private readonly QueryOperator<TLeftInput> m_leftChild; field in System.Linq.Parallel.BinaryQueryOperator
47 m_leftChild = leftChild; in BinaryQueryOperator()
53 get { return m_leftChild; }
/dports/mail/thunderbird/thunderbird-91.8.0/comm/mailnews/search/public/
H A DnsMsgSearchBoolExpression.h86 nsMsgSearchBoolExpression* m_leftChild; variable