Home
last modified time | relevance | path

Searched refs:makeElementBool (Results 1 – 5 of 5) sorted by relevance

/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/update/
H A Dlog_builder.cpp127 mutablebson::Element logElement = _logRoot.getDocument().makeElementBool(path, true); in addToUnsets()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/bson/mutable/
H A Ddocument.h355 Element makeElementBool(StringData fieldName, bool value);
H A Delement.cpp98 return pushBack(getDocument().makeElementBool(fieldName, value)); in appendBool()
H A Ddocument.cpp1787 Element newValue = getDocument().makeElementBool(fieldName, value); in setValueBool()
2422 Element Document::makeElementBool(StringData fieldName, const bool value) { in makeElementBool() function in mongo::mutablebson::Document
H A Dmutable_bson_test.cpp1397 elt = doc.makeElementBool("dummy", false); in TEST()