Home
last modified time | relevance | path

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

/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/bson/mutable/
H A Dconst_element-inl.h62 inline ConstElement ConstElement::findNthChild(size_t n) const { in findNthChild() function
63 return _basis.findNthChild(n); in findNthChild()
H A Dconst_element.h63 inline ConstElement findNthChild(size_t n) const;
H A Delement-inl.h37 return findNthChild(n);
H A Dalgorithm.h263 return element.findNthChild(n); in getNthChild()
H A Delement.h212 Element findNthChild(size_t n) const;
H A Ddocument.cpp1406 Element Element::findNthChild(size_t n) const { in findNthChild() function in mongo::mutablebson::Element
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/update/
H A Dpath_support_test.cpp440 firstNewElem.getValue().compareWithElement(root()["b"].findNthChild(0)["d"], nullptr), 0); in TEST_F()
461 ASSERT_EQUALS(firstNewElem.getValue().compareWithElement(root()["b"].findNthChild(1), nullptr), in TEST_F()
483 ASSERT_EQUALS(firstNewElem.getValue().compareWithElement(root()["b"].findNthChild(1), nullptr), in TEST_F()
505 ASSERT_EQUALS(firstNewElem.getValue().compareWithElement(root()["b"].findNthChild(5), nullptr), in TEST_F()
555 root()["a"].findNthChild(mongo::pathsupport::kMaxPaddingAllowed + 5), nullptr), in TEST_F()
H A Dupdate_object_node.cpp94 return element.findNthChild(*indexFromField); in getChild()
H A Dupdate_driver.cpp467 newElem = newElem.findNthChild(*indexFromField); in update()