HomeSort by relevance Sort by last modified time
    Searched refs:time (Results 301 - 325 of 5619) sorted by null

<<11121314151617181920>>

  /build/target/board/emulator/
BoardConfig.mk 3 # Product-specific compile-time definitions.
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/util/
JavascriptEventObserver.java 32 * Wait for the javascript event happen for specific time, there is no timeout parameter,
35 public boolean waitForEvent(long time) throws InterruptedException {
38 mEvent.wait(time);
  /external/chromium_org/cc/input/
top_controls_manager_unittest.cc 8 #include "base/time/time.h"
135 base::TimeTicks time = gfx::FrameTime::Now(); local
138 time = base::TimeDelta::FromMicroseconds(100) + time;
139 manager->Animate(time);
165 base::TimeTicks time = gfx::FrameTime::Now(); local
168 time = base::TimeDelta::FromMicroseconds(100) + time;
169 manager->Animate(time);
191 base::TimeTicks time = gfx::FrameTime::Now(); local
217 base::TimeTicks time = gfx::FrameTime::Now(); local
247 base::TimeTicks time = gfx::FrameTime::Now(); local
277 base::TimeTicks time = gfx::FrameTime::Now(); local
340 base::TimeTicks time = base::TimeTicks::Now(); local
    [all...]
  /external/chromium_org/chrome/browser/performance_monitor/
event.h 9 #include "base/time/time.h"
22 // be compared against other events, we construct it with type and time. Other
28 const base::Time& time,
38 base::Time time() const { return time_; } function in class:performance_monitor::Event
45 // The time at which the event was recorded.
46 base::Time time_;
  /external/chromium_org/chrome/common/extensions/docs/examples/api/idle/idle_simple/
background.js 8 * Stores a state every time an "active" event is sent, up to 20 items.
11 var time = new Date();
15 history_log.unshift({'state':newstate, 'time':time});
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
TouchEventSynthesizer.java 58 long time = SystemClock.uptimeMillis(); local
62 mDownTime = time;
64 mDownTime, time, MotionEvent.ACTION_DOWN, 1,
72 mDownTime, time, MotionEvent.ACTION_POINTER_DOWN,
81 MotionEvent event = MotionEvent.obtain(mDownTime, time,
91 mDownTime, time, MotionEvent.ACTION_CANCEL, 1,
101 mDownTime, time, MotionEvent.ACTION_POINTER_UP,
109 mDownTime, time, MotionEvent.ACTION_UP, 1,
  /external/chromium_org/content/test/plugin/
plugin_schedule_timer_test.h 9 #include "base/time/time.h"
33 int time; member in struct:NPAPIClient::ScheduleTimerTest::Event
55 // Time of initial event.
56 base::Time start_time_;
59 int FindUnreceivedEvent(int time, uint32 timer_id);
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
ui_unittests.js 129 test("time", 6, function() {
130 var time = new ui.RelativeTime();
131 equal(time.tagName, 'TIME');
132 equal(time.className, 'relative');
133 deepEqual(Object.getOwnPropertyNames(time.__proto__).sort(), [
139 equal(time.outerHTML, '<time class="relative"></time>');
142 time.setDate(tenMinutesAgo)
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkOperandInterpolator.h 26 @param index The index of this frame (frames must be ordered by time)
27 @param time The millisecond time for this frame
35 bool setKeyFrame(int index, SkMSec time, const SkOperand values[], SkScalar blend = SK_Scalar1);
36 Result timeToValues(SkMSec time, SkOperand values[]) const;
  /external/chromium_org/tools/android/adb_reboot/
adb_reboot.c 9 #include <time.h>
35 time(&ct);
37 /* File was not touched for some time. */
  /external/chromium_org/ui/views/
mouse_watcher.h 10 #include "base/time/time.h"
61 void set_notify_on_exit_time(base::TimeDelta time) {
62 notify_on_exit_time_ = time;
  /external/guava/guava-testlib/src/com/google/common/testing/
FakeTicker.java 40 /** Advances the ticker value by {@code time} in {@code timeUnit}. */
41 public FakeTicker advance(long time, TimeUnit timeUnit) {
42 return advance(timeUnit.toNanos(time));
  /external/llvm/lib/Support/Unix/
Unix.h 42 # include <sys/time.h>
44 #include <time.h>
  /external/llvm/unittests/Support/
TimeValueTest.cpp 1 //===- llvm/unittest/Support/TimeValueTest.cpp - Time Value tests ---------===//
12 #include <time.h>
19 time_t now_t = time(NULL);
32 // The "seconds" part in Posix time may be expected as zero.
  /external/proguard/src/proguard/gui/splash/
TypeWriterString.java 53 public String getString(long time)
55 double t = timing.getTiming(time);
  /external/replicaisland/src/com/replica/replicaisland/
InputSystem.java 21 * an average direction over a short period of time.
46 TimeSystem time = sSystemRegistry.timeSystem; local
47 mTrackball.press(time.getGameTime(), mTrackball.getX() + x, mTrackball.getY() + y);
52 TimeSystem time = sSystemRegistry.timeSystem; local
56 mTouchScreen.press(index, time.getGameTime(), x, params.gameHeight - y);
81 TimeSystem time = sSystemRegistry.timeSystem; local
82 mOrientationSensor.press(time.getGameTime(), horizontalMotion, verticalMotion);
87 TimeSystem time = sSystemRegistry.timeSystem; local
88 final float gameTime = time.getGameTime();
  /external/skia/src/animator/
SkOperandInterpolator.h 26 @param index The index of this frame (frames must be ordered by time)
27 @param time The millisecond time for this frame
35 bool setKeyFrame(int index, SkMSec time, const SkOperand values[], SkScalar blend = SK_Scalar1);
36 Result timeToValues(SkMSec time, SkOperand values[]) const;
  /external/stlport/stlport/stl/
_ctime.h 28 # include <time.h>
49 using _STLP_VENDOR_CSTD::time;
  /external/webrtc/src/system_wrappers/source/
event_posix.h 17 #include <time.h>
39 virtual bool StartTimer(bool periodic, unsigned long time);
  /frameworks/ex/common/java/com/android/common/
OperationScheduler.java 21 import android.text.format.Time;
142 * Compute the time of the next operation. Does not modify any state
146 * @return the wall clock time ({@link System#currentTimeMillis()}) when the
148 * before the current time.
159 // clipped to the current time so we don't languish forever.
170 long time = triggerTimeMillis; local
172 time = Math.min(time, lastSuccessTimeMillis + options.periodicIntervalMillis);
175 time = Math.max(time, moratoriumTimeMillis)
228 long time = mStorage.getLong(name, 0); local
361 Time time = new Time(); local
    [all...]
  /frameworks/opt/telephony/src/java/android/telephony/
SmsCbEtwsInfo.java 21 import android.text.format.Time;
155 Time time = new Time(Time.TIMEZONE_UTC); local
158 time.year = year + 2000;
159 time.month = month - 1;
160 time.monthDay = day;
161 time.hour = hour;
162 time.minute = minute
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
TelephonyUtilsTest.java 27 * isRetryNeeded should be false and the time 0
76 int time = rm.getRetryTimer(); local
77 assertTrue((time >= 500) && (time < 600));
78 if (time == 500) {
154 int time; local
159 time = rm.getRetryTimer();
160 assertTrue((time >= 1000) && (time < 1100));
164 time = rm.getRetryTimer()
187 int time; local
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_ctime.h 28 # include <time.h>
49 using _STLP_VENDOR_CSTD::time;
  /ndk/sources/host-tools/sed-4.2.1/lib/
sys_time.in.h 3 /* Provide a more complete sys/time.h.
41 # include <time.h>
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_ctime.h 28 # include <time.h>
49 using _STLP_VENDOR_CSTD::time;

Completed in 1222 milliseconds

<<11121314151617181920>>