HomeSort by relevance Sort by last modified time
    Searched refs:Timer (Results 226 - 250 of 442) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
HtmlSanitizer.java 21 import com.android.mail.perf.Timer;
401 Timer.startTiming("sanitizingHTMLEmail");
405 Timer.stopTiming("sanitizingHTMLEmail");
  /frameworks/base/core/java/android/os/
BatteryStats.java 54 * A constant indicating a partial wake lock timer.
59 * A constant indicating a full wake lock timer.
64 * A constant indicating a window wake lock timer.
69 * A constant indicating a sensor timer.
74 * A constant indicating a a wifi running timer
79 * A constant indicating a full wifi lock timer
89 * A constant indicating a wifi multicast timer
94 * A constant indicating a video turn on timer
99 * A constant indicating a vibrator on timer
104 * A constant indicating a foreground activity timer
2221 Timer timer = ent.getValue(); local
2234 Timer timer = ent.getValue(); local
2249 Timer timer = se.getSensorTime(); local
2914 BatteryStats.Timer timer = ent.getValue(); local
2924 TimerEntry timer = ktimers.get(i); local
2946 TimerEntry timer = timers.get(i); local
2965 Timer timer = ent.getValue(); local
2971 TimerEntry timer = reasons.get(i); local
3153 Timer timer = ent.getValue(); local
3178 Timer timer = ent.getValue(); local
3216 Timer timer = se.getSensorTime(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Document.h 52 #include "platform/Timer.h"
    [all...]
MainThreadTaskRunner.cpp 123 void MainThreadTaskRunner::pendingTasksTimerFired(Timer<MainThreadTaskRunner>*)
ScriptRunner.cpp 125 void ScriptRunner::timerFired(Timer<ScriptRunner>* timer)
127 ASSERT_UNUSED(timer, timer == &m_timer);
  /prebuilts/misc/common/swig/include/2.0.11/gcj/
javaprims.i 320 class Timer;
321 class Timer$Scheduler;
322 class Timer$TaskQueue;
  /external/chromium_org/third_party/WebKit/Source/web/
AssociatedURLLoader.cpp 39 #include "platform/Timer.h"
149 void notifyError(Timer<ClientAdapter>*);
156 Timer<ClientAdapter> m_errorTimer;
274 // If an error has already been received, start a timer to report it to the client
280 void AssociatedURLLoader::ClientAdapter::notifyError(Timer<ClientAdapter>* timer)
282 ASSERT_UNUSED(timer, timer == &m_errorTimer);
ValidationMessageClientImpl.cpp 115 void ValidationMessageClientImpl::checkAnchorStatus(Timer<ValidationMessageClientImpl>*)
  /external/clang/include/clang/Frontend/
CompilerInstance.h 30 class Timer;
102 /// \brief The frontend timer
103 std::unique_ptr<llvm::Timer> FrontendTimer;
499 /// @name Frontend timer
504 llvm::Timer &getFrontendTimer() const {
505 assert(FrontendTimer && "Compiler instance has no frontend timer!");
613 /// Create the frontend timer and replace any existing one with it.
  /external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
CacheBuilder.java 28 import com.google.gwt.user.client.Timer;
273 Timer timer = new Timer() { local
279 timer.schedule((int) expirationMillis);
  /frameworks/base/services/core/java/com/android/server/location/
ComprehensiveCountryDetector.java 32 import java.util.Timer;
74 protected Timer mLocationRefreshTimer;
409 Slog.d(TAG, "start periodic location refresh timer. Interval: "
412 mLocationRefreshTimer = new Timer();
  /frameworks/base/services/tests/servicestests/src/com/android/server/location/
LocationBasedCountryDetectorTest.java 32 import java.util.Timer;
146 public Timer getTimer() {
354 Timer timer = detector.getTimer(); local
355 assertTrue(timer == null);
  /external/chromium_org/chrome/browser/ui/bookmarks/
bookmark_browsertest.cc 7 #include "base/timer/timer.h"
49 base::Timer timer(false, true);
50 timer.Start(
  /external/chromium_org/third_party/WebKit/Source/core/events/
GenericEventQueue.cpp 93 void GenericEventQueue::timerFired(Timer<GenericEventQueue>*)
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
SearchInputType.cpp 136 void SearchInputType::searchEventTimerFired(Timer<SearchInputType>*)
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
LoadableTextTrack.cpp 98 void LoadableTextTrack::loadTimerFired(Timer<LoadableTextTrack>*)
  /external/chromium_org/third_party/WebKit/Source/core/loader/
TextTrackLoader.cpp 55 void TextTrackLoader::cueLoadTimerFired(Timer<TextTrackLoader>* timer)
57 ASSERT_UNUSED(timer, timer == &m_cueLoadTimer);
  /external/jmdns/src/javax/jmdns/impl/
JmmDNSImpl.java 16 import java.util.Timer;
60 private final Timer _timer;
72 _timer = new Timer("Multihommed mDNS.Timer", true);
566 public void start(Timer timer) {
567 timer.schedule(this, 0, DNSConstants.NETWORK_CHECK_INTERVAL);
  /external/lldb/source/Core/
Mangled.cpp 22 #include "lldb/Core/Timer.h"
190 Timer scoped_timer (__PRETTY_FUNCTION__,
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugAranges.cpp 19 #include "lldb/Core/Timer.h"
138 Timer scoped_timer(__PRETTY_FUNCTION__, "%s this = %p",
  /external/lldb/source/Plugins/SymbolVendor/ELF/
SymbolVendorELF.cpp 23 #include "lldb/Core/Timer.h"
114 Timer scoped_timer (__PRETTY_FUNCTION__,
  /frameworks/base/data/sounds/
AudioPackage13_48.mk 11 ALARM_FILES := Argon Carbon Helium Krypton Neon Oxygen Osmium Platinum Timer
  /external/chromium_org/ash/autoclick/
autoclick_controller.cc 9 #include "base/timer/timer.h"
71 scoped_ptr<base::Timer> autoclick_timer_;
118 autoclick_timer_.reset(new base::Timer(
  /external/chromium_org/sync/internal_api/attachments/
task_queue_unittest.cc 13 #include "base/timer/mock_timer.h"
103 queue_->SetTimerForTest(timer_to_pass.PassAs<base::Timer>());
148 // Try a different task. See the timer remains unchanged because the previous
201 queue_->SetTimerForTest(timer_to_pass.PassAs<base::Timer>());
  /external/chromium_org/third_party/WebKit/Source/core/editing/
FrameSelection.h 34 #include "platform/Timer.h"
249 void caretBlinkTimerFired(Timer<FrameSelection>*);
284 Timer<FrameSelection> m_caretBlinkTimer;

Completed in 1015 milliseconds

1 2 3 4 5 6 7 8 91011>>