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

<<11121314151617181920>>

  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_ctime.h 28 # include <time.h>
49 using _STLP_VENDOR_CSTD::time;
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_ctime.h 28 # include <time.h>
49 using _STLP_VENDOR_CSTD::time;
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_ctime.h 28 # include <time.h>
49 using _STLP_VENDOR_CSTD::time;
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_ctime.h 28 # include <time.h>
49 using _STLP_VENDOR_CSTD::time;
  /sdk/emulator/qtools/
read_method.cpp 13 uint64_t time; member in struct:frame
18 frame(uint64_t time, uint32_t addr, const char *name, bool isNative) {
19 this->time = time;
64 native, ii, pframe->time, pframe->addr,
107 method_record.time, proc->pid, method_record.addr,
111 method_record.time, proc->pid, method_record.addr,
126 pframe = new frame(method_record.time, method_record.addr,
check_stack.cpp 20 void compareStacks(uint64_t time, int pid);
32 uint64_t time; member in struct:frame
37 frame(uint64_t time, uint32_t addr, const char *name, bool isNative) {
38 this->time = time;
132 pframe = new frame(method_record.time, method_record.addr,
155 if (debugTime != 0 && event.time >= debugTime)
156 printf("time: %llu debug time: %lld\n", event.time, debugTime)
    [all...]
  /system/extras/tests/bionic/libc/common/
test_strftime_2039.c 4 #include <time.h>
11 time_t now = time(NULL);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
GestureStroke.java 74 // Time based threshold values
236 public void duplicateLastPointWith(final int time) {
243 x, y, time));
246 appendPoint(x, y, time);
247 updateIncrementalRecognitionSize(x, y, time);
262 private void appendPoint(final int x, final int y, final int time) {
265 // time than the next {@link MotionEvent}. To maintain the monotonicity of the event time,
267 if (lastIndex >= 0 && mEventTimes.get(lastIndex) > time) {
269 x, y, time, mXCoordinates.get(lastIndex), mYCoordinates.get(lastIndex)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
TimeRanges.cpp 177 bool TimeRanges::contain(double time) const
180 if (time >= start(n, IGNORE_EXCEPTION) && time <= end(n, IGNORE_EXCEPTION))
186 double TimeRanges::nearest(double time) const
193 if (time >= startTime && time <= endTime)
194 return time;
195 if (fabs(startTime - time) < closest)
196 closest = fabsf(startTime - time);
197 else if (fabs(endTime - time) < closest
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
TrackFragmentRandomAccessBox.java 41 * unsigned int(64) time;
44 * unsigned int(32) time;
99 entry.time = IsoTypeReader.readUInt64(content);
102 entry.time = IsoTypeReader.readUInt32(content);
129 IsoTypeWriter.writeUInt64(byteBuffer, entry.time);
132 IsoTypeWriter.writeUInt32(byteBuffer, entry.time);
192 private long time; field in class:TrackFragmentRandomAccessBox.Entry
201 public Entry(long time, long moofOffset, long trafNumber, long trunNumber, long sampleNumber) {
204 this.time = time;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioParamTimeline.cpp 41 void AudioParamTimeline::setValueAtTime(float value, double time)
43 insertEvent(ParamEvent(ParamEvent::SetValue, value, time, 0, 0, 0));
46 void AudioParamTimeline::linearRampToValueAtTime(float value, double time)
48 insertEvent(ParamEvent(ParamEvent::LinearRampToValue, value, time, 0, 0, 0));
51 void AudioParamTimeline::exponentialRampToValueAtTime(float value, double time)
53 insertEvent(ParamEvent(ParamEvent::ExponentialRampToValue, value, time, 0, 0, 0));
56 void AudioParamTimeline::setTargetAtTime(float target, double time, double timeConstant)
58 insertEvent(ParamEvent(ParamEvent::SetTarget, target, time, timeConstant, 0, 0));
61 void AudioParamTimeline::setValueCurveAtTime(Float32Array* curve, double time, double duration)
63 insertEvent(ParamEvent(ParamEvent::SetValueCurve, 0, time, 0, duration, curve))
    [all...]
  /external/chromium_org/v8/src/
dateparser-inl.h 44 TimeComposer time; local
48 // Accept ES5 ISO 8601 date-time-strings or legacy dates compatible
66 // (following Safari, ISO actually demands local time).
74 // An unsigned number followed by ':' is a time value, and is
76 // zero as well. A number followed by '.' is also a time and must be
81 // A word recognizable as a time-zone is recorded as such, as is
88 // parsed as an ES5 date-time string - which means it will default
89 // to UTC time-zone. That's unavoidable if following the ES5
95 // First try getting as far as possible with as ES5 Date Time String.
96 DateToken next_unhandled_token = ParseES5DateTime(&scanner, &day, &time, &tz)
    [all...]
  /external/v8/src/
dateparser-inl.h 44 TimeComposer time; local
48 // Accept ES5 ISO 8601 date-time-strings or legacy dates compatible
73 // An unsigned number followed by ':' is a time value, and is
75 // zero as well. A number followed by '.' is also a time and must be
80 // A word recognizable as a time-zone is recorded as such, as is
87 // parsed as an ES5 date-time string - which means it will default
88 // to UTC time-zone. That's unavoidable if following the ES5
94 // First try getting as far as possible with as ES5 Date Time String.
95 DateToken next_unhandled_token = ParseES5DateTime(&scanner, &day, &time, &tz);
108 if (!time.IsEmpty()) return false
    [all...]
  /bionic/libc/bionic/
sleep.c 28 #include <time.h>
usleep.c 28 #include <time.h>
  /bionic/tests/
time_test.cpp 21 #include <time.h>
25 TEST(time, mktime_tz) {
46 TEST(time, gmtime) {
59 TEST(time, mktime_10310929) {
  /external/chromium/chrome/browser/extensions/
convert_web_app.h 16 class Time;
21 // Generates a version number for an extension from a time. The goal is to make
23 // while maintaining high enough resolution to change each time an app is
30 std::string ConvertTimeToExtensionVersion(const base::Time& time);
41 const base::Time& create_time);
  /external/chromium/chrome/common/
time_format.h 9 // This file defines methods to format time values as strings.
16 class Time;
23 // These functions return a localized string of approximate time duration. The
36 // For displaying a relative time in the past. This method returns either
45 // computations: Time::Now().LocalMidnight()
48 // time once at the beginning and pass it for each computation.
49 static string16 RelativeDate(const base::Time& time,
50 const base::Time* optional_midnight_today);
  /external/chromium/third_party/libevent/sample/
time-test.c 3 * cc -I/usr/local/include -o time-test time-test.c -L/usr/local/lib -levent
17 #include <time.h>
19 #include <sys/time.h>
37 int newtime = time(NULL);
64 lasttime = time(NULL);
  /external/chromium_org/base/
os_compat_nacl.cc 8 #include <time.h>
  /external/chromium_org/chrome/browser/extensions/
convert_web_app.h 14 class Time;
22 // Generates a version number for an extension from a time. The goal is to make
24 // while maintaining high enough resolution to change each time an app is
31 std::string ConvertTimeToExtensionVersion(const base::Time& time);
42 const base::Time& create_time,
  /external/chromium_org/chrome/browser/translate/
translate_event_details.h 10 #include "base/time/time.h"
17 // The time when this event was created.
18 base::Time time; member in struct:TranslateEventDetails
  /external/chromium_org/chrome/browser/ui/app_list/search/common/
webservice_cache.h 14 #include "base/time/time.h"
67 Payload(const base::Time& time,
69 : time(time), result(result) {}
72 base::Time time; member in struct:app_list::WebserviceCache::Payload
  /external/chromium_org/chrome/common/translate/
language_detection_details.h 11 #include "base/time/time.h"
18 // The time when this was created.
19 base::Time time; member in struct:LanguageDetectionDetails
  /external/chromium_org/content/test/
web_gesture_curve_mock.h 22 virtual bool apply(double time,

Completed in 2662 milliseconds

<<11121314151617181920>>