HomeSort by relevance Sort by last modified time
    Searched refs:time (Results 1 - 25 of 8640) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/time/
package-info.java 68 * The classes defined here represent the principle date-time concepts,
69 * including instants, durations, dates, times, time-zones and periods.
75 * Each date time instance is composed of fields that are conveniently
77 * to the {@code java.time.temporal} package.
79 * Refer to the {@code java.time.format} package for customization options.
82 * The {@code java.time.chrono} package contains the calendar neutral API
83 * {@link java.time.chrono.ChronoLocalDate ChronoLocalDate},
84 * {@link java.time.chrono.ChronoLocalDateTime ChronoLocalDateTime},
85 * {@link java.time.chrono.ChronoZonedDateTime ChronoZonedDateTime} and
86 * {@link java.time.chrono.Era Era}
    [all...]
  /external/e2fsprogs/include/nonunix/sys/
time.h 1 #include <time.h>
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/time_h/
1-1-buildonly.c 8 Test the existence of the time.h file and that it can be
12 #include <time.h>
28-1-buildonly.c 9 time_t time(time_t *);
13 #include <time.h>
20 dummyvar = time;
3-1-buildonly.c 11 #include <time.h>
3-2-buildonly.c 11 #include <time.h>
3-3-buildonly.c 13 #include <time.h>
3-4-buildonly.c 13 #include <time.h>
6-1-buildonly.c 12 #include <time.h>
  /libcore/ojluni/src/main/java/java/time/chrono/
package-info.java 70 * The alternate calendars are provided in the {@link java.time.chrono} package.
73 * A calendar system is defined by the {@link java.time.chrono.Chronology} interface,
74 * while a date in a calendar system is defined by the {@link java.time.chrono.ChronoLocalDate} interface.
80 * See {@link java.time.chrono.ChronoLocalDate ChronoLocalDate}
92 * <li>{@link java.time.chrono.HijrahChronology Hijrah calendar}</li>
93 * <li>{@link java.time.chrono.JapaneseChronology Japanese calendar}</li>
94 * <li>{@link java.time.chrono.MinguoChronology Minguo calendar}</li>
95 * <li>{@link java.time.chrono.ThaiBuddhistChronology Thai Buddhist calendar}</li>
167 * or a {@link java.time.DateTimeException}.
171 package java.time.chrono
    [all...]
  /libcore/ojluni/src/main/java/java/time/format/
package-info.java 69 * {@link java.time.format.DateTimeFormatter DateTimeFormatter} class.
71 * {@link java.time.format.DateTimeFormatter DateTimeFormatter}, however
72 * {@link java.time.format.DateTimeFormatterBuilder DateTimeFormatterBuilder}
77 * {@link java.time.format.DateTimeFormatter#withLocale(java.util.Locale) withLocale(Locale)}
79 * {@link java.time.format.DecimalStyle DecimalStyle}.
91 * or a {@link java.time.DateTimeException}.
95 package java.time.format;
  /libcore/ojluni/src/main/java/java/time/temporal/
package-info.java 65 * Access to date and time using fields and units, and date time adjusters.
72 * <li>Units of date-time, such as years, months, days and hours</li>
73 * <li>Fields of date-time, such as month-of-year, day-of-week or hour-of-day</li>
74 * <li>Date-time adjustment functions</li>
81 * A unit is used to measure an amount of time, such as years, days or minutes.
82 * All units implement {@link java.time.temporal.TemporalUnit}.
83 * The set of well known units is defined in {@link java.time.temporal.ChronoUnit}, such as {@code DAYS}.
87 * A field is used to express part of a larger date-time, such as year, month-of-year or second-of-minute.
88 * All fields implement {@link java.time.temporal.TemporalField}
    [all...]
  /libcore/ojluni/src/main/java/java/time/zone/
package-info.java 65 * Support for time-zones and their rules.
68 * Daylight Saving Time and Time-Zones are concepts used by Governments to alter local time.
69 * This package provides support for time-zones, their rules and the resulting
70 * gaps and overlaps in the local time-line typically caused by Daylight Saving Time.
82 * or a {@link java.time.DateTimeException}.
86 package java.time.zone;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERGeneralizedTime.java 6 * DER Generalized time object.
17 public DERGeneralizedTime(Date time)
19 super(time);
22 public DERGeneralizedTime(String time)
24 super(time);
DERUTCTime.java 6 * DER UTC time object.
16 public DERUTCTime(Date time)
18 super(time);
21 public DERUTCTime(String time)
23 super(time);
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
pr2404b.c 6 int time; variable
15 printf ("time: %d\n", time);
16 time = 10;
17 printf ("time: %d\n", time);
  /external/stressapptest/src/
clock.h 19 #include <time.h>
26 virtual time_t Now() { return time(NULL); }
  /external/webrtc/webrtc/base/
ratelimiter.cc 15 bool RateLimiter::CanUse(size_t desired, double time) {
16 return ((time > period_end_ && desired <= max_per_period_) ||
20 void RateLimiter::Use(size_t used, double time) {
21 if (time > period_end_) {
22 period_start_ = time;
23 period_end_ = time + period_length_;
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/src/sleepy1/
p_test.go 5 "time"
9 time.Sleep(200 * time.Millisecond)
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/src/sleepy2/
p_test.go 5 "time"
9 time.Sleep(200 * time.Millisecond)
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/
timeoutbench_test.go 5 "time"
9 time.Sleep(1 * time.Second)
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/sleepy1/
p_test.go 5 "time"
9 time.Sleep(200 * time.Millisecond)
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/sleepy2/
p_test.go 5 "time"
9 time.Sleep(200 * time.Millisecond)
  /prebuilts/go/linux-x86/src/cmd/go/testdata/
timeoutbench_test.go 5 "time"
9 time.Sleep(1 * time.Second)
  /toolchain/binutils/binutils-2.27/libiberty/
gettimeofday.c 4 #include <time.h>
7 #include <sys/time.h>
14 Writes the current time to @var{tp}. This implementation requires
27 if (time (&tp->tv_sec) == (time_t) -1)

Completed in 219 milliseconds

1 2 3 4 5 6 7 8 91011>>