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

1 2 3 4 5 6 7 891011>>

  /external/libmojo/mojo/common/
time_struct_traits.h 8 #include "base/time/time.h"
9 #include "mojo/common/time.mojom-shared.h"
14 struct StructTraits<common::mojom::TimeDataView, base::Time> {
15 static int64_t internal_value(const base::Time& time) {
16 return time.since_origin().InMicroseconds();
19 static bool Read(common::mojom::TimeDataView data, base::Time* time) {
20 *time
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/ctime/
1-1.c 10 * not NULL after converting the time value to a date and time string.
14 #include <time.h>
22 time(&current_time);
29 printf("converted date and time is: %s\n",
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/gmtime/
2-1.c 14 #include <time.h>
22 (void)time(&the_time);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/localtime/
1-1.c 10 * a time value to a broken down local time.
14 #include <time.h>
22 current_time = time(NULL);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/strftime/
3-1.c 13 #include <time.h>
24 (void)time(&the_time);
  /external/proguard/src/proguard/gui/splash/
CompositeSprite.java 48 public void paint(Graphics graphics, long time)
53 sprites[index].paint(graphics, time);
LinearDouble.java 51 public double getDouble(long time)
53 return fromValue + timing.getTiming(time) * (toValue - fromValue);
LinearInt.java 51 public int getInt(long time)
53 return (int) (fromValue + timing.getTiming(time) * (toValue - fromValue));
RectangleSprite.java 94 public void paint(Graphics graphics, long time)
96 graphics.setColor(color.getColor(time));
98 int xt = x.getInt(time);
99 int yt = y.getInt(time);
100 int w = width.getInt(time);
101 int h = height.getInt(time);
102 int aw = arcWidth.getInt(time);
103 int ah = arcHeight.getInt(time);
SineTiming.java 24 * This Timing varies between 0 and 1, as a sine wave over time.
36 * @param period the time period for a full cycle.
37 * @param phase the phase of the cycle, which is added to the actual time.
48 public double getTiming(long time)
51 return 0.5 + 0.5 * Math.sin(2.0 * Math.PI * (time + phase) / period);
  /external/selinux/python/sepolicy/sepolicy/templates/
script.py 37 time=`ls -l --time-style="+%x %X" TEMPLATEFILE.te | awk '{ printf "%s %s", $6, $7 }'`
38 rules=`ausearch --start $time -m avc --raw -se TEMPLATETYPE`
  /external/swiftshader/third_party/LLVM/unittests/Support/
TimeValue.cpp 1 //===- llvm/unittest/Support/TimeValue.cpp - Time Value tests -------------===//
12 #include <time.h>
19 time_t now_t = time(NULL);
  /external/tensorflow/tensorflow/core/platform/posix/
env_time.cc 16 #include <sys/time.h>
17 #include <time.h>
  /frameworks/base/core/java/android/app/usage/
TimeSparseArray.java 38 * the given time.
40 * @param time The timestamp for which to search the array.
43 public int closestIndexOnOrAfter(long time) {
55 if (time > key) {
57 } else if (time < key) {
64 if (time < key) {
66 } else if (time > key && lo < size) {
93 * the given time.
95 * @param time The timestamp for which to search the array.
98 public int closestIndexOnOrBefore(long time) {
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
SystemConditionProviderService.java 40 protected static String ts(long time) {
41 return new Date(time) + " (" + time + ")";
50 protected static void dumpUpcomingTime(PrintWriter pw, String var, long time, long now) {
52 if (time > 0) {
53 pw.printf("%s, in %s, now=%s", ts(time), formatDuration(time - now), ts(now));
55 pw.print(time);
  /libcore/ojluni/src/main/java/java/time/chrono/
IsoEra.java 62 package java.time.chrono;
64 import java.time.DateTimeException;
MinguoEra.java 62 package java.time.chrono;
64 import java.time.DateTimeException;
ThaiBuddhistEra.java 62 package java.time.chrono;
64 import java.time.DateTimeException;
  /libcore/ojluni/src/main/java/java/time/temporal/
UnsupportedTemporalTypeException.java 62 package java.time.temporal;
64 import java.time.DateTimeException;
  /libcore/ojluni/src/main/java/java/time/zone/
ZoneRulesException.java 57 package java.time.zone;
59 import java.time.DateTimeException;
62 * Thrown to indicate a problem with time-zone configuration.
65 * time-zone rules.
80 * Constructs a new date-time exception with the specified message.
89 * Constructs a new date-time exception with the specified message and cause.
  /libcore/ojluni/src/test/java/time/tck/java/time/chrono/serial/
TCKChronologySerialization.java 57 package tck.java.time.chrono.serial;
62 import java.time.chrono.Chronology;
63 import java.time.chrono.HijrahChronology;
64 import java.time.chrono.IsoChronology;
65 import java.time.chrono.JapaneseChronology;
66 import java.time.chrono.MinguoChronology;
67 import java.time.chrono.ThaiBuddhistChronology;
72 import tck.java.time.AbstractTCKTest;
77 static final int CHRONO_TYPE = 1; // java.time.chrono.Ser.CHRONO_TYPE
  /libcore/ojluni/src/test/java/time/test/java/time/
TestZoneOffset.java 60 package test.java.time;
64 import java.time.ZoneOffset;
  /libcore/ojluni/src/test/java/time/test/java/time/temporal/
TestJulianFields.java 60 package test.java.time.temporal;
64 import java.time.temporal.JulianFields;
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/util/
MockClock.java 20 /** Current time. Only updated with advance(). */
38 public void setCurrentTimeMillis(long time) {
39 mCurrentTimeMillis = time;
  /system/update_engine/update_manager/
shill_provider.h 20 #include <base/time/time.h>
45 // A variable returning the time when network connection last changed.
46 // Initialized to current time.
47 virtual Variable<base::Time>* var_conn_last_changed() = 0;

Completed in 270 milliseconds

1 2 3 4 5 6 7 891011>>