HomeSort by relevance Sort by last modified time
    Searched refs:timing (Results 76 - 100 of 261) sorted by null

1 2 34 5 6 7 8 91011

  /external/chromium_org/third_party/WebKit/Source/core/timing/
PerformanceResourceTiming.cpp 33 #include "core/timing/PerformanceResourceTiming.h"
38 #include "core/timing/ResourceTimingInfo.h"
47 return document->loader()->timing()->monotonicTimeToZeroBasedDocumentTime(seconds) * 1000.0;
Performance.cpp 33 #include "core/timing/Performance.h"
38 #include "core/timing/ResourceTimingInfo.h"
39 #include "core/timing/PerformanceResourceTiming.h"
40 #include "core/timing/PerformanceUserTiming.h"
51 , m_referenceTime(frame && frame->host() ? frame->document()->loader()->timing()->referenceMonotonicTime() : 0.0)
86 PerformanceTiming* Performance::timing() const function in class:WebCore::Performance
162 AtomicallyInitializedStatic(AtomicString&, timingAllowOrigin = *new AtomicString("timing-allow-origin"));
PerformanceUserTiming.cpp 27 #include "core/timing/PerformanceUserTiming.h"
31 #include "core/timing/Performance.h"
32 #include "core/timing/PerformanceMark.h"
33 #include "core/timing/PerformanceMeasure.h"
124 double value = static_cast<double>((m_performance->timing()->*(restrictedKeyMap().get(markName)))());
126 exceptionState.throwDOMException(InvalidAccessError, "'" + markName + "' is empty: either the event hasn't happened yet, or it would provide cross-origin timing information.");
129 return value - m_performance->timing()->navigationStart();
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
NetworkItemView.js 61 if (request.timing) {
63 this.appendTab("timing", WebInspector.UIString("Timing"), timingView);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
printer.py 50 if options.timing:
51 # --timing implies --verbose
143 if self.options.timing:
  /external/chromium_org/third_party/mesa/src/docs/OLD/
MESA_trace.spec 40 and back is unaffected except for timing.
89 additional information added to the trace (statistics, profiling/timing,
321 application, except for timing, possible print I/O. TRACE_ERRORS_BIT_MESA
  /external/chromium_org/third_party/openssl/openssl/crypto/des/
FILES0 22 /* Testing and timing programs. */
24 speed.c - Source for libdes.a timing program.
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
Android.mk 41 timing.cc \
receiver.cc 28 VCMReceiver::VCMReceiver(VCMTiming* timing,
36 timing_(timing),
127 // We have a frame - Set timing and render timestamp.
132 // Check render timing.
134 // Assume that render timing errors are due to changes in the video stream.
152 // Timing error => reset timing and flush the jitter buffer.
304 // Initializing timing to the desired delay.
313 // only an estimate based on frames' timestamps and current timing state.
318 // Update timing
    [all...]
  /external/chromium_org/tools/perf/measurements/
page_cycler.js 36 if (!__install_onload_handler && !performance.timing.loadEventEnd)
  /external/mesa3d/docs/OLD/
MESA_trace.spec 40 and back is unaffected except for timing.
89 additional information added to the trace (statistics, profiling/timing,
321 application, except for timing, possible print I/O. TRACE_ERRORS_BIT_MESA
  /external/openssl/crypto/des/
FILES0 22 /* Testing and timing programs. */
24 speed.c - Source for libdes.a timing program.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
timeit.py 20 -v/--verbose: print raw timing results; repeat for more digits precision
39 timing. The best thing to do when accurate timing is necessary is to
40 repeat the timing a few times and use the best time. The -r option is
51 use python -O for the older versions to avoid timing SET_LINENO
106 """Class for timing execution speed of small code snippets.
195 timing = self.inner(it, self.timer)
199 return timing
216 processes interfering with your timing accuracy. So the min()
246 When an exception happens during timing, a traceback is printed t
    [all...]
trace.py 117 -g, --timing Prefix each line with the time since the program started.
453 timing=False):
469 @param timing true iff timing information be displayed
483 if timing:
671 "trackcalls", "timing"])
691 timing = False
710 if opt == "-g" or opt == "--timing":
711 timing = True
796 outfile=counts_file, timing=timing
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
timeit.py 20 -v/--verbose: print raw timing results; repeat for more digits precision
39 timing. The best thing to do when accurate timing is necessary is to
40 repeat the timing a few times and use the best time. The -r option is
51 use python -O for the older versions to avoid timing SET_LINENO
106 """Class for timing execution speed of small code snippets.
195 timing = self.inner(it, self.timer)
199 return timing
216 processes interfering with your timing accuracy. So the min()
246 When an exception happens during timing, a traceback is printed t
    [all...]
trace.py 117 -g, --timing Prefix each line with the time since the program started.
453 timing=False):
469 @param timing true iff timing information be displayed
483 if timing:
671 "trackcalls", "timing"])
691 timing = False
710 if opt == "-g" or opt == "--timing":
711 timing = True
796 outfile=counts_file, timing=timing
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
DocumentLoader.h 130 DocumentLoadTiming* timing() { return &m_documentLoadTiming; } function in class:WebCore::DocumentLoader
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
NetworkRequest.js 208 if (this.timing && this.timing.requestTime) {
343 get timing()
348 set timing(x)
351 // Take startTime and responseReceivedTime from timing data for better accuracy.
352 // Timing's requestTime is a baseline in seconds, rest of the numbers there are ticks in millis.
  /external/chromium_org/third_party/libxml/src/
testSAX.c 64 static int timing = 0; variable
67 * Timing routines.
70 * Internal timing routines to remove the necessity to have unix-specific
103 * startTimer: call where you want to start timing
112 * endTimer: call where you want to stop timing and to print out a
113 * message about the timing performed; format is a printf
172 * We don't have a gettimeofday or time.h, so we just don't do timing
185 * We cannot do anything because we don't have a timing function
1153 else if ((!strcmp(argv[i], "-timing")) ||
1154 (!strcmp(argv[i], "--timing"))) {
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
tempname.c 81 # include <hp-timing.h>
  /external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/css/
overlay.css 69 -webkit-animation-timing-function: ease-in-out;
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebURLResponse.cpp 148 void WebURLResponse::setLoadTiming(const WebURLLoadTiming& timing)
150 RefPtr<ResourceLoadTiming> loadTiming = PassRefPtr<ResourceLoadTiming>(timing);
  /external/chromium_org/ui/webui/resources/css/
dialogs.css 58 -webkit-animation-timing-function: ease-in-out;
  /external/iputils/
ping_common.c 45 /* timing */
46 int timing; /* flag to do timing */ variable
285 fprintf(stderr, "ping: bad timing interval\n");
883 if (timing && cc >= 8+sizeof(struct timeval)) {
953 if (timing) {
1036 if (nreceived && timing) {
1077 if (nreceived && timing) {
  /external/chromium_org/content/browser/renderer_host/p2p/
socket_host_udp_unittest.cc 20 #include "third_party/libjingle/source/talk/base/timing.h"
29 class FakeTiming : public talk_base::Timing {
200 scoped_ptr<talk_base::Timing> timing(new FakeTiming());
201 throttler_.SetTiming(timing.Pass());

Completed in 1884 milliseconds

1 2 34 5 6 7 8 91011