HomeSort by relevance Sort by last modified time
    Searched defs:time (Results 526 - 550 of 660) sorted by null

<<21222324252627

  /cts/tests/tests/media/src/android/media/cts/
DecoderTest.java 302 long time = ex.getSampleTime(); local
303 if (time >= 0 && time < lastPresentationTimeUsFromExtractor) {
306 lastPresentationTimeUsFromExtractor = time;
312 time = 0;
315 dec.queueInputBuffer(bufidx, 0, n, time, flags);
502 long time = ex.getSampleTime(); local
511 dec.queueInputBuffer(bufidx, 0, n, time, flags);
    [all...]
MediaRecorderTest.java 903 long time = startNsec + local
    [all...]
  /external/cldr/tools/c/genldml/
genldml.cpp 11 #include <time.h>
1440 UnicodeString time; local
    [all...]
  /external/compiler-rt/lib/msan/tests/
msan_test.cc 50 #include <sys/time.h>
316 // malloc() in the following test may be optimized to produce a compile-time
2096 struct tm time; local
2106 struct tm *time = localtime(&t); local
2117 struct tm time; local
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_platform_limits_posix.h 367 __sanitizer_time_t time; member in struct:__sanitizer::__sanitizer_timeb
    [all...]
  /external/guava/guava/src/com/google/common/collect/
MapMakerInternalMap.java 95 * rate, and ability to be implemented with O(1) time complexity. The initial LRU implementation
189 /** Measures time in a testable way. */
627 * - Expired: time expired (key/value may still be set)
658 * New entries are added at the tail of the list at write time; stale entries are expired from
663 * Gets the entry expiration time in ns.
668 * Sets the entry expiration time in ns.
670 void setExpirationTime(long time);
694 * doubly-linked list. New entries are added at the tail of the list at write time and stale
751 public void setExpirationTime(long time) {}
818 public void setExpirationTime(long time) {
1019 volatile long time = Long.MAX_VALUE; field in class:MapMakerInternalMap.StrongExpirableEntry
1101 volatile long time = Long.MAX_VALUE; field in class:MapMakerInternalMap.StrongExpirableEvictableEntry
1274 volatile long time = Long.MAX_VALUE; field in class:MapMakerInternalMap.SoftExpirableEntry
1358 volatile long time = Long.MAX_VALUE; field in class:MapMakerInternalMap.SoftExpirableEvictableEntry
1532 volatile long time = Long.MAX_VALUE; field in class:MapMakerInternalMap.WeakExpirableEntry
1616 volatile long time = Long.MAX_VALUE; field in class:MapMakerInternalMap.WeakExpirableEvictableEntry
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
SimpleDateFormat.java 61 * any user-defined patterns for date-time formatting. However, you
62 * are encouraged to create a date-time formatter with either
65 * of these class methods can return a date/time formatter initialized
71 * <p><strong>Date and Time Patterns:</strong></p>
73 * <p>Date and time formats are specified by <em>date and time pattern</em> strings.
74 * Within date and time pattern strings, all unquoted ASCII letters [A-Za-z] are reserved
76 * the date and time formatting algorithm and pattern letters defined by <a href="http://www.unicode.org/reports/tr35/">UTS#35
315 * that is, it depends on the local time zone. It can be thought of as a single number that encompasses
442 * <td>Fractional Second - truncates (like other time fields) to the count of letters when formatting. Appends zeros if more than 3 letters specified. T (…)
2689 long time = localMillis + offsets[0]; local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
IBMCalendarTest.java 164 // due to the JDK 1.4 incorporation of historical time zones.
290 Date time = cal.getTime(); local
309 logln(calLocName + "/" + locName + " --> " + format.format(time));
443 Date time = cal.getTime(); local
462 logln(calLocName + "/" + locName + " --> " + format.format(time));
566 * field <=> time mapping, since they affect the interpretation of
596 Date time1 = cal.getTime(); // Get time -- should not change
619 errln("FAIL: shifting week should not alter time");
798 log("\nError: Re-parse of '" + result + "' gave time of " +
1053 final Date time = new Date(); local
    [all...]
  /external/icu/icu4c/source/i18n/
smpdtfmt.cpp 89 * Last-resort string to use for "GMT" when constructing time zone strings.
91 // For time zones that have no names, use strings GMT+minutes and
92 // GMT-minutes. For instance, in France the time zone is GMT+60.
663 // Load date time patterns directly from resources.
714 // if the pattern should include both date and time information, use the date/time
716 // and time pattern strings.
772 // Get proper date time format
780 // if the pattern includes just time data or just date date, load the appropriate
963 // We use the time and time zone from the input calendar, bu
2497 UDate time = localMillis + raw; local
    [all...]
vtzone.cpp 189 * Convert date/time to RFC2445 Date-Time form #1 DATE WITH LOCAL TIME
191 static UnicodeString& getDateTimeString(UDate time, UnicodeString& str) {
193 Grego::timeToFields(time, year, month, dom, dow, doy, mid);
215 * Convert date/time to RFC2445 Date-Time form #2 DATE WITH UTC TIME
217 static UnicodeString& getUTCDateTimeString(UDate time, UnicodeString& str) {
218 getDateTimeString(time, str)
280 UDate time = Grego::fieldsToDay(year, month, day) * U_MILLIS_PER_DAY; local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
SimpleDateFormat.java 60 * any user-defined patterns for date-time formatting. However, you
61 * are encouraged to create a date-time formatter with either
64 * of these class methods can return a date/time formatter initialized
70 * <p><strong>Date and Time Patterns:</strong></p>
72 * <p>Date and time formats are specified by <em>date and time pattern</em> strings.
73 * Within date and time pattern strings, all unquoted ASCII letters [A-Za-z] are reserved
75 * the date and time formatting algorithm and pattern letters defined by <a href="http://www.unicode.org/reports/tr35/">UTS#35
314 * that is, it depends on the local time zone. It can be thought of as a single number that encompasses
441 * <td>Fractional Second - truncates (like other time fields) to the count of letters when formatting. Appends zeros if more than 3 letters specified. T (…)
2702 long time = localMillis + offsets[0]; local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
IBMCalendarTest.java 161 // due to the JDK 1.4 incorporation of historical time zones.
287 Date time = cal.getTime(); local
306 logln(calLocName + "/" + locName + " --> " + format.format(time));
440 Date time = cal.getTime(); local
459 logln(calLocName + "/" + locName + " --> " + format.format(time));
563 * field <=> time mapping, since they affect the interpretation of
593 Date time1 = cal.getTime(); // Get time -- should not change
616 errln("FAIL: shifting week should not alter time");
795 log("\nError: Re-parse of '" + result + "' gave time of " +
1050 final Date time = new Date(); local
    [all...]
  /external/jemalloc/src/
arena.c 1473 nstime_t time; local
    [all...]
  /external/kernel-headers/original/uapi/sound/
asequencer.h 65 #define SNDRV_SEQ_EVENT_QFRAME 22 /* midi time code quarter frame */
66 #define SNDRV_SEQ_EVENT_TIMESIGN 23 /* SMF Time Signature event */
72 #define SNDRV_SEQ_EVENT_START 30 /* midi Real Time Start message */
73 #define SNDRV_SEQ_EVENT_CONTINUE 31 /* midi Real Time Continue message */
74 #define SNDRV_SEQ_EVENT_STOP 32 /* midi Real Time Stop message */
78 #define SNDRV_SEQ_EVENT_CLOCK 36 /* midi Real Time Clock message */
79 #define SNDRV_SEQ_EVENT_TICK 37 /* midi Real Time Tick message */
177 #define SNDRV_SEQ_TIME_STAMP_REAL (1<<0) /* timestamp in real time */
181 #define SNDRV_SEQ_TIME_MODE_REL (1<<1) /* relative to current time */
242 struct snd_seq_real_time time; member in union:snd_seq_timestamp
256 union snd_seq_timestamp time; \/* time *\/ member in union:snd_seq_ev_queue_control::__anon26328
279 union snd_seq_timestamp time; \/* schedule time *\/ member in struct:snd_seq_event
292 union snd_seq_timestamp time; member in union:snd_seq_event::__anon26329
395 union snd_seq_timestamp time; member in struct:snd_seq_remove_events
495 struct snd_seq_real_time time; \/* current time *\/ member in struct:snd_seq_queue_status
    [all...]
  /external/libaom/libaom/third_party/googletest/src/googletest/include/gtest/internal/
gtest-port.h 477 // Sun Pro CC supports exceptions. However, there is no compile-time way of
551 // -frtti -fno-exceptions, the build fails at link time with undefined
613 # include <time.h> // NOLINT
644 // implementation of it already. At this time, libstdc++ 4.0.0+ and
1462 const timespec time = { local
    [all...]
  /external/libdrm/intel/
intel_bufmgr_gem.c 126 time_t time; member in struct:_drm_intel_bufmgr_gem
302 time_t time);
943 * on all hardware so refuse it for time being.
1042 * kernel mm tracking alive for our lifetime. The first time we
1414 struct timespec time; local
2130 struct timespec time; local
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-port.h 516 // Sun Pro CC supports exceptions. However, there is no compile-time way of
586 // -frtti -fno-exceptions, the build fails at link time with undefined
649 # include <time.h> // NOLINT
692 // implementation of it already. At this time, libstdc++ 4.0.0+ and
1582 const timespec time = { local
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-port.h 477 // Sun Pro CC supports exceptions. However, there is no compile-time way of
551 // -frtti -fno-exceptions, the build fails at link time with undefined
613 # include <time.h> // NOLINT
644 // implementation of it already. At this time, libstdc++ 4.0.0+ and
1449 const timespec time = { local
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 479 // Sun Pro CC supports exceptions. However, there is no compile-time way of
554 // -frtti -fno-exceptions, the build fails at link time with undefined
616 # include <time.h> // NOLINT
647 // implementation of it already. At this time, libstdc++ 4.0.0+ and
1458 const timespec time = { local
    [all...]
  /external/u-boot/doc/
README.x86 247 time of writing) in the board directory and rename it to fsp.bin. label
270 the time of writing). Put it in the corresponding board directory and rename
273 Obtain the VGA RAM (Vga.dat at the time of writing) and put it into the same
277 from the sample SPI image provided in the FSP (SPI.bin at the time of writing).
364 Register(s) > Register1 Value(Hex). This is is a one-time change. Once set, it
475 these informtion from fw_cfg interface, which saves the time of loading them
551 keyboard, real-time clock, USB. Video is in progress.
557 more and more devices will be added as time goes by. Check out the directory
696 but normally this is not needed. The '-58' is used by Ubuntu. Each time they
764 Accumulated time
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java 47 import android.text.format.Time;
440 * @param startWhen Starting date/time in RFC 3339 format
454 Time time = new Time(timeZone); local
455 time.parse3339(startWhen);
456 values.put(Events.DTSTART, time.toMillis(false));
469 * @param instanceStartMillis The start time of the instance
2050 Time time = new Time(TIME_ZONES[timeZoneIndex]); local
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
StagefrightTest.java 1448 long time = ex.getSampleTime(); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
datetimemodule.c 1 /* C implementation for the date/time type documented at
11 #include <time.h>
59 /* Date/Time accessors for datetime. */
68 /* Time accessors for time. */
90 /* p is a pointer to a time or a datetime object; HASTZINFO(p) returns
400 /* Check that time arguments are in range. Return 0 if they are. If they
592 * tp_basicsize for the time and datetime types is set to the size of the
697 /* Create a time instance with no range checking. */
967 /* type isn't date, datetime, or time subclass */
1346 PyObject *time = PyImport_ImportModuleNoBlock("time"); local
1400 PyObject *time = PyImport_ImportModuleNoBlock("time"); local
1415 PyObject *time; local
2344 PyObject *time; local
4003 PyObject *time; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
datetimemodule.c 1 /* C implementation for the date/time type documented at
11 #include <time.h>
59 /* Date/Time accessors for datetime. */
68 /* Time accessors for time. */
90 /* p is a pointer to a time or a datetime object; HASTZINFO(p) returns
400 /* Check that time arguments are in range. Return 0 if they are. If they
592 * tp_basicsize for the time and datetime types is set to the size of the
697 /* Create a time instance with no range checking. */
967 /* type isn't date, datetime, or time subclass */
1346 PyObject *time = PyImport_ImportModuleNoBlock("time"); local
1400 PyObject *time = PyImport_ImportModuleNoBlock("time"); local
1415 PyObject *time; local
2344 PyObject *time; local
4003 PyObject *time; local
    [all...]
  /external/boringssl/src/ssl/
ssl_lib.cc 161 #include <sys/time.h>
434 struct _timeb time; local
435 _ftime(&time);
436 if (time.time < 0) {
441 out_clock->tv_sec = time.time;
442 out_clock->tv_usec = time.millitm * 1000;
    [all...]

Completed in 982 milliseconds

<<21222324252627