Searched refs:newInstance (Results 1 - 25 of 30) sorted by relevance

12

/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 DNonPersistentFormat.java39 return Array.newInstance(getType(), len);
43 public Object newInstance(EntityInput input, boolean rawAccess) { method in class:NonPersistentFormat
H A DMapProxy.java45 Map<K,V> map = newInstance(size);
52 protected abstract Map<K,V> newInstance(int size); method in class:MapProxy
59 protected Map<K,V> newInstance(int size) { method in class:MapProxy.HashMapProxy
69 protected Map<K,V> newInstance(int size) { method in class:MapProxy.TreeMapProxy
H A DReader.java26 Object newInstance(EntityInput input, boolean rawAccess); method in interface:Reader
H A DCollectionProxy.java48 Collection<E> collection = newInstance(elements.length);
55 protected abstract Collection<E> newInstance(int size); method in class:CollectionProxy
62 protected Collection<E> newInstance(int size) { method in class:CollectionProxy.ArrayListProxy
72 protected Collection<E> newInstance(int size) { method in class:CollectionProxy.LinkedListProxy
82 protected Collection<E> newInstance(int size) { method in class:CollectionProxy.HashSetProxy
92 protected Collection<E> newInstance(int size) { method in class:CollectionProxy.TreeSetProxy
150 RawObject collection = (RawObject) format.newInstance(input, true);
H A DPrimitiveArrayFormat.java63 return Array.newInstance(getType(), len);
67 public Object newInstance(EntityInput input, boolean rawAccess) { method in class:PrimitiveArrayFormat
81 a[i] = componentFormat.newInstance(input, true);
85 /* Else, do nothing -- newInstance reads the value. */
109 Object a = newInstance(input, rawAccess);
H A DConverterReader.java36 public Object newInstance(EntityInput input, boolean rawAccess) { method in class:ConverterReader
38 return oldFormat.newInstance(input, true);
H A DProxiedFormat.java82 return Array.newInstance(getType(), len);
86 public Object newInstance(EntityInput input, boolean rawAccess) { method in class:ProxiedFormat
89 return reader.newInstance(null, true);
92 (PersistentProxy) reader.newInstance(null, false);
103 /* Else, do nothing here -- newInstance reads the value. */
113 (PersistentProxy) proxyFormat.newInstance(null, false);
H A DAccessor.java46 Object newInstance(); method in interface:Accessor
H A DObjectArrayFormat.java99 return Array.newInstance(getType(), len);
103 public Object newInstance(EntityInput input, boolean rawAccess) { method in class:ObjectArrayFormat
147 Object a = newInstance(input, rawAccess);
H A DEnhancedAccessor.java97 public Object newInstance() { method in class:EnhancedAccessor
108 return Array.newInstance(type, len);
H A DEnumFormat.java76 return Array.newInstance(getType(), len);
80 public Object newInstance(EntityInput input, boolean rawAccess) { method in class:EnumFormat
91 /* newInstance reads the value -- do nothing here. */
H A DRecordInput.java138 * object during the call to Reader.newInstance below. The newInstance
153 o = reader.newInstance(useInput, rawAccess);
180 Object o = reader.newInstance(this, rawAccess);
H A DCompositeKeyFormat.java204 public Object newInstance(EntityInput input, boolean rawAccess) { method in class:CompositeKeyFormat
206 return accessor.newInstance();
249 Object o = newInstance(in, rawAccess);
H A DSimpleFormat.java68 /* newInstance reads the value -- do nothing here. */
136 public Object newInstance(EntityInput input, boolean rawAccess) { method in class:SimpleFormat.FBool
208 public Object newInstance(EntityInput input, boolean rawAccess) { method in class:SimpleFormat.FByte
285 public Object newInstance(EntityInput input, boolean rawAccess) { method in class:SimpleFormat.FShort
363 public Object newInstance(EntityInput input, boolean rawAccess) { method in class:SimpleFormat.FInt
443 public Object newInstance(EntityInput input, boolean rawAccess) { method in class:SimpleFormat.FLong
522 public Object newInstance(EntityInput input, boolean rawAccess) { method in class:SimpleFormat.FFloat
597 public Object newInstance(EntityInput input, boolean rawAccess) { method in class:SimpleFormat.FDouble
671 public Object newInstance(EntityInput input, boolean rawAccess) { method in class:SimpleFormat.FChar
744 public Object newInstance(EntityInpu method in class:SimpleFormat.FString
781 public Object newInstance(EntityInput input, boolean rawAccess) { method in class:SimpleFormat.FBigInt
818 public Object newInstance(EntityInput input, boolean rawAccess) { method in class:SimpleFormat.FDate
[all...]
H A DRawAccessor.java51 public Object newInstance() { method in class:RawAccessor
54 superObject = ((RawObject) superAccessor.newInstance());
H A DReflectionAccessor.java138 public Object newInstance() { method in class:ReflectionAccessor
140 return constructor.newInstance();
151 return Array.newInstance(type, len);
H A DPersistEntityBinding.java87 Object entity = reader.newInstance(dataInput, rawAccess);
H A DFormat.java775 * Array.newInstance(getType(), len) were called. Formats implement this
777 * reflection overhead of Array.newInstance.
802 public abstract Object newInstance(EntityInput input, boolean rawAccess); method in class:Format
805 * Called after newInstance() to read the rest of the data bytes and fill
807 * newInstance(), this method does nothing.
820 * This is the complement of the newInstance()/readObject() pair.
H A DComplexFormat.java435 Object obj = objAccessor.newInstance();
471 public Object newInstance(EntityInput input, boolean rawAccess) { method in class:ComplexFormat
473 return accessor.newInstance();
617 Object o = newInstance(in, rawAccess);
1950 public Object newInstance(EntityInput input, boolean rawAccess) { method in class:ComplexFormat.EvolveReader
1951 return newFormat.newInstance(input, rawAccess);
/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 DTupleMarshalledBinding.java53 (MarshalledTupleEntry) cls.newInstance();
H A DTupleTupleMarshalledBinding.java64 obj = (MarshalledTupleEntry) cls.newInstance();
/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.java197 MarshalledKey key = (MarshalledKey) keyClass.newInstance();
/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 DEvolveTestBase.java264 this.caseObj = (EvolveCase) caseCls.newInstance();
H A DSequenceTest.java97 SequenceEntity entity = (SequenceEntity) entityCls.newInstance();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/bind/test/
H A DBindingSpeedTest.java389 SAXParserFactory saxFactory = SAXParserFactory.newInstance();

Completed in 214 milliseconds

12