HomeSort by relevance Sort by last modified time
    Searched full:time (Results 1376 - 1400 of 43060) sorted by null

<<51525354555657585960>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm-generic/
shmbuf.h 28 __kernel_time_t shm_atime; /* last attach time */
32 __kernel_time_t shm_dtime; /* last detach time */
36 __kernel_time_t shm_ctime; /* last change time */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
posix_types.h 13 * <sys/time.h> (and thus <linux/time.h>) - but this is a more logical
14 * place for them. Solved by having dummy defines in <sys/time.h>.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
timex.h 23 #include <sys/time.h>
29 struct timeval time; /* current time (ro) */ member in struct:ntptimeval
37 long int offset; /* time offset (usec) */
42 long int constant; /* pll time constant */
45 struct timeval time; /* (read only) */ member in struct:timex
66 #define ADJ_OFFSET 0x0001 /* time offset */
68 #define ADJ_MAXERROR 0x0004 /* maximum time error */
69 #define ADJ_ESTERROR 0x0008 /* estimated time error */
71 #define ADJ_TIMECONST 0x0020 /* pll time constant *
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
anim1-expected-completion56.txt 4 android:interpolator : Defines the interpolator used to smooth the animation movement in time. [reference]
8 android:duration : Amount of time (in milliseconds) for the animation to run. [integer]
9 android:startOffset : Delay in milliseconds before the animation runs, once start time is reached. [integer]
  /external/chromium_org/chrome/browser/ui/webui/
history_ui.cc 21 #include "base/time/time.h"
80 // The amount of time to wait for a response from the WebHistoryService.
195 base::string16 getRelativeDateLocalized(const base::Time& visit_time) {
196 base::Time midnight = base::Time::Now().LocalMidnight();
211 void normalizeMonths(base::Time::Exploded* exploded) {
212 // Decrease a year at a time until we have a proper date.
265 const GURL& url, const base::string16& title, base::Time time,
860 base::Time time = base::Time::UnixEpoch() + local
    [all...]
  /external/chromium_org/chrome/browser/history/
visit_database.h 76 bool GetVisitsForTimes(const std::vector<base::Time>& times,
79 // Fills all visits in the time range [begin, end) to the given vector. Either
80 // time can be is_null(), in which case the times in that direction are
88 bool GetAllVisitsInRange(base::Time begin_time, base::Time end_time,
91 // Fills all visits with specified transition in the time range [begin, end)
92 // to the given vector. Either time can be is_null(), in which case the times
100 bool GetVisitsInRangeForTransition(base::Time begin_time,
101 base::Time end_time,
106 // Fills all visits in the given time range into the given vector that shoul
    [all...]
  /external/chromium_org/chrome/browser/resources/net_internals/
cros_log_visualizer.js 9 * - Can zoom in result by select time range
24 'cros-log-visualizer-visualizer-time-display';
121 * It creates a time display that moves with the timeline
175 * - lower/upperBound: Time range (Events out of range will be skipped)
176 * - totalDuration: The length of time range
177 * - unitDuration: The unit time length per pixel
185 this.lowerBound = this.events[0].time;
186 this.upperBound = this.events[this.events.length - 1].time;
200 * Reset the canvas to the initial time range
235 var startPosition = this.getPosition(event.time);
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
reldtfmt.h 84 * Format a date or time, which is the standard millis since 24:00 GMT, Jan
90 * @param cal Calendar set to the date and time to be formatted
91 * into a date/time string.
124 * Parse a date/time string beginning at the given parse position. For
125 * example, a time text "07/10/96 4:5 PM, PDT" will be parsed into a Date
133 * @param text The date/time string to be parsed
134 * @param cal a Calendar set to the date and time to be formatted
135 * into a date/time string.
147 * Parse a date/time string starting at the given parse position. For
148 * example, a time text "07/10/96 4:5 PM, PDT" will be parsed into a Dat
    [all...]
  /frameworks/base/core/java/android/app/
AlarmManager.java 38 * during that time), but will be cleared if it is turned off and rebooted.
52 * your application code run at a specific time, even if your application is
76 * Alarm time in {@link System#currentTimeMillis System.currentTimeMillis()}
77 * (wall clock time in UTC), which will wake up the device when
82 * Alarm time in {@link System#currentTimeMillis System.currentTimeMillis()}
83 * (wall clock time in UTC). This alarm does not wake the
85 * delivered until the next time the device wakes up.
89 * Alarm time in {@link android.os.SystemClock#elapsedRealtime
90 * SystemClock.elapsedRealtime()} (time since boot, including sleep),
95 * Alarm time in {@link android.os.SystemClock#elapsedRealtim
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
CountingTimerView.java 37 * Class to measure and draw the time in the {@link com.android.deskclock.CircleTimerView}.
40 * drawing digits (and optional label) of the time set in {@link #setTime(long, boolean, boolean)}
64 // Hours and minutes are signed for when a timer goes past the set time and thus negative
138 protected void updateWidth(final String time) {
141 mWidth = time.length() * mEm;
148 public float calcTotalWidth(final String time) {
149 if (time != null) {
150 updateWidth(time);
163 * Draws each character with a fixed spacing from time starting at ii.
164 * @param canvas the canvas on which the time segment will be draw
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/month/
SimpleDayPickerFragment.java 31 import android.text.format.Time;
51 * reduced number of days, or display an arbitrary number of weeks at a time. By
92 // highlighted time
93 protected Time mSelectedDay = new Time();
99 // disposable variable used for time calculations
100 protected Time mTempTime = new Time();
103 // When the week starts; numbered like Time.<WEEKDAY> (e.g. SUNDAY=0).
106 protected Time mFirstDayOfMonth = new Time()
    [all...]
  /external/chromium_org/base/time/
pr_time_unittest.cc 6 #include <time.h>
10 #include "base/time/time.h"
13 using base::Time;
18 PRTime comparison_time_pdt = 1192477500 * Time::kMicrosecondsPerSecond;
20 // Time with positive tz offset and fractional seconds:
24 // Specialized test fixture allowing time strings without timezones to be
25 // tested by comparing them to a known time in the local zone.
31 // must be a time guaranteed to be outside of a DST fallback hour in
45 mktime(&local_comparison_tm) * Time::kMicrosecondsPerSecond
    [all...]
  /external/chromium_org/cc/animation/
animation.h 10 #include "base/time/time.h"
19 // loop count, last pause time, and the total time spent paused.
25 // When this time arrives, the controller will move the animation into the
103 // until it is given a start time. This is true for animations running on the
121 // Takes the given absolute time, and using the start time and the number
122 // of iterations, returns the relative time in the current iteration.
156 // group id. Grouped animations are guaranteed to start at the same time an
    [all...]
  /external/chromium_org/chrome/browser/history/android/
android_history_types.h 83 // The page's first visit time.
84 void set_created(const base::Time created) {
88 const base::Time& created() const {
92 // The page's last visit time.
93 void set_last_visit_time(const base::Time last_visit_time) {
97 const base::Time& last_visit_time() const {
173 base::Time created_;
174 base::Time last_visit_time_;
230 const base::Time search_time() const {
233 void set_search_time(const base::Time& time)
    [all...]
  /external/chromium_org/content/browser/fileapi/
local_file_stream_reader_unittest.cc 88 const base::Time& expected_modification_time) {
97 base::Time new_modified_time =
110 base::Time test_file_modification_time() const {
124 base::Time test_file_modification_time_;
130 CreateFileReader(nonexistent_path, 0, base::Time()));
145 CreateFileReader(empty_path, 0, base::Time()));
170 // Touch file so that the file's modification time becomes different
182 // With NULL expected modification time this should work.
183 reader.reset(CreateFileReader(test_path(), 0, base::Time()));
192 CreateFileReader(test_path(), 3, base::Time()));
    [all...]
  /external/chromium_org/ipc/
ipc_logging.cc 20 #include "base/time/time.h"
32 using base::Time;
139 // If the time has already been set (i.e. by ChannelProxy), keep that time
142 message->set_sent_time(Time::Now().ToInternalValue());
147 message.set_received_time(Time::Now().ToInternalValue());
249 (Time::FromInternalValue(data.receive) -
250 Time::FromInternalValue(data.sent)).InSecondsF();
252 (Time::FromInternalValue(data.dispatch)
    [all...]
  /external/chromium_org/media/
PRESUBMIT.py 21 # base::Time type (or base::Clock/DefaultClock), whether in using decls,
23 base_time_type_pattern = r'(^|\W)base::(Time|Clock|DefaultClock)(\W|$)'
25 # Regular expression that should detect references to the base::Time class
26 # members, such as a call to base::Time::Now.
27 base_time_member_pattern = r'(^|\W)(Time|Clock|DefaultClock)::'
29 # Regular expression to detect "using base::Time" declarations. We want to
33 # using base::Time;
35 # int64 foo_us = foo_s * Time::kMicrosecondsPerSecond;
36 using_base_time_decl_pattern = r'^\s*using\s+(::)?base::Time\s*;'
39 # base::Time class. We want to prevent these from triggerring a warning
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkInterpolator.cpp 40 <time (in msec)>
61 SkScalar SkInterpolatorBase::ComputeRelativeT(SkMSec time, SkMSec prevTime,
63 SkASSERT(time > prevTime && time < nextTime);
65 SkScalar t = SkScalarDiv((SkScalar)(time - prevTime),
71 SkInterpolatorBase::Result SkInterpolatorBase::timeToT(SkMSec time, SkScalar* T,
79 SkMSec offsetTime = time - startTime;
93 time = offsetTime + startTime;
96 int index = SkTSearch<SkMSec>(&fTimes[0].fTime, fFrameCount, time,
123 *T = ComputeRelativeT(time, prevT, nextT, nextTime[-1].fBlend)
    [all...]
  /external/skia/src/utils/
SkInterpolator.cpp 40 <time (in msec)>
61 SkScalar SkInterpolatorBase::ComputeRelativeT(SkMSec time, SkMSec prevTime,
63 SkASSERT(time > prevTime && time < nextTime);
65 SkScalar t = SkScalarDiv((SkScalar)(time - prevTime),
71 SkInterpolatorBase::Result SkInterpolatorBase::timeToT(SkMSec time, SkScalar* T,
79 SkMSec offsetTime = time - startTime;
93 time = offsetTime + startTime;
96 int index = SkTSearch<SkMSec>(&fTimes[0].fTime, fFrameCount, time,
123 *T = ComputeRelativeT(time, prevT, nextT, nextTime[-1].fBlend)
    [all...]
  /frameworks/base/core/java/android/os/
SystemClock.java 30 * is the standard "wall" clock (time and date) expressing milliseconds
32 * network (see {@link #setCurrentTimeMillis}), so the time may jump
36 * time measurements should use a different clock. If you are using
42 * broadcasts to find out when the time changes.
57 * return the time since the system was booted, and include deep sleep.
70 * clock; if the device enters sleep, the remainder of the time will be
82 * callbacks at an absolute or relative time. Handler objects also use the
86 * <li> <p> The {@link android.app.AlarmManager} can trigger one-time or
137 * Sets the current wall time, in milliseconds. Requires the calling
140 * @return if the clock was successfully set to the specified time
    [all...]
  /libcore/luni/src/main/java/java/sql/
Date.java 30 * Time points are handled as millisecond values - milliseconds since the Epoch,
31 * January 1st 1970, 00:00:00.000 GMT. Time values passed to the {@code
32 * java.sql.Date} class are "normalized" to the time 00:00:00.000 GMT on the
33 * date implied by the time value.
61 * milliseconds time value {@code theDate}.
64 * a time value in milliseconds since the epoch - January 1 1970
65 * 00:00:00 GMT. The time value (hours, minutes, seconds,
68 * time value.
157 * set based on the supplied time value and rounded to zero GMT for that day.
160 * the time in milliseconds since the Epoch
    [all...]
  /cts/tools/cts-reference-app-lib/src/android/cts/refapp/
ReferenceAppTestCase.java 30 /** The time to wait for the test host to finish taking the snapshot. */
32 /** The default time that the applicaiton has to start in. */
42 * @param maxStartupTimeMs the startup time the activity should start in.
60 // Test activity startup time.
81 // Give the host enough time to take the picture
  /developers/build/prebuilts/gradle/HdrViewfinder/Application/src/main/res/values/
strings.xml 30 <string name="auto_exposure_label">Auto exp. time:</string>
31 <string name="even_exposure_label">Even exp. time:</string>
32 <string name="odd_exposure_label">Odd exp. time:</string>
46 The left half of the viewfinder controls exposure time for
48 controls exposure time for odd-numbered frames
  /developers/samples/android/media/HdrViewfinder/Application/src/main/res/values/
strings.xml 30 <string name="auto_exposure_label">Auto exp. time:</string>
31 <string name="even_exposure_label">Even exp. time:</string>
32 <string name="odd_exposure_label">Odd exp. time:</string>
46 The left half of the viewfinder controls exposure time for
48 controls exposure time for odd-numbered frames
  /development/samples/browseable/HdrViewfinder/res/values/
strings.xml 30 <string name="auto_exposure_label">Auto exp. time:</string>
31 <string name="even_exposure_label">Even exp. time:</string>
32 <string name="odd_exposure_label">Odd exp. time:</string>
46 The left half of the viewfinder controls exposure time for
48 controls exposure time for odd-numbered frames

Completed in 5930 milliseconds

<<51525354555657585960>>