HomeSort by relevance Sort by last modified time
    Searched refs:time (Results 126 - 150 of 5619) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebTransformKeyframe.cpp 32 WebTransformKeyframe::WebTransformKeyframe(double time, PassOwnPtr<WebTransformOperations> value)
33 : m_time(time)
43 double WebTransformKeyframe::time() const function in class:blink::WebTransformKeyframe
  /external/skia/bench/
BenchSysTimer_c.cpp 10 //Time
11 #include <time.h>
14 this->fStartWall = time();
25 time_t end_wall = time();
BenchSysTimer_c.h 11 //Time
12 #include <time.h>
BenchSysTimer_posix.h 11 //Time
12 #include <time.h>
  /packages/apps/VideoEditor/src/com/android/videoeditor/util/
StringUtils.java 105 * Get a readable string displaying the time
107 * @param context The context (needed only for relative time)
108 * @param time The time
110 * @return The time string
112 public static String getTimestampAsString(Context context, long time) {
113 final long hours = time / 3600000;
114 time %= 3600000;
115 final long mins = time / 60000;
116 time %= 60000;
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
Time.java 15 public class Time
19 ASN1Primitive time; field in class:Time
21 public static Time getInstance(
28 public Time(
29 ASN1Primitive time)
31 if (!(time instanceof DERUTCTime)
32 && !(time instanceof DERGeneralizedTime))
34 throw new IllegalArgumentException("unknown object passed to Time");
37 this.time = time;
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
Time.java 15 public class Time
19 ASN1Primitive time; field in class:Time
21 public static Time getInstance(
28 public Time(
29 ASN1Primitive time)
31 if (!(time instanceof DERUTCTime)
32 && !(time instanceof DERGeneralizedTime))
34 throw new IllegalArgumentException("unknown object passed to Time");
37 this.time = time;
    [all...]
  /external/dropbear/libtommath/etc/
timer.asm 6 time dd 0, 0 define
20 mov [time+0],edx
21 mov [time+4],eax
34 sub eax,[time+4]
35 sbb edx,[time+0]
  /external/chromium/base/i18n/
time_formatting.cc 10 #include "base/time.h"
15 using base::Time;
20 const Time& time) {
24 formatter->format(static_cast<UDate>(time.ToDoubleT() * 1000), date_string);
33 string16 TimeFormatTimeOfDay(const Time& time) {
38 return TimeFormat(formatter.get(), time);
41 string16 TimeFormatTimeOfDayWithHourClockType(const Time& time,
    [all...]
  /external/proguard/src/proguard/gui/splash/
ColorSprite.java 51 public void paint(Graphics graphics, long time)
57 graphics.setColor(color.getColor(time));
60 sprite.paint(graphics, time);
FontSprite.java 51 public void paint(Graphics graphics, long time)
57 graphics.setFont(font.getFont(time));
60 sprite.paint(graphics, time);
ConstantDouble.java 24 * This VariableDouble is constant over time.
45 public double getDouble(long time)
ConstantInt.java 24 * This VariableInt is constant over time.
45 public int getInt(long time)
ConstantTiming.java 24 * This Timing is constant over time.
53 public double getTiming(long time)
TimeSwitchSprite.java 26 * This Sprite displays another Sprite in a given time interval.
27 * The time of the encapsulated Sprite is shifted by the start time.
40 * a given time.
41 * @param onTime the start time.
52 * time interval.
53 * @param onTime the start time.
54 * @param offTime the stop time.
67 public void paint(Graphics graphics, long time)
69 if (time >= onTime && (offTime <= 0 || time <= offTime)
    [all...]
  /sdk/emulator/qtools/
read_addr.cpp 17 uint64_t time; local
21 if (trace->ReadAddr(&time, &addr, &flags))
26 printf("%lld 0x%08x %s\n", time, addr, op);
read_pid.cpp 22 printf("t%lld fork tgid %d pid %d\n", event.time, event.tgid, event.pid);
25 printf("t%lld clone tgid %d pid %d\n", event.time, event.tgid, event.pid);
28 printf("t%lld switch %d\n", event.time, event.pid);
31 printf("t%lld exit %d\n", event.time, event.pid);
35 event.time, event.vstart, event.vend, event.offset, event.path);
40 event.time, event.vstart, event.vend);
44 event.time, event.vstart, event.path);
48 printf("t%lld remove %08x\n", event.time, event.vstart);
51 printf("t%lld argc: %d\n", event.time, event.argc);
60 event.time, event.tgid, event.pid, event.path)
    [all...]
  /external/chromium/chrome/browser/history/
history_publisher.cc 15 const base::Time& time) const {
17 time,
28 void HistoryPublisher::PublishPageContent(const base::Time& time,
33 time,
  /external/chromium_org/chrome/browser/performance_monitor/
performance_monitor_util.cc 11 #include "base/time/time.h"
30 const base::Time& time,
39 event.time = static_cast<double>(time.ToInternalValue());
48 type, time, value.Pass()));
51 scoped_ptr<Event> CreateRendererFailureEvent(const base::Time& time,
56 event.time = static_cast<double>(time.ToInternalValue())
    [all...]
  /external/chromium_org/chrome/browser/translate/
translate_error_details.h 8 #include "base/time/time.h"
13 // The time when this was created
14 base::Time time; member in struct:TranslateErrorDetails
  /system/core/toolbox/
uptime.c 32 #include <sys/time.h>
38 #include <time.h>
41 static void format_time(int time, char* buffer) {
44 seconds = time % 60;
45 time /= 60;
46 minutes = time % 60;
47 time /= 60;
48 hours = time % 24;
49 days = time / 24;
94 fprintf(stderr, "Could not get monotonic time\n")
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTime.java 4 import android.text.format.Time;
16 @Implements(Time.class)
19 private Time time; field in class:ShadowTime
34 time.timezone = timezone;
35 time.year = 1970;
36 time.monthDay = 1;
37 time.isDst = -1;
40 public void __constructor__(Time other) {
45 public void set(Time other)
    [all...]
  /external/chromium/base/third_party/nspr/
prtime.cc 42 * NSPR date and time functions
76 #include <time.h>
80 static void localtime_r(const time_t* secs, struct tm* time) {
81 (void) localtime_s(time, secs);
102 // Create the system struct representing our exploded time.
117 NOTREACHED() << "Unable to convert time";
127 // Adjust for time zone and dst. Convert from seconds to microseconds.
132 // Create the system struct representing our exploded time.
164 // If timegm returned -1. Since we don't pass it a time zone, the only
253 * 'time' should point to a normalized PRExplodedTime
    [all...]
  /external/chromium_org/base/third_party/nspr/
prtime.cc 42 * NSPR date and time functions
81 #include <time.h>
85 static void localtime_r(const time_t* secs, struct tm* time) {
86 (void) localtime_s(time, secs);
107 // Create the system struct representing our exploded time.
122 NOTREACHED() << "Unable to convert time";
132 // Adjust for time zone and dst. Convert from seconds to microseconds.
137 // Create the system struct representing our exploded time.
169 // If timegm returned -1. Since we don't pass it a time zone, the only
258 * 'time' should point to a normalized PRExplodedTime
    [all...]
  /bionic/tests/
time_benchmark.cpp 19 #include <time.h>
23 // Used by the horrible android.text.format.Time class, which is used by Calendar. http://b/8270865.
29 time_t now(time(NULL));

Completed in 1446 milliseconds

1 2 3 4 56 7 8 91011>>