Home
last modified time | relevance | path

Searched refs:applyParams (Results 1 – 25 of 27) sorted by relevance

12

/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/update/
H A Dmodifier_node.cpp176 updateResult = updateExistingElement(&applyParams.element, applyParams.pathTaken); in applyToExistingElement()
181 applyParams.element, applyParams.pathTaken.get(), applyParams.immutablePaths, original); in applyToExistingElement()
183 updateResult = updateExistingElement(&applyParams.element, applyParams.pathTaken); in applyToExistingElement()
188 applyParams.element, applyParams.pathTaken.get(), applyParams.immutablePaths); in applyToExistingElement()
194 if (!applyParams.indexData || in applyToExistingElement()
195 !applyParams.indexData->mightBeIndexed(applyParams.pathTaken->dottedField())) { in applyToExistingElement()
205 if (applyParams.logBuilder) { in applyToExistingElement()
218 applyParams.pathToCreate->getPart(applyParams.pathToCreate->numParts() - 1); in applyToNonexistentElement()
224 *(applyParams.pathToCreate), 0, applyParams.element, newElement); in applyToNonexistentElement()
292 !applyParams.indexData->mightBeIndexed(applyParams.element.getType() != BSONType::Array in applyToNonexistentElement()
[all …]
H A Dupdate_object_node.cpp158 applyParams->element = in applyChild()
159 getChild(applyParams->element, applyParams->pathTaken->getPart(i)); in applyChild()
167 childElement = getChild(applyParams->element, applyParams->pathToCreate->getPart(0)); in applyChild()
170 applyParams->pathTaken->appendPart(applyParams->pathToCreate->getPart(0)); in applyChild()
174 applyParams->element = in applyChild()
175 getChild(applyParams->element, applyParams->pathToCreate->getPart(i)); in applyChild()
177 applyParams->pathTaken->appendPart(applyParams->pathToCreate->getPart(i)); in applyChild()
396 applyParams.pathTaken->appendPart(applyParams.pathToCreate->getPart(i)); in apply()
398 applyParams.pathTaken->appendPart(applyParams.matchedField); in apply()
420 *_positionalChild.get(), applyParams.matchedField, &applyParams, &applyResult); in apply()
[all …]
H A Dupdate_array_node.cpp52 if (!applyParams.pathToCreate->empty()) { in apply()
53 for (size_t i = 0; i < applyParams.pathToCreate->numParts(); ++i) { in apply()
54 applyParams.pathTaken->appendPart(applyParams.pathToCreate->getPart(i)); in apply()
63 << applyParams.element.toString(), in apply()
64 applyParams.element.getType() == BSONType::Array); in apply()
138 auto childApplyParams = applyParams; in apply()
159 if (!childrenShouldLogThemselves && applyParams.logBuilder) { in apply()
164 applyParams.pathTaken->dottedField(), applyParams.element); in apply()
166 uassertStatusOK(applyParams.logBuilder->addToSets(logElement)); in apply()
171 FieldRefTempAppend tempAppend(*(applyParams.pathTaken), in apply()
[all …]
H A Dobject_replace_node.cpp75 invariant(applyParams.pathToCreate->empty()); in apply()
76 invariant(applyParams.pathTaken->empty()); in apply()
78 auto original = applyParams.element.getDocument().getObject(); in apply()
86 auto current = applyParams.element.leftChild(); in apply()
102 invariantOK(applyParams.element.appendElement(elem)); in apply()
106 if (applyParams.validateForStorage) { in apply()
107 storage_validation::storageValid(applyParams.element.getDocument()); in apply()
111 for (auto path = applyParams.immutablePaths.begin(); path != applyParams.immutablePaths.end(); in apply()
115 auto newElem = applyParams.element; in apply()
147 if (applyParams.logBuilder) { in apply()
[all …]
H A Dupdate_node_test_fixture.h69 UpdateNode::ApplyParams applyParams(element, _immutablePaths); in getApplyParams()
70 applyParams.pathToCreate = _pathToCreate; in getApplyParams()
71 applyParams.pathTaken = _pathTaken; in getApplyParams()
72 applyParams.matchedField = _matchedField; in getApplyParams()
73 applyParams.insert = _insert; in getApplyParams()
74 applyParams.fromOplogApplication = _fromOplogApplication; in getApplyParams()
75 applyParams.validateForStorage = _validateForStorage; in getApplyParams()
76 applyParams.indexData = _indexData.get(); in getApplyParams()
77 applyParams.logBuilder = _logBuilder.get(); in getApplyParams()
78 return applyParams; in getApplyParams()
H A Drename_node.cpp149 UpdateNode::ApplyResult RenameNode::apply(ApplyParams applyParams) const { in apply()
155 mutablebson::Document& document = applyParams.element.getDocument(); in apply()
197 for (auto currentElement = applyParams.pathToCreate->empty() ? applyParams.element.parent() in apply()
198 : applyParams.element; in apply()
220 auto setElementApplyResult = setElement.apply(applyParams); in apply()
222 ApplyParams unsetParams(applyParams); in apply()
H A Dmodifier_node.h55 ApplyResult apply(ApplyParams applyParams) const final;
173 ApplyResult applyToNonexistentElement(ApplyParams applyParams) const;
174 ApplyResult applyToExistingElement(ApplyParams applyParams) const;
H A Dupdate_driver.cpp351 UpdateNode::ApplyParams applyParams(doc->root(), immutablePaths); in update() local
352 applyParams.matchedField = matchedField; in update()
353 applyParams.insert = _insert; in update()
354 applyParams.fromOplogApplication = _modOptions.fromOplogApplication; in update()
355 applyParams.validateForStorage = validateForStorage; in update()
356 applyParams.indexData = _indexedFields; in update()
358 applyParams.logBuilder = &logBuilder; in update()
360 auto applyResult = _root->apply(applyParams); in update()
H A Dobject_replace_node.h63 ApplyResult apply(ApplyParams applyParams) const final;
H A Drename_node.h56 ApplyResult apply(ApplyParams applyParams) const final;
H A Dconflict_placeholder_node.h59 ApplyResult apply(ApplyParams applyParams) const final { in apply() argument
H A Dupdate_array_node.h77 ApplyResult apply(ApplyParams applyParams) const final;
H A Dupdate_object_node.h96 ApplyResult apply(ApplyParams applyParams) const final;
H A Dupdate_node.h149 virtual ApplyResult apply(ApplyParams applyParams) const = 0;
/dports/devel/flex-sdk/flex-sdk-4.6.0.23201/frameworks/projects/osmf/src/org/osmf/logging/
H A DTraceLogger.as109 msg += "[" + category + "] " + applyParams(message, params);
123 private function applyParams(message:String, params:Array):String method in org.osmf.logging.TraceLogger
/dports/news/nzbget/nzbget-21.1/daemon/queue/
H A DQueueEditor.h56 void SetNzbCategory(NzbInfo* nzbInfo, const char* category, bool applyParams);
H A DQueueEditor.cpp906 void QueueEditor::SetNzbCategory(NzbInfo* nzbInfo, const char* category, bool applyParams) in SetNzbCategory() argument
912 if (applyParams && !Util::EmptyStr(nzbInfo->GetCategory())) in SetNzbCategory()
927 if (!applyParams) in SetNzbCategory()
/dports/print/lyx/lyx-2.3.4.2/src/frontends/qt4/
H A DGuiCitation.h150 void applyParams(int const choice, bool const full, bool const force,
H A DGuiCitation.cpp201 applyParams(choice, full, force, before, after); in applyView()
613 void GuiCitation::applyParams(int const choice, bool full, bool force, in applyParams() function in lyx::frontend::GuiCitation
/dports/devel/flex-sdk/flex-sdk-4.6.0.23201/frameworks/projects/textLayout/src/flashx/textLayout/elements/
H A DParagraphElement.as306 var applyParams:Array;
310 applyParams = [beginChildIndex, endChildIndex, rest[0]];
313 applyParams = [beginChildIndex, endChildIndex];
315 applyParams = applyParams.concat.apply(applyParams, rest);
318 super.replaceChildren.apply(this, applyParams);
H A DSubParagraphGroupElementBase.as248 var applyParams:Array = [beginChildIndex, endChildIndex];
249 super.replaceChildren.apply(this, applyParams.concat(rest));
/dports/devel/capnproto/capnproto-0.9.0/c++/src/capnp/compiler/
H A Dgenerics.c++45 kj::Maybe<BrandedDecl> BrandedDecl::applyParams( in applyParams() function in capnp::compiler::BrandedDecl
499 .applyParams(kj::heapArray(&elementType, 1), Expression::Reader())); in decompileType()
621 KJ_IF_MAYBE(applied, decl->applyParams(compiledParams.finish(), source)) { in compileDeclExpression()
H A Dgenerics.h104 kj::Maybe<BrandedDecl> applyParams(kj::Array<BrandedDecl> params, Expression::Reader subSource);
/dports/devel/capnproto080/capnproto-0.8.0/c++/src/capnp/compiler/
H A Dnode-translator.c++611 kj::Maybe<BrandedDecl> applyParams(kj::Array<BrandedDecl> params, Expression::Reader subSource);
876 kj::Maybe<NodeTranslator::BrandedDecl> NodeTranslator::BrandedDecl::applyParams( in applyParams() function in capnp::compiler::NodeTranslator::BrandedDecl
1214 .applyParams(kj::heapArray(&elementType, 1), Expression::Reader())); in decompileType()
1336 KJ_IF_MAYBE(applied, decl->applyParams(compiledParams.finish(), source)) { in compileDeclExpression()
/dports/net/yate/yate-6.4.0-1/modules/qt4/
H A Dcustomtree.h404 bool applyParams = true);

12