Home
last modified time | relevance | path

Searched refs:base (Results 1 – 25 of 70) sorted by relevance

123

/libcore/ojluni/src/test/java/time/test/java/time/
DTestOffsetDateTime.java125 …OffsetDateTime base = OffsetDateTime.of(LocalDate.of(2008, 6, 30), LocalTime.of(11, 30, 59), OFFSE… in test_withOffsetSameLocal() local
126 OffsetDateTime test = base.withOffsetSameLocal(OFFSET_PTWO); in test_withOffsetSameLocal()
127 assertSame(test.toLocalDateTime(), base.toLocalDateTime()); in test_withOffsetSameLocal()
133 …OffsetDateTime base = OffsetDateTime.of(LocalDate.of(2008, 6, 30), LocalTime.of(11, 30, 59), OFFSE… in test_withOffsetSameLocal_noChange() local
134 OffsetDateTime test = base.withOffsetSameLocal(OFFSET_PONE); in test_withOffsetSameLocal_noChange()
135 assertSame(test, base); in test_withOffsetSameLocal_noChange()
140 …OffsetDateTime base = OffsetDateTime.of(LocalDate.of(2008, 6, 30), LocalTime.of(11, 30, 59), OFFSE… in test_withOffsetSameInstant_noChange() local
141 OffsetDateTime test = base.withOffsetSameInstant(OFFSET_PONE); in test_withOffsetSameInstant_noChange()
142 assertSame(test, base); in test_withOffsetSameInstant_noChange()
147 …OffsetDateTime base = OffsetDateTime.of(LocalDate.of(2008, 6, 30), LocalTime.of(11, 30, 59), OFFSE… in test_withYear_noChange() local
[all …]
/libcore/luni/src/test/java/libcore/icu/
DRelativeDateTimeFormatterTest.java102 final long base = cal.getTimeInMillis(); in test_getRelativeTimeSpanString_helper() local
105 getRelativeTimeSpanString(en_US, tz, base - delta, base, minResolution, flags)); in test_getRelativeTimeSpanString_helper()
107 getRelativeTimeSpanString(en_US, tz, base + delta, base, minResolution, flags)); in test_getRelativeTimeSpanString_helper()
427 final long base = cal.getTimeInMillis(); in test_getRelativeDateTimeString() local
430 getRelativeDateTimeString(en_US, tz, base - 5 * SECOND_IN_MILLIS, base, 0, in test_getRelativeDateTimeString()
433 getRelativeDateTimeString(en_US, tz, base - 5 * MINUTE_IN_MILLIS, base, 0, in test_getRelativeDateTimeString()
436 getRelativeDateTimeString(en_US, tz, base - 5 * MINUTE_IN_MILLIS, base, in test_getRelativeDateTimeString()
439 getRelativeDateTimeString(en_US, tz, base - 5 * HOUR_IN_MILLIS, base, in test_getRelativeDateTimeString()
442 getRelativeDateTimeString(en_US, tz, base - 15 * HOUR_IN_MILLIS, base, 0, in test_getRelativeDateTimeString()
445 getRelativeDateTimeString(en_US, tz, base - 5 * DAY_IN_MILLIS, base, 0, in test_getRelativeDateTimeString()
[all …]
/libcore/luni/src/test/java/libcore/java/net/
DURITest.java302 URI base = new URI("http://host/file?query/x"); in testRelativePathOnQuery() local
303 URI uri = base.resolve("another"); in testRelativePathOnQuery()
311 URI base = new URI("http://host/file?query/x#fragment"); in testRelativeFragmentOnQuery() local
312 URI uri = base.resolve("#another"); in testRelativeFragmentOnQuery()
325 URI base = new URI("http://host/file"); in testRelativePathAndFragment() local
326 assertEquals("http://host/another#fragment", base.resolve("another#fragment").toString()); in testRelativePathAndFragment()
330 URI base = new URI("http://host/a/b/c"); in testRelativeParentDirectory() local
331 assertEquals("http://host/a/d", base.resolve("../d").toString()); in testRelativeParentDirectory()
335 URI base = new URI("http://host/a/b/c"); in testRelativeChildDirectory() local
336 assertEquals("http://host/a/b/d/e", base.resolve("d/e").toString()); in testRelativeChildDirectory()
[all …]
DURLTest.java388 URL base = new URL("http://host/file?query/x"); in testRelativePathOnQuery() local
389 URL url = new URL(base, "another"); in testRelativePathOnQuery()
398 URL base = new URL("http://host/file?query/x#fragment"); in testRelativeFragmentOnQuery() local
399 URL url = new URL(base, "#another"); in testRelativeFragmentOnQuery()
433 URL base = new URL("http://host/file"); in testRelativePathAndFragment() local
434 assertEquals("http://host/another#fragment", new URL(base, "another#fragment").toString()); in testRelativePathAndFragment()
438 URL base = new URL("http://host/a/b/c"); in testRelativeParentDirectory() local
439 assertEquals("http://host/a/d", new URL(base, "../d").toString()); in testRelativeParentDirectory()
443 URL base = new URL("http://host/a/b/c"); in testRelativeChildDirectory() local
444 assertEquals("http://host/a/b/d/e", new URL(base, "d/e").toString()); in testRelativeChildDirectory()
[all …]
DOldAndroidURITest.java44 private static void resolve(String base, String uri, String expected) { in resolve() argument
45 URI b = URI.create(base); in resolve()
/libcore/ojluni/src/test/java/time/tck/java/time/
DTCKZonedDateTime.java323 ZonedDateTime base = ZonedDateTime.of(LocalDateTime.of(1970, 1, 1, 12, 0), ZoneOffset.UTC);
326 Clock clock = Clock.fixed(base.toInstant(), offset);
393 LocalDateTime base = LocalDateTime.of(2008, 6, 30, 11, 30, 10, 500);
394 ZonedDateTime test = ZonedDateTime.of(base, ZONE_PARIS);
417 LocalDateTime base = LocalDateTime.of(2008, 6, 30, 11, 30, 10, 500);
418 ZonedDateTime.of(base, null);
1006 …ZonedDateTime base = ZonedDateTime.ofStrict(TEST_LOCAL_2008_06_30_11_30_59_500, OFFSET_0200, ZONE_…
1007 ZonedDateTime test = base.withEarlierOffsetAtOverlap();
1008 assertEquals(test, base); // not changed
1013 …ZonedDateTime base = ZonedDateTime.ofStrict(TEST_PARIS_OVERLAP_2008_10_26_02_30, OFFSET_0100, ZONE…
[all …]
DTCKOffsetTime.java251 Instant base = LocalDateTime.of(1970, 1, 1, 12, 0).toInstant(ZoneOffset.UTC);
254 Clock clock = Clock.fixed(base, offset);
384 ZonedDateTime base = LocalDateTime.of(2007, 7, 15, 11, 30, 59, 500).atZone(OFFSET_PONE);
385 assertEquals(OffsetTime.from(base), TEST_11_30_59_500_PONE);
643 OffsetTime base = OffsetTime.of(11, 30, 59, 0, OFFSET_PONE);
644 OffsetTime test = base.withOffsetSameLocal(OFFSET_PTWO);
645 assertEquals(test.toLocalTime(), base.toLocalTime());
651 OffsetTime base = OffsetTime.of(11, 30, 59, 0, OFFSET_PONE);
652 OffsetTime test = base.withOffsetSameLocal(OFFSET_PONE);
653 assertEquals(test, base);
[all …]
DTCKOffsetDateTime.java309 OffsetDateTime base = OffsetDateTime.of(1970, 1, 1, 12, 0, 0, 0, ZoneOffset.UTC);
312 Clock clock = Clock.fixed(base.toInstant(), offset);
772 …OffsetDateTime base = OffsetDateTime.of(LocalDate.of(2008, 6, 30), LocalTime.of(11, 30, 59), OFFSE…
773 base.withOffsetSameLocal(null);
781 …OffsetDateTime base = OffsetDateTime.of(LocalDate.of(2008, 6, 30), LocalTime.of(11, 30, 59), OFFSE…
782 OffsetDateTime test = base.withOffsetSameInstant(OFFSET_PTWO);
789 …OffsetDateTime base = OffsetDateTime.of(LocalDate.of(2008, 6, 30), LocalTime.of(11, 30, 59), OFFSE…
790 base.withOffsetSameInstant(null);
813 …public void test_with_fieldLong(OffsetDateTime base, TemporalField setField, long setValue, Offset…
814 assertEquals(base.with(setField, setValue), expected);
[all …]
/libcore/ojluni/src/test/java/time/tck/java/time/format/
DTCKDecimalStyle.java107 DecimalStyle base = DecimalStyle.STANDARD; in test_zeroDigit() local
108 assertEquals(base.withZeroDigit('A').getZeroDigit(), 'A'); in test_zeroDigit()
113 DecimalStyle base = DecimalStyle.STANDARD; in test_positiveSign() local
114 assertEquals(base.withPositiveSign('A').getPositiveSign(), 'A'); in test_positiveSign()
119 DecimalStyle base = DecimalStyle.STANDARD; in test_negativeSign() local
120 assertEquals(base.withNegativeSign('A').getNegativeSign(), 'A'); in test_negativeSign()
125 DecimalStyle base = DecimalStyle.STANDARD; in test_decimalSeparator() local
126 assertEquals(base.withDecimalSeparator('A').getDecimalSeparator(), 'A'); in test_decimalSeparator()
201 DecimalStyle base = DecimalStyle.STANDARD; in test_toString_base() local
202 assertEquals(base.toString(), "DecimalStyle[0+-.]"); in test_toString_base()
[all …]
/libcore/luni/src/test/java/libcore/java/io/
DFileTest.java41 String base = System.getProperty("java.io.tmpdir"); in createTemporaryDirectory() local
42 File directory = new File(base, UUID.randomUUID().toString()); in createTemporaryDirectory()
55 private static File createDeepStructure(File base) throws Exception { in createDeepStructure() argument
61 File f = base; in createDeepStructure()
72 File base = createTemporaryDirectory(); in test_longPath() local
73 assertTrue(createDeepStructure(base).exists()); in test_longPath()
84 File base = createTemporaryDirectory(); in test_longReadlink() local
85 File target = createDeepStructure(base); in test_longReadlink()
86 File source = new File(base, "source"); in test_longReadlink()
172 File base = createTemporaryDirectory(); in test_getCanonicalPath() local
[all …]
/libcore/ojluni/src/main/java/java/util/concurrent/atomic/
DLongAdder.java87 if ((as = cells) != null || !casBase(b = base, b + x)) { in add()
121 long sum = base; in sum()
139 base = 0L; in reset()
159 long sum = base; in sumThenReset()
160 base = 0L; in sumThenReset()
240 a.base = value; in readResolve()
DLongAccumulator.java96 base = this.identity = identity; in LongAccumulator()
107 (r = function.applyAsLong(b = base, x)) != b && !casBase(b, r)) { in accumulate()
129 long result = base; in get()
148 base = identity; in reset()
168 long result = base; in getThenReset()
169 base = identity; in getThenReset()
266 a.base = value; in readResolve()
DDoubleAdder.java92 !casBase(b = base, in add()
119 double sum = Double.longBitsToDouble(base); in sum()
137 base = 0L; // relies on fact that double 0 must have same rep as long in reset()
157 double sum = Double.longBitsToDouble(base); in sumThenReset()
158 base = 0L; in sumThenReset()
239 a.base = Double.doubleToRawLongBits(value); in readResolve()
DDoubleAccumulator.java94 base = this.identity = Double.doubleToRawLongBits(identity); in DoubleAccumulator()
107 (Double.longBitsToDouble(b = base), x))) != b && !casBase(b, r)) { in accumulate()
131 double result = Double.longBitsToDouble(base); in get()
151 base = identity; in reset()
171 double result = Double.longBitsToDouble(base); in getThenReset()
172 base = identity; in getThenReset()
272 a.base = Double.doubleToRawLongBits(value); in readResolve()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
DFileTest.java360 String base = tempDirectory.getPath(); in test_createNewFile() local
363 File dir = new File(base, String.valueOf(numDir)); in test_createNewFile()
370 dir = new File(base, String.valueOf(numDir)); in test_createNewFile()
526 String base = System.getProperty("java.io.tmpdir"); in test_createTempFileLjava_lang_StringLjava_lang_StringLjava_io_File() local
531 File dir = new File(base); in test_createTempFileLjava_lang_StringLjava_lang_StringLjava_io_File()
539 base = addTrailingSlash(base); in test_createTempFileLjava_lang_StringLjava_lang_StringLjava_io_File()
542 base, fileLocation); in test_createTempFileLjava_lang_StringLjava_lang_StringLjava_io_File()
556 dir = new File(base, String.valueOf(dirNumber)); in test_createTempFileLjava_lang_StringLjava_lang_StringLjava_io_File()
564 dir = new File(base, String.valueOf(dirNumber)); in test_createTempFileLjava_lang_StringLjava_lang_StringLjava_io_File()
701 String base = addTrailingSlash(tempDirectory.getPath()); in test_getAbsoluteFile() local
[all …]
/libcore/ojluni/src/main/java/java/awt/font/
DNumericShaper.java346 private final int base; field in NumericShaper.Range
351 private Range(int base, int start, int end) { in Range() argument
352 this.base = base - ('0' + getNumericBase()); in Range()
358 return base; in getDigitBase()
1082 return s1.base > s2.base ? 1 : s1.base == s2.base ? 0 : -1; in NumericShaper()
1245 int base; in shapeNonContextually() local
1248 base = shapingRange.getDigitBase(); in shapeNonContextually()
1251 base = bases[key]; in shapeNonContextually()
1259 text[i] = (char)(c + base); in shapeNonContextually()
1276 int base = bases[ctxKey]; in shapeContextually() local
[all …]
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
DBuilder.java143 static int distance(GeneralNameInterface base, in distance() argument
146 switch (base.constrains(test)) { in distance()
169 return test.subtreeDepth() - base.subtreeDepth(); in distance()
189 static int hops(GeneralNameInterface base, GeneralNameInterface test, in hops() argument
192 int baseRtest = base.constrains(test); in hops()
207 return (test.subtreeDepth()-base.subtreeDepth()); in hops()
210 return (test.subtreeDepth()-base.subtreeDepth()); in hops()
216 if (base.getType() != GeneralNameInterface.NAME_DIRECTORY) { in hops()
223 X500Name baseName = (X500Name)base; in hops()
/libcore/ojluni/src/main/java/java/util/
DArraysParallelSortHelpers.java116 final int base, size, wbase, gran; field in ArraysParallelSortHelpers.FJObject.Sorter
118 Sorter(CountedCompleter<?> par, T[] a, T[] w, int base, int size, in Sorter() argument
122 this.a = a; this.w = w; this.base = base; this.size = size; in Sorter()
130 int b = this.base, n = this.size, wb = this.wbase, g = this.gran; in compute()
238 final int base, size, wbase, gran; field in ArraysParallelSortHelpers.FJByte.Sorter
239 Sorter(CountedCompleter<?> par, byte[] a, byte[] w, int base, in Sorter() argument
242 this.a = a; this.w = w; this.base = base; this.size = size; in Sorter()
248 int b = this.base, n = this.size, wb = this.wbase, g = this.gran; in compute()
349 final int base, size, wbase, gran; field in ArraysParallelSortHelpers.FJChar.Sorter
350 Sorter(CountedCompleter<?> par, char[] a, char[] w, int base, in Sorter() argument
[all …]
/libcore/ojluni/src/main/java/sun/nio/ch/
DIOVecWrapper.java141 void putBase(int i, long base) { in putBase() argument
144 vecArray.putInt(offset, (int)base); in putBase()
146 vecArray.putLong(offset, base); in putBase()
/libcore/test-rules/src/main/java/libcore/junit/util/
DResourceLeakageDetector.java134 public Statement apply(Statement base, Description description) { in apply() argument
139 return base; in apply()
142 return leakageDetectorRule.apply(base, description); in apply()
/libcore/ojluni/src/main/java/java/util/concurrent/
DForkJoinPool.java815 volatile int base; // index of next slot for poll field in ForkJoinPool.WorkQueue
830 base = top = INITIAL_QUEUE_CAPACITY >>> 1; in WorkQueue()
844 int n = base - top; // read base first in queueSize()
855 return ((n = base - (s = top)) >= 0 || // possibly one task in isEmpty()
874 if ((d = base - s) == 0 && p != null) { in push()
896 (t = top) - (b = base) > 0) { in growArray()
917 int b = base, s = top, al, i; ForkJoinTask<?>[] a; in pop()
944 if (t != null && b++ == base && in pollAt()
946 base = b; in pollAt()
958 int b = base, s = top, d, al; ForkJoinTask<?>[] a; in poll()
[all …]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
DBigIntegerModPowTest.java106 …BigInteger[] base = new BigInteger[] {new BigInteger("-1"), new BigInteger("0"), new BigInteger("1… in testModPowZeroExp() local
109 for (int i = 0; i < base.length; ++i) { in testModPowZeroExp()
111 assertEquals(base[i] + " modePow(" + exp + ", " + mod[j] in testModPowZeroExp()
113 base[i].modPow(exp, mod[j])); in testModPowZeroExp()
118 for (int i = 0; i < base.length; ++i) { in testModPowZeroExp()
120 assertEquals(base[i] + " modePow(" + exp + ", " + mod[j] in testModPowZeroExp()
122 base[i].modPow(exp, mod[j])); in testModPowZeroExp()
/libcore/ojluni/src/main/java/java/net/
DURI.java2001 private static String resolvePath(String base, String child, in resolvePath() argument
2004 int i = base.lastIndexOf('/'); in resolvePath()
2011 path = base.substring(0, i + 1); in resolvePath()
2013 StringBuffer sb = new StringBuffer(base.length() + cn); in resolvePath()
2016 sb.append(base.substring(0, i + 1)); in resolvePath()
2032 private static URI resolve(URI base, URI child) { in resolve() argument
2035 if (child.isOpaque() || base.isOpaque()) in resolve()
2042 if ((base.fragment != null) in resolve()
2043 && child.fragment.equals(base.fragment)) { in resolve()
2044 return base; in resolve()
[all …]
/libcore/luni/src/test/native/
Dlibcore_java_io_FileTest.cpp32 std::string base(baseDirUtf.c_str()); in Java_libcore_java_io_FileTest_nativeTestFilesWithSurrogatePairs() local
33 std::string subDir = base + "/dir_\xF0\x93\x80\x80"; in Java_libcore_java_io_FileTest_nativeTestFilesWithSurrogatePairs()
/libcore/ojluni/src/test/java/time/tck/java/time/temporal/
DTCKChronoUnit.java169 …public void test_unitAndTemporal(ChronoUnit unit, Temporal base, boolean isSupportedBy, long amoun… in test_unitAndTemporal() argument
170 assertEquals(unit.isSupportedBy(base), isSupportedBy); in test_unitAndTemporal()
172 Temporal result = unit.addTo(base, amount); in test_unitAndTemporal()
174 assertEquals(unit.between(base, result), amount); in test_unitAndTemporal()

123