/aosp_15_r20/external/google-cloud-java/google-cloud-examples/src/test/java/com/google/cloud/examples/datastore/snippets/ |
H A D | ITQuerySnippets.java | 40 private static Entity entity2; field in ITQuerySnippets 58 entity2 = Entity.newBuilder(key2).set("description", "entity2").build(); in beforeClass() 59 datastore.put(entity1, entity2); in beforeClass() 64 datastore.delete(entity1.getKey(), entity2.getKey()); in afterClass() 72 while (!resultSet.contains(entity1) || !resultSet.contains(entity2)) { in testNewQuery() 83 while (!resultSet.contains(entity1) || !resultSet.contains(entity2)) { in testNewTypedQuery() 94 while (!resultSet.contains(entity1) || !resultSet.contains(entity2)) { in testNewEntityQuery() 105 while (!resultSet.contains(entity1.getKey()) || !resultSet.contains(entity2.getKey())) { in testNewKeyQuery() 119 || !resultSet.contains(entity2.getString("description"))) { in testNewProjectionEntityQuery()
|
H A D | ITTransactionSnippets.java | 140 Entity entity2 = datastore.get(key2); in testAddGetMultipleDeferredId() local 141 assertEquals("value2", entity2.getString("propertyName")); in testAddGetMultipleDeferredId() 175 Entity entity2 = datastore.get(key2); in testPutGetMultipleDeferredId() local 176 assertEquals("value2", entity2.getString("propertyName")); in testPutGetMultipleDeferredId() 184 Entity entity2 = Entity.newBuilder(key2).set("description", "fetch2").build(); in testFetchDeleteEntitiesWithKeys() local 185 datastore.put(entity1, entity2); in testFetchDeleteEntitiesWithKeys() 195 assertTrue(entities.contains(entity2)); in testFetchDeleteEntitiesWithKeys() 222 Entity entity2 = Entity.newBuilder(key2).set("description", "run2").build(); in testRun() local 223 datastore.put(entity2); in testRun() 229 assertEquals(entity2, entities.get(0)); in testRun()
|
/aosp_15_r20/external/google-cloud-java/google-cloud-examples/src/main/java/com/google/cloud/examples/datastore/snippets/ |
H A D | TransactionSnippets.java | 162 Entity entity2 = entityBuilder2.build(); in multipleAddEntities() local 164 transaction.add(entity1, entity2); in multipleAddEntities() 184 Entity entity2 = entityBuilder2.build(); in multipleUpdateEntities() local 186 transaction.update(entity1, entity2); in multipleUpdateEntities() 204 FullEntity entity2 = entityBuilder2.build(); in multipleAddEntitiesDeferredId() local 206 transaction.addWithDeferredIdAllocation(entity1, entity2); in multipleAddEntitiesDeferredId() 225 FullEntity entity2 = entityBuilder2.build(); in multiplePutEntitiesDeferredId() local 227 transaction.putWithDeferredIdAllocation(entity1, entity2); in multiplePutEntitiesDeferredId() 277 Entity entity2 = entityBuilder2.build(); in multiplePutEntities() local 279 transaction.put(entity1, entity2); in multiplePutEntities()
|
H A D | DatastoreSnippets.java | 78 Entity entity2 = Entity.newBuilder(key2).set("title", "title").build(); in newBatch() local 80 batch.add(entity2); in newBatch() 127 Entity entity2 = entityBuilder2.build(); in batchUpdateEntities() local 129 datastore.update(entity1, entity2); in batchUpdateEntities() 166 Entity entity2 = entityBuilder2.build(); in batchAddEntities() local 169 datastore.add(entity1, entity2); in batchAddEntities() 205 Entity entity2 = entityBuilder2.build(); in batchPutEntities() local 207 datastore.put(entity1, entity2); in batchPutEntities()
|
/aosp_15_r20/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
H A D | documentimportnode19.java | 82 Entity entity2; in runTest() local 98 entity2 = (Entity) nodeMap.getNamedItem("ent2"); in runTest() 100 entityImp2 = (Entity) docImp.importNode(entity2, false); in runTest() 102 nodeName = entity2.getNodeName(); in runTest() 108 systemId = entity2.getSystemId(); in runTest() 114 notationName = entity2.getNotationName(); in runTest()
|
H A D | importNode12.java | 73 Entity entity2; in runTest() local 86 entity2 = (Entity) entityList.getNamedItem("ent4"); in runTest() 87 entity1 = (Entity) doc.importNode(entity2, true); in runTest()
|
H A D | importNode09.java | 74 Entity entity2; in runTest() local 87 entity2 = (Entity) entityList.getNamedItem("ent6"); in runTest() 88 entity1 = (Entity) doc.importNode(entity2, false); in runTest()
|
/aosp_15_r20/frameworks/base/packages/SettingsLib/DataStore/tests/src/com/android/settingslib/datastore/ |
H A D | BackupRestoreStorageTest.kt | 58 private val entity2 = Entity("key2", "value2".toByteArray(), BackupZipCodec.BEST_SPEED) in <lambda>() constant in com.android.settingslib.datastore.BackupRestoreStorageTest 117 assertThat(newEntityStates).containsKey(entity2.key) in <lambda>() 125 val storage = TestStorage(entity1, entity2) in <lambda>() 133 containsKey(entity2.key) in <lambda>() 261 val storage = spy(TestStorage(entity1, entity2)) in <lambda>() 281 containsKey(entity2.key) in <lambda>() 298 entity2.verifyRestoredData() in <lambda>()
|
/aosp_15_r20/prebuilts/go/linux-x86/src/html/ |
D | entity.go | 21 var entity2 map[string][2]rune var 2169 entity2 = map[string][2]rune{
|
D | entity_test.go | 17 if len(entity) == 0 || len(entity2) == 0 { 32 for k, v := range entity2 {
|
D | escape.go | 146 } else if x := entity2[string(entityName)]; x[0] != 0 {
|
/aosp_15_r20/external/armnn/src/timelineDecoder/tests/ |
H A D | JSONTimelineDecoderTests.cpp | 261 arm::pipe::ITimelineDecoder::Entity entity2; in RunSimpleModelThroughDecoder() local 262 entity2.m_Guid = uint64_t(2); in RunSimpleModelThroughDecoder() 263 timelineDecoder.CreateEntity(entity2); in RunSimpleModelThroughDecoder() 752 JSONTimelineDecoder::JSONEntity entity2 = model.jsonEntities.at(rootEntity.childEntities[2]); variable 753 CHECK(entity2.GetName() == "output"); 754 CHECK(entity2.GetType() == "layer"); 756 …JSONTimelineDecoder::JSONEntity output_workload_entity = model.jsonEntities.at(entity2.childEntiti…
|
/aosp_15_r20/external/python/cpython2/Modules/expat/ |
D | xmlrole.c | 133 entity0, entity1, entity2, entity3, entity4, entity5, entity6, variable 480 state->handler = entity2; in entity0() 504 entity2(PROLOG_STATE *state, in entity2() function
|
/aosp_15_r20/external/expat/expat/lib/ |
H A D | xmlrole.c | 127 doctype3, doctype4, doctype5, internalSubset, entity0, entity1, entity2, variable 428 state->handler = entity2; in entity0() 451 entity2(PROLOG_STATE *state, int tok, const char *ptr, const char *end, in entity2() function
|
/aosp_15_r20/external/python/cpython3/Modules/expat/ |
D | xmlrole.c | 127 doctype3, doctype4, doctype5, internalSubset, entity0, entity1, entity2, variable 428 state->handler = entity2; in entity0() 451 entity2(PROLOG_STATE *state, int tok, const char *ptr, const char *end, in entity2() function
|
/aosp_15_r20/packages/modules/AppSearch/testing/servicestests/src/com/android/server/appsearch/external/localstorage/ |
D | AppSearchLoggerTest.java | 913 GenericDocument entity2 = in testLoggingStats_search_join() local 944 entity2, in testLoggingStats_search_join() 998 assertThat(searchResultPage.getResults().get(1).getGenericDocument()).isEqualTo(entity2); in testLoggingStats_search_join()
|
/aosp_15_r20/prebuilts/module_sdk/art/current/test-exports/java/ |
D | core-tests.jar | META-INF/
META-INF/MANIFEST.MF
META-INF/maven/
META- ... |
/aosp_15_r20/prebuilts/module_sdk/art/1/test-exports/java/ |
D | core-tests.jar | META-INF/
META-INF/MANIFEST.MF
META-INF/maven/
META- ... |