Searched refs:subIndex (Results 1 - 7 of 7) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/persist/gettingStarted/
H A DSimpleDA.java28 sec_scursor = sIdx.subIndex("skeyone").entities();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/carbon/
H A Dimaglist.cpp87 for (int subIndex = 0; subIndex < numImages; subIndex++)
89 wxRect rect(m_width * subIndex, 0, m_width, m_height);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/generic/
H A Dimaglist.cpp84 for (int subIndex = 0; subIndex < numImages; subIndex++)
86 wxRect rect(m_width * subIndex, 0, m_width, m_height);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/persist/test/
H A DOperationTest.java418 EntityIndex<Integer,MyEntity> subIndex = secIndex.subIndex(1);
420 e = subIndex.get(txn, 1, null);
423 e = subIndex.get(txn, 2, null);
426 e = subIndex.get(txn, 3, null);
429 e = subIndex.get(txn, 5, null);
432 boolean deleted = subIndex.delete(txn, 1);
434 assertNull(subIndex.get(txn, 1, null));
435 assertNotNull(subIndex.get(txn, 2, null));
437 EntityCursor<MyEntity> cursor = subIndex
[all...]
H A DIndexTest.java396 checkIndex(index.subIndex(secKey),
400 checkIndex(indexRaw.subIndex(secKey),
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/persist/
H A DPersonExample.java189 dao.personByParentSsn.subIndex("111-11-1111").entities();
234 employees = dao.personByEmployerIds.subIndex(gizmoInc.id);
236 employees = dao.personByEmployerIds.subIndex(gadgetInc.id);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/
H A DSecondaryIndex.java119 * (SK). This mapping is provided by the {@link #subIndex} method. A
210 * {@code EntityIndex<Long,Entity>} subIndex = employeeByDepartment.subIndex(myDept);
211 * {@code EntityCursor<Employee>} cursor = subIndex.entities();
299 * {@code EntityIndex<Long,Entity>} subIndex = employeeByOrganization.subIndex(myOrg);
300 * {@code EntityCursor<Employee>} cursor = subIndex.entities();
927 public EntityIndex<PK,E> subIndex(SK key) method in class:SecondaryIndex

Completed in 86 milliseconds