Home
last modified time | relevance | path

Searched refs:LongBinding (Results 1 – 25 of 64) sorted by relevance

123

/dports/java/berkeley-db/je-6.2.31/examples/persist/
H A DEventExample.java22 import com.sleepycat.bind.tuple.LongBinding;
238 LongBinding.longToEntry(makeDate(1), key); in run()
243 LongBinding.longToEntry(makeDate(2), key); in run()
248 LongBinding.longToEntry(makeDate(3), key); in run()
253 LongBinding.longToEntry(makeDate(4), key); in run()
271 LongBinding.longToEntry(time, key); in run()
285 LongBinding.longToEntry(makeDate(Calendar.JUNE, 1), key); in run()
333 new Date(LongBinding.entryToLong(firstKey)) + in printEvents()
340 if (LongBinding.entryToLong(key) > endDate) { in printEvents()
344 new Date(LongBinding.entryToLong(key)) + in printEvents()
[all …]
/dports/databases/db5/db-5.3.28/examples/java/src/persist/
H A DEventExample.java24 import com.sleepycat.bind.tuple.LongBinding;
249 LongBinding.longToEntry(makeDate(1), key); in run()
254 LongBinding.longToEntry(makeDate(2), key); in run()
259 LongBinding.longToEntry(makeDate(3), key); in run()
264 LongBinding.longToEntry(makeDate(4), key); in run()
282 LongBinding.longToEntry(time, key); in run()
296 LongBinding.longToEntry(makeDate(Calendar.JUNE, 1), key); in run()
344 new Date(LongBinding.entryToLong(firstKey)) + in printEvents()
351 if (LongBinding.entryToLong(key) > endDate) { in printEvents()
355 new Date(LongBinding.entryToLong(key)) + in printEvents()
[all …]
/dports/databases/db18/db-18.1.40/examples/java/src/persist/
H A DEventExample.java23 import com.sleepycat.bind.tuple.LongBinding;
247 LongBinding.longToEntry(makeDate(1), key); in run()
252 LongBinding.longToEntry(makeDate(2), key); in run()
257 LongBinding.longToEntry(makeDate(3), key); in run()
262 LongBinding.longToEntry(makeDate(4), key); in run()
280 LongBinding.longToEntry(time, key); in run()
294 LongBinding.longToEntry(makeDate(Calendar.JUNE, 1), key); in run()
342 new Date(LongBinding.entryToLong(firstKey)) + in printEvents()
349 if (LongBinding.entryToLong(key) > endDate) { in printEvents()
353 new Date(LongBinding.entryToLong(key)) + in printEvents()
[all …]
/dports/java/berkeley-db/je-6.2.31/test/com/sleepycat/je/test/
H A DSecondarySplitTestMain.java13 import com.sleepycat.bind.tuple.LongBinding;
158 LongBinding.longToEntry(rnd.nextLong(), key); in run()
160 LongBinding.longToEntry(time, data); in run()
175 LongBinding.longToEntry(rnd.nextLong(), key); in run()
184 LongBinding.longToEntry(time, data); in run()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core.tests.model/workspace/Compiler/src/org/eclipse/jdt/internal/compiler/ast/
H A DReference.java38 if ((fieldBinding.type == LongBinding) || (fieldBinding.type == DoubleBinding)) { in fieldStore()
51 if ((fieldBinding.type == LongBinding) || (fieldBinding.type == DoubleBinding)) { in fieldStore()
H A DTypeReference.java56 return new SingleTypeReference(LongBinding.simpleName, 0); in baseTypeReference()
77 return new ArrayTypeReference(LongBinding.simpleName, dim, 0); in baseTypeReference()
H A DConditionalExpression.java165 …codeStream.decrStackSize(this.resolvedType == LongBinding || this.resolvedType == DoubleBinding ? … in generateCode()
358 valueIfTrue.computeConversion(scope, LongBinding, valueIfTrueType); in resolveType()
359 valueIfFalse.computeConversion(scope, LongBinding, valueIfFalseType); in resolveType()
360 return this.resolvedType = LongBinding; in resolveType()
H A DSingleNameReference.java261 if ((localBinding.type == LongBinding) || (localBinding.type == DoubleBinding)) { in generateAssignment()
461 if ((localBinding.type == LongBinding) || (localBinding.type == DoubleBinding)) { in generateCompoundAssignment()
498 if ((fieldBinding.type == LongBinding) || (fieldBinding.type == DoubleBinding)) { in generatePostIncrement()
504 if ((fieldBinding.type == LongBinding) || (fieldBinding.type == DoubleBinding)) { in generatePostIncrement()
532 if ((localBinding.type == LongBinding) || (localBinding.type == DoubleBinding)) { in generatePostIncrement()
H A DArrayReference.java99 if (this.resolvedType == LongBinding in generateCode()
160 if ((this.resolvedType == LongBinding) in generatePostIncrement()
/dports/java/berkeley-db/je-6.2.31/test/com/sleepycat/je/tree/
H A DKeyPrefixTest.java27 import com.sleepycat.bind.tuple.LongBinding;
234 assertEquals(end, LongBinding.entryToLong(key)); in doTestPrefixMany()
284 LongBinding.longToEntry(keys[j], key); in insertTimestamps()
286 LongBinding.longToEntry(i, key); in insertTimestamps()
303 LongBinding.longToEntry(next, key); in insertExtraTimestamps()
323 LongBinding.longToEntry(start, key); in deleteEntries()
352 long keyInfo = LongBinding.entryToLong(key); in verifyEntries()
/dports/java/berkeley-db/je-6.2.31/src/com/sleepycat/je/rep/vlsn/
H A DVLSNIndex.java22 import com.sleepycat.bind.tuple.LongBinding;
909 (LongBinding.entryToLong(key) != VLSNRange.RANGE_KEY)); in isValidBucket()
1051 Long keyValue = LongBinding.entryToLong(key); in getGTEBucketFromDatabase()
1094 LongBinding.longToEntry(target.getSequence(), key); in examineGTEBucket()
1138 LongBinding.longToEntry(vlsn.getSequence(), key); in positionBeforeOrEqual()
1183 LongBinding.longToEntry(vlsn.getSequence(), key); in positionAfterOrEqual()
1264 long keyValue = LongBinding.entryToLong(key); in pruneDatabaseHead()
1288 LongBinding.longToEntry(1, key); in pruneDatabaseHead()
1740 Long keyValue = LongBinding.entryToLong(key); in dumpDb()
1822 Long keyValue = LongBinding.entryToLong(key); in verifyDb()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core.tests.model/workspace/Compiler/src/org/eclipse/jdt/internal/compiler/lookup/
H A DNestedTypeBinding.java125 if ((argument.type == LongBinding) || (argument.type == DoubleBinding)){ in computeSyntheticArgumentSlotSizes()
138 if ((argument.type == LongBinding) || (argument.type == DoubleBinding)){ in computeSyntheticArgumentSlotSizes()
H A DBaseTypes.java18 …final BaseTypeBinding LongBinding = new BaseTypeBinding(TypeIds.T_long, "long".toCharArray(), new … field
/dports/java/phpeclipse/plugins/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/lookup/
H A DNestedTypeBinding.java155 if ((argument.type == LongBinding) in computeSyntheticArgumentSlotSizes()
173 if ((argument.type == LongBinding) in computeSyntheticArgumentSlotSizes()
H A DBaseTypes.java26 final BaseTypeBinding LongBinding = new BaseTypeBinding(TypeIds.T_long, field
/dports/databases/db18/db-18.1.40/lang/java/src/com/sleepycat/bind/tuple/
H A DLongBinding.java29 public class LongBinding extends TupleBinding<Long> { class
/dports/java/berkeley-db/je-6.2.31/src/com/sleepycat/bind/tuple/
H A DLongBinding.java29 public class LongBinding extends TupleBinding<Long> { class
/dports/databases/db5/db-5.3.28/lang/java/src/com/sleepycat/bind/tuple/
H A DLongBinding.java29 public class LongBinding extends TupleBinding<Long> { class
/dports/databases/db18/db-18.1.40/test/java/compat/src/com/sleepycat/bind/tuple/test/
H A DTupleBindingTest.java31 import com.sleepycat.bind.tuple.LongBinding;
204 LongBinding.longToEntry(123, entry); in testPrimitiveBindings()
206 assertEquals(123, LongBinding.entryToLong(entry)); in testPrimitiveBindings()
208 new LongBinding().objectToEntry(new Long(123), entry); in testPrimitiveBindings()
/dports/java/berkeley-db/je-6.2.31/test/com/sleepycat/bind/tuple/test/
H A DTupleBindingTest.java31 import com.sleepycat.bind.tuple.LongBinding;
204 LongBinding.longToEntry(123, entry); in testPrimitiveBindings()
206 assertEquals(123, LongBinding.entryToLong(entry)); in testPrimitiveBindings()
208 new LongBinding().objectToEntry(new Long(123), entry); in testPrimitiveBindings()
/dports/java/berkeley-db/je-6.2.31/test/com/sleepycat/je/rep/impl/networkRestore/
H A DNetworkBackupTest.java34 import com.sleepycat.bind.tuple.LongBinding;
155 LongBinding.longToEntry(i, data); in setUp()
161 LongBinding.longToEntry(i, data); in setUp()
418 LongBinding.longToEntry(i, data); in run()
/dports/java/berkeley-db/je-6.2.31/test/com/sleepycat/je/rep/elections/
H A DJoinerElectionTest.java22 import com.sleepycat.bind.tuple.LongBinding;
86 LongBinding.longToEntry(count, data); in testPartialGroupDB()
/dports/databases/db5/db-5.3.28/test/java/compat/src/com/sleepycat/bind/tuple/test/
H A DTupleBindingTest.java27 import com.sleepycat.bind.tuple.LongBinding;
233 LongBinding.longToEntry(123, entry); in testPrimitiveBindings()
235 assertEquals(123, LongBinding.entryToLong(entry)); in testPrimitiveBindings()
237 new LongBinding().objectToEntry(new Long(123), entry); in testPrimitiveBindings()
/dports/java/berkeley-db/je-6.2.31/test/com/sleepycat/je/rep/vlsn/
H A DSyncupWithGapsTest.java19 import com.sleepycat.bind.tuple.LongBinding;
122 LongBinding.longToEntry(i, key); in generateData()
143 LongBinding.longToEntry(i, key); in readData()
/dports/java/berkeley-db/je-6.2.31/test/com/sleepycat/je/rep/impl/
H A DRepTestBase.java24 import com.sleepycat.bind.tuple.LongBinding;
174 LongBinding.longToEntry(i, data); in populateDB()
237 final long value = LongBinding.entryToLong(data); in readDB()

123