HomeSort by relevance Sort by last modified time
    Searched refs:time (Results 176 - 200 of 5571) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/chrome/browser/performance_monitor/
event.cc 12 const base::Time& time,
14 : type_(type), time_(time), data_(data.release()) {
24 double time = 0.0; local
25 if (!data->GetDouble(std::string("time"), &time))
28 base::Time::FromInternalValue((int64)time),
performance_monitor_util.h 9 #include "base/time/time.h"
32 const base::Time& time,
40 scoped_ptr<Event> CreateRendererFailureEvent(const base::Time& time,
44 scoped_ptr<Event> CreateUncleanExitEvent(const base::Time& time,
47 scoped_ptr<Event> CreateChromeUpdateEvent(const base::Time& time,
    [all...]
  /external/proguard/src/proguard/gui/splash/
ImageSprite.java 63 public void paint(Graphics graphics, long time)
65 int xt = x.getInt(time);
66 int yt = y.getInt(time);
68 double scale_x = scaleX.getDouble(time);
69 double scale_y = scaleY.getDouble(time);
TextSprite.java 76 public void paint(Graphics graphics, long time)
79 int xt = x.getInt(time);
80 int yt = y.getInt(time);
82 int spacingt = spacing.getInt(time);
86 graphics.drawString(text[index].getString(time), xt, yt + index * spacingt);
ShadowedSprite.java 67 public void paint(Graphics graphics, long time)
69 double l = alpha.getDouble(time);
70 int b = blur.getInt(time) + 1;
87 int xo = xOffset.getInt(time) - b/2;
88 int yo = yOffset.getInt(time) - b/2;
98 sprite.paint(graphics, time);
107 sprite.paint(graphics, time);
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioParam.h 89 void setValueAtTime(float value, double time) { m_timeline.setValueAtTime(value, time); }
90 void linearRampToValueAtTime(float value, double time) { m_timeline.linearRampToValueAtTime(value, time); }
91 void exponentialRampToValueAtTime(float value, double time) { m_timeline.exponentialRampToValueAtTime(value, time); }
92 void setTargetAtTime(float target, double time, double timeConstant) { m_timeline.setTargetAtTime(target, time, timeConstant); }
93 void setValueCurveAtTime(Float32Array* curve, double time, double duration) { m_timeline.setValueCurveAtTime(curve, time, duration);
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
timing.cc 34 #include <sys/time.h>
68 struct timeval time; local
69 gettimeofday(&time, NULL);
71 return (static_cast<double>(time.tv_sec) +
72 static_cast<double>(time.tv_usec) * 1.0e-6);
75 struct _timeb time;
76 _ftime(&time);
78 return (static_cast<double>(time.time) +
79 static_cast<double>(time.millitm) * 1.0e-3)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebInputEventFactoryTestGtk.cpp 56 firstClick.time = 0;
65 secondClick.time = firstClick.time + 100;
70 firstClick.time += 10000;
76 secondClick.time = firstClick.time + 1000;
81 firstClick.time += 10000;
87 secondClick.time = firstClick.time + 1;
93 firstClick.time += 10000
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERUTCTime.java 13 * UTC time object.
18 private byte[] time; field in class:DERUTCTime
21 * return an UTC Time from the passed in object.
35 return new ASN1UTCTime(((DERUTCTime)obj).time);
54 * return an UTC Time from a tagged object.
86 * @param time the time string.
89 String time)
91 this.time = Strings.toByteArray(time);
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/text/format/
Time_Delegate.java 28 * Delegate used to provide new implementation for native methods of {@link Time}
30 * Through the layoutlib_create tool, some native methods of Time have been replaced by calls to
39 /*package*/ static String format1(Time thisTime, String format) {
56 private static Calendar timeToCalendar(Time time, Calendar calendar) {
57 calendar.set(time.year, time.month, time.monthDay, time.hour, time.minute, time.second)
    [all...]
  /external/blktrace/btt/
trace_issue.c 37 aqd_issue(d_iop->dip->aqd_handle, BIT_TIME(d_iop->t.time));
44 update_i2d(q_iop, tdelta(q_iop->i_time, d_iop->t.time));
46 update_m2d(q_iop, tdelta(q_iop->m_time, d_iop->t.time));
51 q_iop->d_time = d_iop->t.time;
57 d_iop->t.time - q_iop->t.time);
58 latency_q2d(q_iop->dip, d_iop->t.time,
59 d_iop->t.time - q_iop->t.time);
trace_plug.c 32 dip_unplug(u_iop->t.device, BIT_TIME(u_iop->t.time), get_nio_up(u_iop));
38 dip_unplug_tm(ut_iop->t.device, BIT_TIME(ut_iop->t.time),
45 dip_plug(p_iop->t.device, BIT_TIME(p_iop->t.time));
  /packages/apps/UnifiedEmail/src/com/android/mail/
FormattedDateBuilder.java 22 import android.text.format.Time;
80 final Time time = new Time(); local
81 time.set(when);
83 final int thenYear = time.year;
84 final int thenMonth = time.month;
85 final int thenMonthDay = time.monthDay;
87 time.set(System.currentTimeMillis());
88 return (thenYear == time.year
    [all...]
  /external/chromium/net/socket/
client_socket_pool_histograms.h 12 #include "base/time.h"
26 void AddRequestTime(base::TimeDelta time) const;
27 void AddUnusedIdleTime(base::TimeDelta time) const;
28 void AddReusedIdleTime(base::TimeDelta time) const;
  /external/chromium_org/net/socket/
client_socket_pool_histograms.h 11 #include "base/time/time.h"
26 void AddRequestTime(base::TimeDelta time) const;
27 void AddUnusedIdleTime(base::TimeDelta time) const;
28 void AddReusedIdleTime(base::TimeDelta time) const;
  /external/chromium_org/third_party/WebKit/Source/core/animation/
Player.h 62 static double effectiveTime(double time) { return isNull(time) ? 0 : time; }
  /external/chromium_org/webkit/support/
web_gesture_curve_mock.cc 20 bool WebGestureCurveMock::apply(double time,
22 WebKit::WebSize displacement(velocity_.x * time, velocity_.y * time);
  /external/iproute2/tc/
tc_core.h 16 int tc_core_time2big(unsigned time);
17 unsigned tc_core_time2tick(unsigned time);
19 unsigned tc_core_time2ktime(unsigned time);
  /packages/apps/Mms/src/com/android/mms/dom/smil/
TimeListImpl.java 22 import org.w3c.dom.smil.Time;
26 private final ArrayList<Time> mTimes;
31 TimeListImpl(ArrayList<Time> times) {
43 public Time item(int index) {
44 Time time = null; local
46 time = mTimes.get(index);
50 return time;
  /sdk/emulator/qtools/
exc_dump.cpp 17 uint64_t time, recnum, bb_num, bb_start_time; local
21 if (trace->ReadExc(&time, &pc, &recnum, &target_pc, &bb_num,
24 printf("time: %lld rec: %llu pc: %08x target: %08x bb: %llu bb_start: %llu insns: %d\n",
25 time, recnum, pc, target_pc, bb_num, bb_start_time, num_insns);
  /bionic/libc/include/sys/
timerfd.h 32 #include <time.h>
  /bionic/libstdc++/include/
ctime 34 * Standard C++ Library wrapper around the C time.h header file.
38 #include <time.h>
53 using ::time;
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
TimeUtils.cpp 20 #include <time.h>
24 #include <sys/time.h>
25 #include <time.h>
28 #include <sys/time.h>
  /external/chromium/chrome/browser/history/
history_publisher.h 22 class Time;
38 const GURL& url, const base::Time& time) const;
39 void PublishPageContent(const base::Time& time, const GURL& url,
42 void DeleteUserHistoryBetween(const base::Time& begin_time,
43 const base::Time& end_time) const;
47 const base::Time& time; member in struct:history::HistoryPublisher::PageData
62 // Converts time represented by the Time class object to variant time in UTC
    [all...]
  /external/chromium_org/chrome/browser/history/
history_publisher.h 26 class Time;
42 const GURL& url, const base::Time& time) const;
43 void PublishPageContent(const base::Time& time, const GURL& url,
49 const base::Time& time; member in struct:history::HistoryPublisher::PageData
64 // Converts time represented by the Time class object to variant time in UTC
    [all...]

Completed in 2045 milliseconds

1 2 3 4 5 6 78 91011>>