HomeSort by relevance Sort by last modified time
    Searched defs:Time (Results 1 - 25 of 28) sorted by null

1 2

  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/
Time.java 38 * Time ::= CHOICE {
44 public class Time {
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/cms/
Time.java 14 public class Time
17 DERObject time; field in class:Time
19 public static Time getInstance(
26 public Time(
27 DERObject time)
29 if (!(time instanceof DERUTCTime)
30 && !(time instanceof DERGeneralizedTime))
32 throw new IllegalArgumentException("unknown object passed to Time");
35 this.time = time;
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/
Time.java 15 public class Time
19 DERObject time; field in class:Time
21 public static Time getInstance(
28 public Time(
29 DERObject time)
31 if (!(time instanceof DERUTCTime)
32 && !(time instanceof DERGeneralizedTime))
34 throw new IllegalArgumentException("unknown object passed to Time");
37 this.time = time;
    [all...]
  /frameworks/base/core/jni/
TimeUtils.h 20 #include <time.h>
24 #include <sys/time.h>
31 * This class is the core implementation of the android.util.Time java
38 class Time
57 static int compare(Time& a, Time& b);
59 Time();
Time.cpp 8 dump(const Time& t)
21 Time::Time()
44 Time::compare(Time& a, Time& b)
81 Time::switchTimezone(const char* timezone)
88 Time::format(const char *format, const struct strftime_locale *locale) const
114 Time::format2445(short* buf, bool hasTime) const
154 Time::toString() cons
    [all...]
  /dalvik/libcore/sql/src/main/java/java/sql/
Time.java 23 * Java representation of an SQL {@code TIME} value. Provides utilities to
24 * format and parse the time's representation as a String in JDBC escape format.
26 public class Time extends Date {
31 * Constructs a {@code Time} object using the supplied values for <i>Hour</i>,
33 * <i>Day</i> elements of the {@code Time} object are set to the date
37 * elements of a {@code Time} object will result in an {@code
42 * @deprecated Use the constructor {@link #Time(long)}.
52 public Time(int theHour, int theMinute, int theSecond) {
57 * Constructs a {@code Time} object using a supplied time specified i
    [all...]
  /external/openssl/ssl/
s23_clnt.c 91 unsigned long Time=(unsigned long)time(NULL);
96 RAND_add(&Time,sizeof(Time),0);
206 unsigned long Time,l;
253 Time=(unsigned long)time(NULL); /* Time */
254 l2n(Time,p);
s23_srvr.c 143 unsigned long Time=(unsigned long)time(NULL);
148 RAND_add(&Time,sizeof(Time),0);
d1_clnt.c 147 unsigned long Time=(unsigned long)time(NULL),l;
152 RAND_add(&Time,sizeof(Time),0);
598 unsigned long Time,l;
625 Time=(unsigned long)time(NULL); /* Time */
626 l2n(Time,p);
d1_srvr.c 147 unsigned long l,Time=(unsigned long)time(NULL);
152 RAND_add(&Time,sizeof(Time),0);
731 unsigned long l,Time;
737 Time=(unsigned long)time(NULL); /* Time */
738 l2n(Time,p);
739 RAND_pseudo_bytes(p,SSL3_RANDOM_SIZE-sizeof(Time));
    [all...]
s3_clnt.c 169 unsigned long Time=(unsigned long)time(NULL),l;
174 RAND_add(&Time,sizeof(Time),0);
628 unsigned long Time,l;
653 Time=(unsigned long)time(NULL); /* Time */
654 l2n(Time,p);
    [all...]
s3_srvr.c 167 unsigned long l,Time=(unsigned long)time(NULL);
172 RAND_add(&Time,sizeof(Time),0);
1131 unsigned long l,Time;
1137 Time=(unsigned long)time(NULL); /* Time */
1138 l2n(Time,p);
    [all...]
  /packages/apps/Mms/src/org/w3c/dom/smil/
Time.java 19 * The <code>Time</code> interface is a datatype that represents times within
20 * the timegraph. A <code>Time</code> has a type, key values to describe the
21 * time, and a boolean to indicate whether the values are currently
24 public interface Time {
26 * A boolean indicating whether the current <code>Time</code> has been
28 * true, the current <code>Time</code> must be defined (not indefinite),
29 * the syncbase and all <code>Time</code> 's that the syncbase depends on
30 * must be defined (not indefinite), and the begin <code>Time</code> of
31 * all ascendent time containers of this element and all <code>Time</code
    [all...]
  /cts/tests/tests/text/src/android/text/format/cts/
TimeTest.java 23 import android.text.format.Time;
31 @TestTargetClass(Time.class)
37 method = "Time",
42 method = "Time",
47 method = "Time",
48 args = {Time.class}
62 Time time = new Time(); local
63 new Time(Time.getCurrentTimezone())
77 Time time = new Time(); local
107 Time time = new Time(timeZone); local
129 Time time = new Time(); local
178 Time time = new Time(); local
209 Time time = new Time(); local
607 long time = t.toMillis(false); local
656 long time = System.currentTimeMillis(); local
766 Time time = new Time(); local
828 Time time = new Time(); local
    [all...]
  /external/webkit/WebCore/html/
DateComponents.h 41 // A DateComponents instance represents one of the following date and time combinations:
45 // * Time type: hour-minute-second-millisecond
78 // The format argument is valid for DateTime, DateTimeLocal, and Time types.
124 // For Time type. Updates m_hour, m_minute, m_second and m_millisecond.
181 Time,
  /external/webkit/WebKit/chromium/public/
WebInputElement.h 81 Time,
  /external/tcpdump/
util.c 149 time_t Time;
162 case 1: /* No time stamp */
192 Time = (tvp->tv_sec + thiszone) - s;
193 tm = gmtime (&Time);
206 * Print a relative number of seconds (e.g. hold time, prune timer)
  /packages/apps/Email/src/org/apache/james/mime4j/field/datetime/parser/
DateTimeParser.java 80 private static class Time {
86 public Time(int hour, int minute, int second, int zone) {
140 Date d; Time t;
157 t = time();
165 t.getZone());} // time zone offset
283 final public Time time() throws ParseException { method in class:DateTimeParser
298 {if (true) return new Time(h, m, s, z);}
  /frameworks/base/core/java/android/text/format/
Time.java 25 * The Time class is a faster replacement for the java.util.Calendar and
26 * java.util.GregorianCalendar classes. An instance of the Time class represents
27 * a moment in time, specified with second precision. It is modelled after
31 public class Time {
46 * all zero, and the date is displayed the same in all time zones.
91 * This time is in daylight savings time. One of:
106 * The timezone for this Time. Should not be null.
149 * Construct a Time object in the timezone named by the string
150 * argument "timezone". The time is initialized to Jan 1, 1970
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
Xvproto.h 63 #define Time CARD32
272 Time time B32;
281 Time time B32;
571 Time time B32;
583 Time time B32;
600 #undef Time
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
AgendaWindowAdapter.java 28 import android.text.format.Time;
45 - At rotation and launch time, the initial position is not set properly. This code is calling
171 Time goToTime;
248 Time time = new Time(); local
250 time.setJulianDay(start);
251 time.normalize(false);
252 sb.append("Start:").append(time.toString());
253 time.setJulianDay(end)
450 Time time = new Time(); local
454 Time time = new Time(); local
626 Time time = new Time(); local
642 Time time = new Time(); local
    [all...]
  /external/v8/src/
platform-win32.cc 59 #include <time.h> // For LocalOffset() implementation.
177 int localtime_s(tm* out_tm, const time_t* time) {
178 tm* posix_local_time_struct = localtime(time);
252 // The Time class represents time on win32. A timestamp is represented as
257 class Time {
260 Time();
261 explicit Time(double jstime);
262 Time(int year, int mon, int day, int hour, int min, int sec);
267 // Set timestamp to current time
    [all...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 

Completed in 1566 milliseconds

1 2