Searched refs:raw (Results 1 - 6 of 6) sorted by path

/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...
/libcore/luni/src/main/java/java/text/
H A DSimpleDateFormat.java1179 int raw = hour * 3600000;
1188 raw += minute * 60000;
1190 raw = (hour / 100 * 3600000) + (hour % 100 * 60000);
1193 raw = -raw;
1195 calendar.setTimeZone(new SimpleTimeZone(raw, ""));
1215 int raw = zone.getRawOffset();
1228 raw += dstSavings;
1230 calendar.setTimeZone(new SimpleTimeZone(raw, ""));
/libcore/luni/src/main/java/java/util/
H A DTimeZone.java50 * The {@link #getRawOffset} method will return a raw offset of (in this case) -8 hours from UTC,
52 * actual offset from UTC <i>for a given point in time</i>; this is the raw offset plus (if the
57 * and the raw and actual offsets will always be the same.
95 * Returns a new time zone with the same ID, raw offset, and daylight
318 * an object with a raw offset of +5 hours from UTC, and which does <i>not</i> use daylight
383 int raw = (hour * 3600000) + (minute * 60000);
385 raw = -raw;
389 return new SimpleTimeZone(raw, cleanId);
396 * raw offse
[all...]
/libcore/luni/src/test/java/libcore/java/lang/reflect/
H A DClassLoaderReflectionTest.java151 private void assertParameterizedType(Type actual, Type raw, Type... args) { argument
154 assertEquals(raw, parameterizedType.getRawType());
/libcore/luni/src/test/java/libcore/sqlite/
H A DOldFunctionContextTest.java302 public static String getHexString(byte[] raw) argument
304 byte[] hex = new byte[2 * raw.length];
307 for (byte b : raw) {
/libcore/support/src/test/java/tests/http/
H A DMockWebServer.java241 private void serveConnection(final Socket raw) { argument
242 String name = "MockWebServer-" + raw.getRemoteSocketAddress();
261 raw, raw.getInetAddress().getHostAddress(), raw.getPort(), true);
264 openClientSockets.remove(raw);
266 socket = raw;
294 if (!processOneRequest(raw.getInputStream(), raw.getOutputStream(), raw)) {
[all...]

Completed in 200 milliseconds