Searched refs:endTime (Results 1 - 25 of 150) sorted by relevance

123456

/external/chromium_org/v8/test/intl/overrides/
H A Dcaching.js36 var endTime = new Date();
37 var cachedTime = endTime.getTime() - startTime.getTime();
44 endTime = new Date();
45 var nonCachedTime = endTime.getTime() - startTime.getTime();
53 endTime = new Date();
54 collatorTime = endTime.getTime() - startTime.getTime();
/external/chromium_org/third_party/WebKit/Source/core/timing/
H A DPerformanceMeasure.h39 static PassRefPtrWillBeRawPtr<PerformanceMeasure> create(const String& name, double startTime, double endTime) argument
41 return adoptRefWillBeNoop(new PerformanceMeasure(name, startTime, endTime));
52 PerformanceMeasure(const String& name, double startTime, double endTime) argument
53 : PerformanceEntry(name, "measure", startTime, endTime) { }
/external/chromium_org/third_party/angle/util/win32/
H A DWin32Timer.cpp40 LONGLONG endTime; local
45 endTime = curTime.QuadPart;
49 endTime = mStopTime;
52 return static_cast<double>(endTime - mStartTime) / mFrequency;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DScriptGCEventListener.h40 virtual void didGC(double startTime, double endTime, size_t collectedBytes) = 0;
/external/smack/src/org/xbill/DNS/
H A DTCPClient.java13 TCPClient(long endTime) throws IOException { argument
14 super(SocketChannel.open(), endTime);
32 blockUntil(key, endTime);
61 System.currentTimeMillis() > endTime)
64 blockUntil(key, endTime);
88 System.currentTimeMillis() > endTime)
91 blockUntil(key, endTime);
111 sendrecv(SocketAddress local, SocketAddress remote, byte [] data, long endTime) argument
114 TCPClient client = new TCPClient(endTime);
128 sendrecv(SocketAddress addr, byte [] data, long endTime) throw argument
[all...]
H A DClient.java12 protected long endTime; field in class:Client
16 Client(SelectableChannel channel, long endTime) throws IOException { argument
19 this.endTime = endTime;
35 blockUntil(SelectionKey key, long endTime) throws IOException { argument
36 long timeout = endTime - System.currentTimeMillis();
H A DUDPClient.java46 UDPClient(long endTime) throws IOException { argument
47 super(DatagramChannel.open(), endTime);
124 blockUntil(key, endTime);
142 long endTime)
145 UDPClient client = new UDPClient(endTime);
158 sendrecv(SocketAddress addr, byte [] data, int max, long endTime) argument
161 return sendrecv(null, addr, data, max, endTime);
141 sendrecv(SocketAddress local, SocketAddress remote, byte [] data, int max, long endTime) argument
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DMediaFragmentURIParser.h42 double endTime();
52 bool parseNPTFragment(const LChar*, unsigned length, double& startTime, double& endTime);
/external/chromium_org/third_party/WebKit/Source/core/html/track/
H A DTextTrackCue.idl37 attribute double endTime;
/external/compiler-rt/test/builtins/timing/
H A Dtiming.h5 double intervalInCycles( uint64_t startTime, uint64_t endTime )
7 uint64_t rawTime = endTime - startTime;
H A Dashldi3.c37 uint64_t endTime = mach_absolute_time(); local
39 double thisTime = intervalInCycles(startTime, endTime);
H A Dashrdi3.c37 uint64_t endTime = mach_absolute_time(); local
39 double thisTime = intervalInCycles(startTime, endTime);
H A Dfloatdidf.c35 uint64_t endTime = mach_absolute_time(); local
37 double thisTime = intervalInCycles(startTime, endTime);
H A Dfloatdisf.c35 uint64_t endTime = mach_absolute_time(); local
37 double thisTime = intervalInCycles(startTime, endTime);
H A Dfloatdixf.c35 uint64_t endTime = mach_absolute_time(); local
37 double thisTime = intervalInCycles(startTime, endTime);
H A Dfloatundidf.c32 uint64_t endTime = mach_absolute_time(); local
34 double thisTime = intervalInCycles(startTime, endTime);
H A Dfloatundisf.c35 uint64_t endTime = mach_absolute_time(); local
37 double thisTime = intervalInCycles(startTime, endTime);
H A Dfloatundixf.c35 uint64_t endTime = mach_absolute_time(); local
37 double thisTime = intervalInCycles(startTime, endTime);
H A Dlshrdi3.c37 uint64_t endTime = mach_absolute_time(); local
39 double thisTime = intervalInCycles(startTime, endTime);
H A Dnegdi2.c38 uint64_t endTime = mach_absolute_time(); local
40 double thisTime = intervalInCycles(startTime, endTime);
/external/chromium_org/third_party/opus/src/silk/
H A Ddebug.h198 unsigned long endTime; \
212 endTime = GetHighResolutionTime(); \
213 endTime -= silk_Timer_start[ID]; \
214 if((endTime < 100000000) && \
215 (endTime >= 0)) { \
217 silk_Timer_sum[ID] += endTime; \
218 if( endTime > silk_Timer_max[ID] ) \
219 silk_Timer_max[ID] = endTime; \
220 if( endTime < silk_Timer_min[ID] ) \
221 silk_Timer_min[ID] = endTime; \
[all...]
/external/libopus/silk/
H A Ddebug.h198 unsigned long endTime; \
212 endTime = GetHighResolutionTime(); \
213 endTime -= silk_Timer_start[ID]; \
214 if((endTime < 100000000) && \
215 (endTime >= 0)) { \
217 silk_Timer_sum[ID] += endTime; \
218 if( endTime > silk_Timer_max[ID] ) \
219 silk_Timer_max[ID] = endTime; \
220 if( endTime < silk_Timer_min[ID] ) \
221 silk_Timer_min[ID] = endTime; \
[all...]
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimationNode.idl43 readonly attribute double endTime;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DTimelineOverviewPane.js145 this._windowEndTime = windowTimes.endTime;
151 * @param {number} endTime
153 requestWindowTimes: function(startTime, endTime)
155 if (startTime === this._windowStartTime && endTime === this._windowEndTime)
158 this._windowEndTime = endTime;
160 this.dispatchEventToListeners(WebInspector.TimelineOverviewPane.Events.WindowChanged, { startTime: startTime, endTime: endTime });
209 var end = (record.endTime() - this._minimumBoundary) / this.boundarySpan() * 100;
309 * @return {!{startTime: number, endTime: number}}
315 * @param {number} endTime
[all...]
H A DTimelinePresentationModel.js53 * @param {number} endTime
55 setWindowTimes: function(startTime, endTime)
58 this._windowEndTime = endTime;
143 var endTime = record.endTime();
150 if (lastRecord.record().endTime() + coalescingThresholdMillis < startTime)
152 if (endTime + coalescingThresholdMillis < lastRecord.record().startTime())
187 if (parentRecord.endTime() < presentationRecord.endTime())
188 parentRecord._endTime = presentationRecord.endTime();
[all...]

Completed in 339 milliseconds

123456