HomeSort by relevance Sort by last modified time
    Searched refs:startTime (Results 1 - 25 of 603) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /developers/build/prebuilts/gradle/Timer/Wearable/src/main/java/com/example/android/wearable/timer/util/
TimerObj.java 25 public long startTime;
33 * @param startTime the start time of the timer.
36 public TimerObj(long startTime, long timerLength) {
37 this.startTime = startTime;
47 return originalLength - (millis - startTime);
  /developers/samples/android/wearable/wear/Timer/Wearable/src/main/java/com/example/android/wearable/timer/util/
TimerObj.java 25 public long startTime;
33 * @param startTime the start time of the timer.
36 public TimerObj(long startTime, long timerLength) {
37 this.startTime = startTime;
47 return originalLength - (millis - startTime);
  /development/samples/browseable/Timer/Wearable/src/com.example.android.wearable.timer/util/
TimerObj.java 25 public long startTime;
33 * @param startTime the start time of the timer.
36 public TimerObj(long startTime, long timerLength) {
37 this.startTime = startTime;
47 return originalLength - (millis - startTime);
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
FetchInitiatorInfo.h 38 , startTime(0.0)
46 double startTime;
54 , startTime(info.startTime)
63 info.startTime = startTime;
69 double startTime;
  /external/chromium_org/third_party/WebKit/Source/core/timing/
PerformanceMark.h 39 static PassRefPtrWillBeRawPtr<PerformanceMark> create(const String& name, double startTime)
41 return adoptRefWillBeNoop(new PerformanceMark(name, startTime));
52 PerformanceMark(const String& name, double startTime)
53 : PerformanceEntry(name, "mark", startTime, startTime) { }
PerformanceEntry.cpp 36 PerformanceEntry::PerformanceEntry(const String& name, const String& entryType, double startTime, double finishTime)
39 , m_startTime(startTime)
40 , m_duration(finishTime - startTime)
58 double PerformanceEntry::startTime() const
PerformanceMeasure.h 39 static PassRefPtrWillBeRawPtr<PerformanceMeasure> create(const String& name, double startTime, double endTime)
41 return adoptRefWillBeNoop(new PerformanceMeasure(name, startTime, endTime));
52 PerformanceMeasure(const String& name, double startTime, double endTime)
53 : PerformanceEntry(name, "measure", startTime, endTime) { }
PerformanceEntry.h 50 double startTime() const;
59 return a->startTime() < b->startTime();
65 PerformanceEntry(const String& name, const String& entryType, double startTime, double finishTime);
PerformanceEntry.idl 37 readonly attribute double startTime;
PerformanceResourceTiming.h 52 static PassRefPtrWillBeRawPtr<PerformanceResourceTiming> create(const ResourceTimingInfo& info, Document* requestingDocument, double startTime, double lastRedirectEndTime, bool m_allowTimingDetails, bool m_allowRedirectDetails)
54 return adoptRefWillBeNoop(new PerformanceResourceTiming(info, requestingDocument, startTime, lastRedirectEndTime, m_allowTimingDetails, m_allowRedirectDetails));
57 static PassRefPtrWillBeRawPtr<PerformanceResourceTiming> create(const ResourceTimingInfo& info, Document* requestingDocument, double startTime, bool m_allowTimingDetails)
59 return adoptRefWillBeNoop(new PerformanceResourceTiming(info, requestingDocument, startTime, 0.0, m_allowTimingDetails, false));
81 PerformanceResourceTiming(const ResourceTimingInfo&, Document* requestingDocument, double startTime, double lastRedirectEndTime, bool m_allowTimingDetails, bool m_allowRedirectDetails);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptGCEventListener.h 40 virtual void didGC(double startTime, double endTime, size_t collectedBytes) = 0;
  /external/chromium_org/tools/telemetry/telemetry/timeline/
inspector_importer.py 30 return 'startTime' in event_datum and 'type' in event_datum
45 if ('startTime' in raw_inspector_event and
49 if x in ('startTime', 'endTime', 'children'):
54 start_time = raw_inspector_event['startTime']
  /external/chromium_org/third_party/WebKit/PerformanceTests/Animation/resources/
framerate.js 5 var startTime;
12 PerfTestRunner.measureValueAsync(1000 * framesPerTimerReading / (currTime - startTime));
13 startTime = currTime;
24 startTime = performance.now();
  /external/chromium_org/third_party/WebKit/public/web/
WebActiveWheelFlingParameters.h 45 double startTime;
50 , startTime(0)
  /frameworks/base/core/java/android/content/
SyncInfo.java 45 public final long startTime;
48 public SyncInfo(int authorityId, Account account, String authority, long startTime) {
52 this.startTime = startTime;
60 this.startTime = other.startTime;
73 parcel.writeLong(startTime);
81 startTime = parcel.readLong();
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebActiveGestureAnimation.cpp 39 PassOwnPtr<WebActiveGestureAnimation> WebActiveGestureAnimation::createWithTimeOffset(PassOwnPtr<WebGestureCurve> curve, WebGestureCurveTarget* target, double startTime)
41 return adoptPtr(new WebActiveGestureAnimation(curve, target, startTime, false));
48 WebActiveGestureAnimation::WebActiveGestureAnimation(PassOwnPtr<WebGestureCurve> curve, WebGestureCurveTarget* target, double startTime, bool waitingForFirstTick)
49 : m_startTime(startTime)
WebActiveGestureAnimation.h 47 static PassOwnPtr<WebActiveGestureAnimation> createWithTimeOffset(PassOwnPtr<WebGestureCurve>, WebGestureCurveTarget*, double startTime);
54 WebActiveGestureAnimation(PassOwnPtr<WebGestureCurve>, WebGestureCurveTarget*, double startTime, bool waitingForFirstTick);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
AnimationTime.java 41 public static long startTime() {
  /external/chromium_org/third_party/WebKit/Source/core/html/
MediaFragmentURIParser.h 41 double startTime();
52 bool parseNPTFragment(const LChar*, unsigned length, double& startTime, double& endTime);
  /frameworks/base/core/java/com/android/internal/os/
Zygote.java 90 long startTime = SystemClock.elapsedRealtime();
92 checkTime(startTime, "Zygote.preFork");
96 checkTime(startTime, "Zygote.nativeForkAndSpecialize");
98 checkTime(startTime, "Zygote.postForkCommon");
110 private static void checkTime(long startTime, String where) {
112 if ((now-startTime) > 1000) {
114 Slog.w(TAG, "Slow operation: " + (now-startTime) + "ms so far, now at " + where);
154 long startTime = SystemClock.elapsedRealtime();
156 checkTime(startTime, "Zygote.callPostForkChildHooks");
  /cts/tests/tests/view/src/android/view/animation/cts/
DecelerateInterpolatorTest.java 89 long startTime = anim.getStartTime();
90 anim.getTransformation(startTime, transformation);
94 anim.getTransformation(startTime + 500, transformation);
97 anim.getTransformation(startTime + 1000, transformation);
100 anim.getTransformation(startTime + 1500, transformation);
103 anim.getTransformation(startTime + DECELERATE_ALPHA_DURATION, transformation);
123 startTime = anim.getStartTime();
124 anim.getTransformation(startTime, transformation);
128 anim.getTransformation(startTime + 500, transformation);
131 anim.getTransformation(startTime + 1000, transformation)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptGCEvent.h 71 double startTime() { return m_startTime; }
72 void setStartTime(double startTime) { m_startTime = startTime; }
  /cts/hostsidetests/appsecurity/test-apps/UsePermissionDiffCert/src/com/android/cts/usespermissiondiffcertapp/
ReceiveUriActivity.java 98 final long startTime = SystemClock.uptimeMillis();
104 if (SystemClock.uptimeMillis() >= (startTime + TIMEOUT_MILLIS)) {
125 final long startTime = SystemClock.uptimeMillis();
131 if (SystemClock.uptimeMillis() >= (startTime + TIMEOUT_MILLIS)) {
140 final long startTime = SystemClock.uptimeMillis();
146 if (SystemClock.uptimeMillis() >= (startTime + TIMEOUT_MILLIS)) {
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
TextTrackCue.idl 36 attribute double startTime;
  /external/compiler-rt/test/builtins/timing/
timing.h 5 double intervalInCycles( uint64_t startTime, uint64_t endTime )
7 uint64_t rawTime = endTime - startTime;

Completed in 751 milliseconds

1 2 3 4 5 6 7 8 91011>>