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

  /external/webkit/Source/WebCore/svg/animation/
SMILTime.h 37 SMILTime() : m_time(0) { }
38 SMILTime(double time) : m_time(time) { }
39 SMILTime(const SMILTime& o) : m_time(o.m_time) { }
44 SMILTime& operator=(const SMILTime& o) { m_time = o.m_time; return *this; }
45 double value() const { return m_time; }
47 bool isFinite() const { return m_time < indefiniteValue; }
48 bool isIndefinite() const { return m_time == indefiniteValue; }
49 bool isUnresolved() const { return m_time == unresolvedValue;
55 double m_time; member in class:WebCore::SMILTime
    [all...]
  /external/skia/src/ports/
SkTime_Unix.cpp 19 time_t m_time; local
20 time(&m_time);
22 tstruct = localtime(&m_time);
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
EventSendingController.cpp 95 : m_time(0)
120 WKBundlePageSimulateMouseDown(page, button, m_position, m_clickCount, modifiers, m_time);
130 WKBundlePageSimulateMouseUp(page, button, m_position, m_clickCount, modifiers, m_time);
137 WKBundlePageSimulateMouseMotion(InjectedBundle::shared().page()->page(), m_position, m_time);
142 m_time += milliseconds / 1000.0;
147 if (m_time - m_clickTime < 1 && m_position == m_clickPosition && button == m_clickButton) {
149 m_clickTime = m_time;
154 m_clickTime = m_time;
EventSendingController.h 63 double m_time; member in class:WTR::EventSendingController
  /external/webkit/Source/WebCore/platform/graphics/avfoundation/
MediaPlayerPrivateAVFoundation.h 76 , m_time(0)
83 , m_time(time)
90 , m_time(0)
97 double time() { return m_time; }
102 double m_time; member in class:WebCore::MediaPlayerPrivateAVFoundation::Notification
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
TilesProfiler.cpp 55 m_time = currentTimeMS();
78 double timeDelta = currentTime - m_time;
79 m_time = currentTime;
TilesProfiler.h 84 double m_time; member in class:WebCore::TilesProfiler
  /external/blktrace/btt/
trace_queue.c 36 q_iop->i_time = q_iop->g_time = q_iop->i_time = q_iop->m_time =
trace_issue.c 45 else if (q_iop->m_time != (__u64)-1)
46 update_m2d(q_iop, tdelta(q_iop->m_time, d_iop->t.time));
trace_complete.c 44 if (iop->m_time != (__u64)-1)
45 __out(ofp, iop->m_time, IOP_M, iop->t.sector, t_sec(&iop->t),1);
inlines.h 241 static inline void update_q2m(struct io *iop, __u64 m_time)
243 UPDATE_AVGS(q2m, iop, iop->pip, m_time);
246 static inline void unupdate_q2m(struct io *iop, __u64 m_time)
248 UNUPDATE_AVGS(q2m, iop, iop->pip, m_time);
trace_im.c 65 q_iop->m_time = m_iop->t.time;
iostat.c 273 else if (q_iop->m_time != (__u64)-1)
274 ADD_STAT(c_iop->dip, wait, tdelta(q_iop->m_time,c_iop->t.time));
globals.h 157 __u64 bytes_left, g_time, i_time, m_time, d_time, c_time, d_sec, c_sec; member in struct:io
  /external/jmonkeyengine/engine/src/core-effects/Common/MatDefs/Water/
simple_water.vert 8 uniform float m_time;
79 vec4 t1 = vec4(0.0, -m_time, 0.0,0.0);
80 vec4 t2 = vec4(0.0, m_time, 0.0,0.0);

Completed in 1395 milliseconds