Home
last modified time | relevance | path

Searched refs:foundDoc (Results 1 – 25 of 34) sorted by relevance

12

/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/repl/
H A Doplogreader.h82 BSONObj foundDoc; in findOneByUUID() local
83 std::tie(foundDoc, std::ignore) = conn()->findOneByUUID(db, uuid, filter); in findOneByUUID()
84 return foundDoc; in findOneByUUID()
/dports/security/vault/vault-1.8.2/vendor/go.mongodb.org/mongo-driver/mongo/
H A Dclient_side_encryption_examples_test.go220 var foundDoc bson.M
221 if err = coll.FindOne(context.TODO(), bson.D{}).Decode(&foundDoc); err != nil {
226 …decrypted, err := clientEncryption.Decrypt(context.TODO(), foundDoc["encryptedField"].(primitive.B…
323 var foundDoc bson.M
324 if err = coll.FindOne(context.TODO(), bson.D{}).Decode(&foundDoc); err != nil {
327 fmt.Printf("Decrypted document: %v\n", foundDoc)
/dports/www/grafana8/grafana-8.3.6/vendor/go.mongodb.org/mongo-driver/mongo/
H A Dclient_side_encryption_examples_test.go220 var foundDoc bson.M
221 if err = coll.FindOne(context.TODO(), bson.D{}).Decode(&foundDoc); err != nil {
226 …decrypted, err := clientEncryption.Decrypt(context.TODO(), foundDoc["encryptedField"].(primitive.B…
323 var foundDoc bson.M
324 if err = coll.FindOne(context.TODO(), bson.D{}).Decode(&foundDoc); err != nil {
327 fmt.Printf("Decrypted document: %v\n", foundDoc)
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/go.mongodb.org/mongo-driver/mongo/
H A Dclient_side_encryption_examples_test.go220 var foundDoc bson.M
221 if err = coll.FindOne(context.TODO(), bson.D{}).Decode(&foundDoc); err != nil {
226 …decrypted, err := clientEncryption.Decrypt(context.TODO(), foundDoc["encryptedField"].(primitive.B…
323 var foundDoc bson.M
324 if err = coll.FindOne(context.TODO(), bson.D{}).Decode(&foundDoc); err != nil {
327 fmt.Printf("Decrypted document: %v\n", foundDoc)
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.javadoc/share/classes/com/sun/tools/javadoc/main/
H A DPackageDocImpl.java73 private boolean foundDoc; // found a doc comment in either field in PackageDocImpl
93 foundDoc = (documentation != null); in PackageDocImpl()
372 if (foundDoc) { in checkDoc()
378 foundDoc = true; in checkDoc()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/jdk.javadoc/share/classes/com/sun/tools/javadoc/main/
H A DPackageDocImpl.java73 private boolean foundDoc; // found a doc comment in either field in PackageDocImpl
93 foundDoc = (documentation != null); in PackageDocImpl()
372 if (foundDoc) { in checkDoc()
378 foundDoc = true; in checkDoc()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.javadoc/share/classes/com/sun/tools/javadoc/main/
H A DPackageDocImpl.java73 private boolean foundDoc; // found a doc comment in either field in PackageDocImpl
93 foundDoc = (documentation != null); in PackageDocImpl()
372 if (foundDoc) { in checkDoc()
378 foundDoc = true; in checkDoc()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/langtools/src/share/classes/com/sun/tools/javadoc/
H A DPackageDocImpl.java69 private boolean foundDoc; // found a doc comment in either field in PackageDocImpl
89 foundDoc = (documentation != null); in PackageDocImpl()
369 if (foundDoc) { in checkDoc()
375 foundDoc = true; in checkDoc()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/langtools/src/share/classes/com/sun/tools/javadoc/
H A DPackageDocImpl.java69 private boolean foundDoc; // found a doc comment in either field in PackageDocImpl
89 foundDoc = (documentation != null); in PackageDocImpl()
369 if (foundDoc) { in checkDoc()
375 foundDoc = true; in checkDoc()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/s/client/
H A Dshard_local_test.cpp194 BSONObj foundDoc = docs[0]; in TEST_F() local
195 ASSERT_EQUALS(3, foundDoc["fooItem"].numberInt()); in TEST_F()
196 ASSERT_EQUALS(452, foundDoc["fooRandom"].numberInt()); in TEST_F()
/dports/devel/cmake-gui/cmake-3.22.1/Source/
H A DcmFindBase.cxx45 bool foundDoc = false; in ParseArguments() local
47 if (foundDoc || argsIn[j] != "DOC") { in ParseArguments()
60 foundDoc = true; in ParseArguments()
/dports/devel/cmake-doc/cmake-3.22.1/Source/
H A DcmFindBase.cxx45 bool foundDoc = false; in ParseArguments() local
47 if (foundDoc || argsIn[j] != "DOC") { in ParseArguments()
60 foundDoc = true; in ParseArguments()
/dports/devel/cmake/cmake-3.22.1/Source/
H A DcmFindBase.cxx45 bool foundDoc = false; in ParseArguments() local
47 if (foundDoc || argsIn[j] != "DOC") { in ParseArguments()
60 foundDoc = true; in ParseArguments()
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/go.mongodb.org/mongo-driver/mongo/
H A Dclient_internal_test.go134 var foundDoc NewCodec
135 err = c.Decode(&foundDoc)
138 require.Equal(t, foundDoc.ID, int64(-10))
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/dbtests/
H A Dquery_stage_update.cpp165 bool foundDoc = false; in assertHasDoc() local
168 foundDoc = true; in assertHasDoc()
172 ASSERT(foundDoc); in assertHasDoc()
/dports/www/firefox-legacy/firefox-52.8.0esr/dom/ipc/
H A DContentChild.cpp3002 nsCOMPtr<nsIDocument> foundDoc; in RecvPWebBrowserPersistDocumentConstructor() local
3004 foundDoc = nsContentUtils::GetSubdocumentWithOuterWindowId(rootDoc, aOuterWindowID); in RecvPWebBrowserPersistDocumentConstructor()
3006 foundDoc = rootDoc; in RecvPWebBrowserPersistDocumentConstructor()
3009 if (!foundDoc) { in RecvPWebBrowserPersistDocumentConstructor()
3012 static_cast<WebBrowserPersistDocumentChild*>(aActor)->Start(foundDoc); in RecvPWebBrowserPersistDocumentConstructor()
/dports/net-mgmt/semaphore/semaphore-2.6.8/vendor/go.mongodb.org/mongo-driver/mongo/integration/
H A Dclient_side_encryption_prose_test.go496 foundDoc, err := cpt.coll.FindOne(mtest.Background, bson.D{}).DecodeBytes()
510 foundVal := foundDoc.Lookup(expectedKey).Document().Lookup("value")
/dports/lang/spidermonkey60/firefox-60.9.0/dom/base/
H A DnsFrameLoader.cpp3312 nsCOMPtr<nsIDocument> foundDoc; in StartPersistence() local
3314 foundDoc = nsContentUtils::GetSubdocumentWithOuterWindowId(rootDoc, in StartPersistence()
3317 foundDoc = rootDoc; in StartPersistence()
3320 if (!foundDoc) { in StartPersistence()
3324 new mozilla::WebBrowserPersistLocalDocument(foundDoc); in StartPersistence()
/dports/www/firefox-legacy/firefox-52.8.0esr/dom/base/
H A DnsFrameLoader.cpp3343 nsCOMPtr<nsIDocument> foundDoc; in StartPersistence() local
3345 foundDoc = nsContentUtils::GetSubdocumentWithOuterWindowId(rootDoc, aOuterWindowID); in StartPersistence()
3347 foundDoc = rootDoc; in StartPersistence()
3350 if (!foundDoc) { in StartPersistence()
3354 new mozilla::WebBrowserPersistLocalDocument(foundDoc); in StartPersistence()
/dports/lang/spidermonkey60/firefox-60.9.0/dom/ipc/
H A DContentChild.cpp2830 nsCOMPtr<nsIDocument> foundDoc; in RecvPWebBrowserPersistDocumentConstructor() local
2832 foundDoc = nsContentUtils::GetSubdocumentWithOuterWindowId(rootDoc, in RecvPWebBrowserPersistDocumentConstructor()
2835 foundDoc = rootDoc; in RecvPWebBrowserPersistDocumentConstructor()
2838 if (!foundDoc) { in RecvPWebBrowserPersistDocumentConstructor()
2841 static_cast<WebBrowserPersistDocumentChild*>(aActor)->Start(foundDoc); in RecvPWebBrowserPersistDocumentConstructor()
/dports/security/vault/vault-1.8.2/vendor/go.mongodb.org/mongo-driver/mongo/integration/
H A Dclient_side_encryption_prose_test.go497 foundDoc, err := cpt.coll.FindOne(mtest.Background, bson.D{}).DecodeBytes()
511 foundVal := foundDoc.Lookup(expectedKey).Document().Lookup("value")
/dports/www/grafana8/grafana-8.3.6/vendor/go.mongodb.org/mongo-driver/mongo/integration/
H A Dclient_side_encryption_prose_test.go536 foundDoc, err := cpt.coll.FindOne(mtest.Background, bson.D{}).DecodeBytes()
550 foundVal := foundDoc.Lookup(expectedKey).Document().Lookup("value")
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/go.mongodb.org/mongo-driver/mongo/integration/
H A Dclient_side_encryption_prose_test.go535 foundDoc, err := cpt.coll.FindOne(mtest.Background, bson.D{}).DecodeBytes()
549 foundVal := foundDoc.Lookup(expectedKey).Document().Lookup("value")
/dports/lang/spidermonkey78/firefox-78.9.0/dom/base/
H A DnsFrameLoader.cpp3263 nsCOMPtr<Document> foundDoc = context->GetDocument(); in StartPersistence() local
3265 if (!foundDoc) { in StartPersistence()
3269 new mozilla::WebBrowserPersistLocalDocument(foundDoc); in StartPersistence()
/dports/www/firefox-esr/firefox-91.8.0/dom/ipc/
H A DContentChild.cpp3051 nsCOMPtr<Document> foundDoc = aContext.get()->GetDocument(); in RecvPWebBrowserPersistDocumentConstructor() local
3053 if (!foundDoc) { in RecvPWebBrowserPersistDocumentConstructor()
3056 static_cast<WebBrowserPersistDocumentChild*>(aActor)->Start(foundDoc); in RecvPWebBrowserPersistDocumentConstructor()

12