Searched refs:Object (Results 76 - 100 of 301) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/collections/
H A DDataView.java200 DataView valueSetView(Object singleKey)
217 DataView subView(Object beginKey, boolean beginInclusive,
218 Object endKey, boolean endInclusive,
231 DataView duplicatesView(Object secondaryKey,
273 private void setRange(Object beginKey, boolean beginInclusive,
274 Object endKey, boolean endInclusive)
335 OperationStatus append(Object value, Object[] retPrimaryKey,
336 Object[] retValue)
420 DataCursor join(DataView[] indexViews, Object[] indexKey
[all...]
H A DStoredValueSet.java105 public boolean add(Object entity) {
146 public boolean contains(Object value) {
164 public boolean remove(Object value) {
169 Object makeIteratorData(BaseIterator iterator,
H A DStoredContainer.java288 Object get(Object key) {
306 Object put(final Object key, final Object value) {
312 Object[] oldValue = new Object[1];
323 final boolean removeKey(final Object key, final Object[] oldVal) {
349 boolean containsKey(Object ke
[all...]
H A DDataCursor.java75 DataCursor(DataView view, boolean writeAllowed, Object singleKey)
86 Object beginKey, boolean beginInclusive,
87 Object endKey, boolean endInclusive)
344 Object getCurrentKey()
353 Object getCurrentValue()
545 OperationStatus getSearchKey(Object key, Object value,
585 OperationStatus getSearchKeyRange(Object key, Object value,
610 OperationStatus findBoth(Object ke
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/impl/
H A DPersistKeyBinding.java69 Object bytesToObject(byte[] bytes, int offset, int length) {
77 static Object readKey(Format keyFormat,
88 public Object entryToObject(DatabaseEntry entry) {
93 public void objectToEntry(Object object, DatabaseEntry entry) {
H A DFormat.java242 /** Object */
561 while (stype != null && stype != Object.class) {
779 abstract Object newArray(int len);
802 public abstract Object newInstance(EntityInput input, boolean rawAccess);
814 public abstract Object readObject(Object o,
822 abstract void writeObject(Object o, EntityOutput output, boolean rawAccess);
865 Object entity,
867 Object keyElement) {
875 boolean isPriKeyNullOrZero(Object
[all...]
H A DPersistComparator.java24 public class PersistComparator implements Comparator<Object>, Serializable {
44 public int compare(Object o1, Object o2) {
H A DPersistEntityBinding.java58 public Object entryToObject(DatabaseEntry key, DatabaseEntry data) {
74 static Object readEntity(Catalog catalog,
87 Object entity = reader.newInstance(dataInput, rawAccess);
92 public void objectToData(Object entity, DatabaseEntry data) {
109 Object entity,
118 public void objectToKey(Object entity, DatabaseEntry key) {
136 private Format getValidFormat(Object entity) {
H A DProxiedFormat.java81 Object newArray(int len) {
86 public Object newInstance(EntityInput input, boolean rawAccess) {
99 public Object readObject(Object o, EntityInput input, boolean rawAccess) {
108 void writeObject(Object o, EntityOutput output, boolean rawAccess) {
120 Object convertRawObject(Catalog catalog,
126 Object o = proxy.convertProxy();
H A DRecordInput.java91 public Object readObject() {
97 Object o = null;
166 Object o2 = reader.readObject(o, useInput, rawAccess);
176 public Object readKeyObject(Format format) {
180 Object o = reader.newInstance(this, rawAccess);
217 public void registerPriKeyObject(Object o) {
H A DCatalog.java93 Object convertRawObject(RawObject o, IdentityHashMap converted);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/model/
H A DClassMetadata.java123 public boolean equals(Object other) {
149 static boolean nullOrEqual(Object o1, Object o2) {
157 static int hashCode(Object o) {
H A DPrimaryKeyMetadata.java47 public boolean equals(Object other) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/bind/serial/test/
H A DSerialBindingTest.java87 private void primitiveBindingTest(Object val) {
95 Object val2 = binding.entryToObject(buffer);
99 Object valWithWrongCls = (cls == String.class)
100 ? ((Object) new Integer(0)) : ((Object) new String(""));
141 Object result = binding.entryToObject(keyBuffer, buffer);
161 Object result = binding.entryToObject(keyBuffer, buffer);
193 public FastOutputStream getSerialOutput(Object object) {
234 public FastOutputStream getSerialOutput(Object object) {
249 public Object entryToObjec
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/collections/test/
H A DTestEntity.java25 public boolean equals(Object o) {
H A DTestEntityBinding.java27 public Object entryToObject(DatabaseEntry key, DatabaseEntry value) {
48 public void objectToKey(Object object, DatabaseEntry key) {
58 public void objectToData(Object object, DatabaseEntry value) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/bind/tuple/
H A DTupleTupleMarshalledBinding.java58 public Object entryToObject(TupleInput keyInput, TupleInput dataInput) {
81 public void objectToKey(Object object, TupleOutput output) {
88 public void objectToData(Object object, TupleOutput output) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/evolve/
H A DConverter.java79 Method m = cls.getMethod("equals", Object.class);
80 if (m.getDeclaringClass() == Object.class) {
83 "explicitly (Object.equals is not sufficient): " +
104 public boolean equals(Object other) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/marshal/
H A DSampleViews.java47 // EntryBinding classes to bind the stored tuple entry to a key Object.
194 public Object entryToObject(TupleInput input) {
210 public void objectToEntry(Object object, TupleOutput output) {
251 public Object entryToObject(TupleInput tupleInput, Object javaInput) {
261 public void objectToKey(Object object, TupleOutput output) {
271 public Object objectToData(Object object) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/Micromax/Linux/lib/
H A Dui.jarcom/ com/apple/ com/apple/eawt/ com/apple/eawt/Application.class Application.java package com.apple ...
/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 DBindingTest.java200 public Object getPriKeyObject() {
204 public void validate(Object other) {
282 public Object getPriKeyObject() {
286 public void validate(Object other) {
384 public Object getPriKeyObject() {
388 public void validate(Object other) {
417 {"f3", Object.class.getName()},
433 private Object f3 = MyEnum.TWO;
437 public Object getPriKeyObject() {
441 public void validate(Object othe
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/gnu/gettext/
H A DDumpResource.java54 private void dumpMessage (String msgid, String msgid_plural, Object msgstr) throws IOException {
80 private Object lookup (String key) {
81 Object value = null;
84 value = lookupMethod.invoke(catalog, new Object[] { key });
119 Object header_entry = null;
136 Object plural = null;
141 plural = pluralMethod.invoke(catalog, new Object[0]);
160 Object value = lookup(key);
172 Object value = lookup(key);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/entity/
H A DSampleDatabase.java251 public Object createSecondaryKey(Object primaryKeyInput,
252 Object valueInput) {
287 public Object createSecondaryKey(Object primaryKeyInput,
288 Object valueInput) {
324 public Object createSecondaryKey(Object primaryKeyInput,
325 Object valueInput) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/index/
H A DSampleDatabase.java251 public Object createSecondaryKey(Object primaryKeyInput,
252 Object valueInput) {
287 public Object createSecondaryKey(Object primaryKeyInput,
288 Object valueInput) {
324 public Object createSecondaryKey(Object primaryKeyInput,
325 Object valueInput) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/bind/tuple/test/
H A DTupleBindingTest.java99 Object val, int byteSize) {
108 Object val2 = binding.entryToObject(buffer);
112 Object valWithWrongCls = (primitiveCls == String.class)
113 ? ((Object) new Integer(0)) : ((Object) new String(""));
123 private void forMoreCoverageTest(TupleBinding val1,Object val2) {
132 Object val3 = val1.entryToObject(input);
290 Object result = binding.entryToObject(buffer);
307 Object result = binding.entryToObject(buffer);
327 Object resul
[all...]

Completed in 156 milliseconds

1234567891011>>