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

1 2 3 4 5 6 7 8 91011>>

  /external/swiftshader/src/Common/
Timer.hpp 22 class Timer
25 Timer();
27 ~Timer();
Timer.cpp 15 #include "Timer.hpp"
29 Timer::Timer()
33 Timer::~Timer()
37 double Timer::seconds()
48 int64_t Timer::ticks()
59 int64_t Timer::counter()
72 int64_t Timer::frequency()
  /packages/apps/DeskClock/src/com/android/deskclock/data/
TimerListener.java 25 * @param timer the timer that was added
27 void timerAdded(Timer timer);
30 * @param before the timer state before the update
31 * @param after the timer state after the update
33 void timerUpdated(Timer before, Timer after);
36 * @param timer the timer that was remove
    [all...]
Timer.java 30 import static com.android.deskclock.data.Timer.State.EXPIRED;
31 import static com.android.deskclock.data.Timer.State.MISSED;
32 import static com.android.deskclock.data.Timer.State.PAUSED;
33 import static com.android.deskclock.data.Timer.State.RESET;
34 import static com.android.deskclock.data.Timer.State.RUNNING;
37 * A read-only domain object representing a countdown timer.
39 public final class Timer {
72 /** The minimum duration of a timer. */
75 /** The maximum duration of a new timer created via the user interface. */
81 /** A unique identifier for the timer. *
    [all...]
TimerModel.java 41 import com.android.deskclock.timer.TimerKlaxon;
42 import com.android.deskclock.timer.TimerService;
51 import static com.android.deskclock.data.Timer.State.EXPIRED;
52 import static com.android.deskclock.data.Timer.State.RESET;
55 * All {@link Timer} data is accessed via this model.
84 /** Update timer notification when locale changes. */
95 /** The listeners to notify when a timer is added, updated or removed. */
98 /** Delegate that builds platform-specific timer notifications. */
103 * ids in this collection. If a timer was already expired when the app was started its id will
116 private List<Timer> mTimers
216 Timer timer = new Timer(-1, RESET, length, length, Timer.UNUSED, Timer.UNUSED, length, local
    [all...]
  /toolchain/binutils/binutils-2.25/gold/
timer.h 0 // timer.h -- helper class for time accounting -*- C++ -*-
29 class Timer
45 Timer();
65 Timer(const Timer&);
66 Timer& operator=(const Timer&);
timer.cc 0 // timer.cc -- helper class for time accounting
33 #include "timer.h"
38 // Class Timer
40 Timer::Timer()
49 Timer::start()
56 Timer::stamp(int n)
93 Timer::get_time(TimeStats *now)
108 Timer::TimeStats
109 Timer::get_elapsed_time(
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Core/Dxe/ArchProtocol/Timer/
Timer.c 14 Timer.c
18 Timer Architectural Protocol GUID as defined in Tiano
23 #include EFI_ARCH_PROTOCOL_DEFINITION (Timer)
27 EFI_GUID_STRING(&gEfiTimerArchProtocolGuid, "Timer", "Timer Arch Protocol");
  /device/linaro/bootloader/edk2/UefiCpuPkg/PiSmmCpuDxeSmm/
SyncTimer.c 2 SMM Timer feature support
28 Initialize Timer for SMM AP Sync.
55 Start Timer for SMM AP Sync.
69 Check if the SMM AP Sync timer is timeout.
71 @param Timer The start timer from the begin.
77 IN UINT64 Timer
85 // We need to consider the case that CurrentTimer is equal to Timer
86 // when some timer runs too slow and CPU runs fast. We think roll over
93 if (CurrentTimer <= Timer) {
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Chips/TexasInstruments/Omap35xx/Library/OmapLib/
OmapLib.c 38 IN UINTN Timer
41 switch (Timer) {
60 IN UINTN Timer
63 if ((Timer < 1) || (Timer > 12)) {
68 return 36 + Timer;
  /device/linaro/bootloader/edk2/Nt32Pkg/TimerDxe/
TimerDxe.inf 2 # NT Emulation Timer Architectural Protocol Driver as defined in DXE CIS
4 # This Timer module uses an NT Thread to simulate the timer-tick driven
5 # timer service. In the future, the Thread creation should possibly be
21 BASE_NAME = Timer
35 Timer.c
36 Timer.h
  /device/linaro/bootloader/edk2/Omap35xxPkg/Library/OmapLib/
OmapLib.c 38 IN UINTN Timer
41 switch (Timer) {
60 IN UINTN Timer
63 if ((Timer < 1) || (Timer > 12)) {
68 return 36 + Timer;
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Event/
Timer.c 2 Core Timer Services
31 // Timer functions
34 Inserts the timer event.
36 @param Event Points to the internal structure of timer event
52 // Get the timer's trigger time
54 TriggerTime = Event->Timer.TriggerTime;
57 // Insert the timer into the timer database in assending sorted order
60 Event2 = CR (Link, IEVENT, Timer.Link, EVENT_SIGNATURE);
62 if (Event2->Timer.TriggerTime > TriggerTime) {
    [all...]
  /device/linaro/bootloader/edk2/PcAtChipsetPkg/8254TimerDxe/
8254Timer.inf 2 # 8254 timer driver that provides Timer Arch protocol.
17 BASE_NAME = Timer
18 MODULE_UNI_FILE = Timer.uni
37 Timer.h
38 Timer.c
  /external/libchrome/base/timer/
timer.cc 5 #include "base/timer/timer.h"
18 // Timer in the thread's default task runner. It also handles the following
21 // - abandoned (orphaned) by Timer.
24 explicit BaseTimerTaskInternal(Timer* timer)
25 : timer_(timer) {
30 // destructed. If so, don't leave Timer with a dangling pointer
41 // *this will be deleted by the task runner, so Timer needs to
45 // Although Timer should not call back into *this, let's clea
47 Timer* timer = timer_; local
    [all...]
timer.h 5 // OneShotTimer and RepeatingTimer provide a simple timer API. As the names
10 // OneShotTimer and RepeatingTimer both cancel the timer when they go out of
14 // receive timer events.
36 // allows you to easily defer the timer event until the timer delay passes once
47 // IMPORTANT: If you change timer code, make sure that all tests (including
70 class BASE_EXPORT Timer {
72 // Construct a timer in repeating or one-shot mode. Start or SetTaskInfo must
75 Timer(bool retain_user_task, bool is_repeating);
77 // Construct a timer with retained task info
    [all...]
  /external/mockito/src/test/java/org/mockito/internal/util/
TimerTest.java 15 Timer timer = new Timer(duration); local
18 timer.start();
21 Assertions.assertThat(timer.isCounting()).isTrue();
27 Timer timer = new Timer(0); local
28 timer.start();
34 Assertions.assertThat(timer.isCounting()).isFalse()
    [all...]
  /external/pdfium/xfa/fwl/
cfwl_caret.h 40 class Timer : public CFWL_Timer {
42 explicit Timer(CFWL_Caret* pCaret);
43 ~Timer() override {}
47 friend class CFWL_Caret::Timer;
53 std::unique_ptr<CFWL_Caret::Timer> m_pTimer;
  /external/skia/tests/
Test.cpp 39 skiatest::Timer::Timer() : fStartNanos(SkTime::GetNSecs()) {}
41 double skiatest::Timer::elapsedNs() const {
45 double skiatest::Timer::elapsedMs() const { return this->elapsedNs() * 1e-6; }
47 SkMSec skiatest::Timer::elapsedMsInt() const {
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/ARM/VExpress/AcpiTables/rtsm_ve-aemv8a/
gtdt.asl 33 * [GTDT] Generic Timer Description Table
73 [0004] Virtual Timer Interrupt : 0000001b
88 [0004] Platform Timer Count : 00000001
89 [0004] Platform Timer Offset : 0000005C
91 /* Memory-mapped GT (Generic Timer) structures */
96 [0004] Timer Count : 00000001
97 [0004] Timer Offset : 00000010
104 [0004] Timer Interrupt : 00000029 /* 25+16 */
105 [0004] Timer Flags (decoded below) : 00000000 /* Active high level-sensitive */
108 /* No virtual timer */
    [all...]
  /external/llvm/include/llvm/Support/
Timer.h 1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===//
22 class Timer;
70 /// Timer - This class is used to track the amount of time spent between
73 /// By default, the Timer will print the amount of time it has captured to
74 /// standard error when the last timer is destroyed, otherwise it is printed
78 class Timer {
82 bool Running; // Is the timer currently running?
83 bool Triggered; // Has the timer ever been triggered?
84 TimerGroup *TG; // The TimerGroup this Timer is in.
86 Timer **Prev, *Next; // Doubly linked list of timers in the group
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
Timer.h 1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===//
10 // This file defines three classes: Timer, TimeRegion, and TimerGroup,
27 class Timer;
71 /// print - Print the current timer to standard error, and reset the "Started"
76 /// Timer - This class is used to track the amount of time spent between
79 /// By default, the Timer will print the amount of time it has captured to
80 /// standard error when the laster timer is destroyed, otherwise it is printed
84 class Timer {
88 TimerGroup *TG; // The TimerGroup this Timer is in.
90 Timer **Prev, *Next; // Doubly linked list of timers in the group
    [all...]
  /external/llvm/unittests/Support/
TimerTest.cpp 1 //===- unittests/TimerTest.cpp - Timer tests ------------------------------===//
10 #include "llvm/Support/Timer.h"
35 TEST(Timer, Additivity) {
36 Timer T1("T1");
52 TEST(Timer, CheckIfTriggered) {
53 Timer T1("T1");
  /frameworks/rs/tests/lldb/tests/harness/
util_timer.py 15 '''Timer utility'''
22 class Timer(object):
23 '''A Timer utility to execute a callback after a certain interval.'''
26 '''Initialise the Timer without starting it.
48 '''Checks whether the timer is executing.
51 boolean, true if the timer is currently running, false otherwise
56 '''Starts the timer.
59 self, the Timer instance
62 RuntimeError: if the timer is already running
65 raise RuntimeError('Timer already running'
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/
Timer.java 24 public class Timer {
26 * The name of the timer, the phase of the program it is intended to time.
42 * Initialise a new timer with the provided name.
44 public Timer(String name) {
65 * Log the elapsed time this timer has recorded.

Completed in 1026 milliseconds

1 2 3 4 5 6 7 8 91011>>