HomeSort by relevance Sort by last modified time
    Searched full:time (Results 1 - 25 of 34351) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/include/nonunix/sys/
time.h 1 #include <time.h>
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1GeneralizedTime.java 13 public ASN1GeneralizedTime(Date time)
15 super(time);
18 public ASN1GeneralizedTime(String time)
20 super(time);
ASN1UTCTime.java 13 public ASN1UTCTime(Date time)
15 super(time);
18 public ASN1UTCTime(String time)
20 super(time);
  /frameworks/native/opengl/tools/glgen/specs/egl/
EGLExt.spec 1 EGLBoolean eglPresentationTimeANDROID ( EGLDisplay dpy, EGLSurface sur, EGLnsecsANDROID time )
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
TimeDialog.java 9 import android.text.format.Time;
17 private Time mMinTime;
18 private Time mMaxTime;
22 Time time = getBoundedTime(hour, minute, min, max); local
23 return new TimeDialog(context, callBack, time.hour, time.minute,
42 Time time = getBoundedTime(hourOfDay, minute, local
44 super.onTimeChanged(view, time.hour, time.minute)
50 Time time = getTimeForHourAndMinute(hour, minute); local
60 Time time = new Time("GMT"); local
66 Time time = new Time("GMT"); local
    [all...]
  /external/e2fsprogs/contrib/python-uuid/
test.py 3 import time namespace
7 time = time.time() variable
11 print u, "...", time
  /external/llvm/test/CodeGen/ARM/
2009-05-05-DAGCombineBug.ll 5 %tango.time.Time.Time = type { i64 }
9 %tmp28 = call fastcc i1 null(i32* null, %"byte[]" undef, %"byte[]" undef, %tango.time.Time.Time* byval null) ; <i1> [#uses=0]
  /external/chromium/base/i18n/
time_formatting.h 5 // Basic time formatting methods. These methods use the current locale
6 // formatting for displaying the time.
16 class Time;
24 // Returns the time of day, e.g., "3:07 PM".
25 string16 TimeFormatTimeOfDay(const Time& time);
27 // Returns the time of day in the specified hour clock type. e.g.
30 string16 TimeFormatTimeOfDayWithHourClockType(const Time& time,
34 string16 TimeFormatShortDate(const Time& time)
    [all...]
  /dalvik/tests/082-inline-execute/
expected.txt 4 Now is the time[0] = "N"
5 Now is the time[1] = "o"
6 Now is the time[10] = " "
7 Now is the time[last] = "e"
  /external/chromium_org/chrome/browser/google_apis/
time_util.h 13 class Time;
19 // Parses an RFC 3339 date/time into a base::Time, returning true on success.
20 // The time string must be in the format "yyyy-mm-ddThh:mm:ss.dddTZ" (TZ is
22 bool GetTimeFromString(const base::StringPiece& raw_value, base::Time* time);
24 // Formats a base::Time as an RFC 3339 date/time (in UTC).
25 // If |time| is null, returns "null".
26 std::string FormatTimeAsString(const base::Time& time)
    [all...]
time_util_unittest.cc 9 #include "base/time/time.h"
16 std::string FormatTime(const base::Time& time) {
17 return base::UTF16ToUTF8(base::TimeFormatShortDateAndTime(time));
23 // Creates local time objects from exploded structure.
24 base::Time::Exploded exploded = {2013, 1, 0, 15, 17, 11, 35, 374};
25 base::Time local_time = base::Time::FromLocalExploded(exploded);
27 // Creates local time object, parsing time string. Note that if there i
81 base::Time time = base::Time::FromUTCExploded(exploded_time); local
89 base::Time time = base::Time::FromLocalExploded(exploded_time); local
    [all...]
  /external/kernel-headers/original/asm-arm/
dyntick.h 4 #include <asm/mach/time.h>
  /external/valgrind/main/none/tests/
timestamp.vgtest 2 vgopts: --time-stamp=yes
  /external/qemu/android/utils/
timezone.c 418 #include <time.h>
427 { "AUS Central Standard Time" , "Australia/Darwin" },
428 { "AUS Eastern Standard Time" , "Australia/Sydney" },
429 { "Acre Standard Time" , "America/Rio_Branco" },
430 { "Afghanistan Standard Time" , "Asia/Kabul" },
431 { "Africa_Central Standard Time" , "Africa/Kigali" },
432 { "Africa_Eastern Standard Time" , "Africa/Kampala" },
433 { "Africa_FarWestern Standard Time" , "Africa/El_Aaiun" },
434 { "Africa_Southern Standard Time" , "Africa/Johannesburg" },
435 { "Africa_Western Standard Time" , "Africa/Niamey" }
    [all...]
  /external/chromium_org/chrome/browser/history/android/
android_time.h 8 #include "base/time/time.h"
12 // Android's system time is the milliseconds since January 1, 1970 00:00:00 UTC,
13 // the below 2 methods are used convert between base::Time and the milliseconds
15 inline base::Time FromDatabaseTime(int64 milliseconds) {
17 base::Time::UnixEpoch();
20 inline int64 ToDatabaseTime(const base::Time& time) {
21 return (time - base::Time::UnixEpoch()).InMilliseconds()
    [all...]
  /external/chromium_org/chrome/browser/translate/
translate_error_details.h 8 #include "base/time/time.h"
13 // The time when this was created
14 base::Time time; member in struct:TranslateErrorDetails
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
Time.java 15 public class Time
19 ASN1Primitive time; field in class:Time
21 public static Time getInstance(
28 public Time(
29 ASN1Primitive time)
31 if (!(time instanceof DERUTCTime)
32 && !(time instanceof DERGeneralizedTime))
34 throw new IllegalArgumentException("unknown object passed to Time");
37 this.time = time;
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
Time.java 15 public class Time
19 ASN1Primitive time; field in class:Time
21 public static Time getInstance(
28 public Time(
29 ASN1Primitive time)
31 if (!(time instanceof DERUTCTime)
32 && !(time instanceof DERGeneralizedTime))
34 throw new IllegalArgumentException("unknown object passed to Time");
37 this.time = time;
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
perf_common.h 38 #include <time.h>
40 /* time and process ID routines */
43 #define TIME_GET(target) time(&target)
45 #define TIME_MICROSECONDS(time) 0
46 #define TIME_SECONDS(time) (time)
47 #define TIME_INCREASE(time, microsecs) time += microsecs / 1000000
48 #define TIME_SET(time, sec, microsec) time = se
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
TimeTest.java 3 import android.text.format.Time;
17 Time t = new Time();
24 Time t = new Time();
30 Time t = new Time();
32 Time t2 = new Time(t);
44 Time t = new Time()
197 Time time = new Time(); local
221 Time time = new Time(); local
    [all...]
  /external/chromium_org/base/test/
simple_test_clock.h 10 #include "base/time/clock.h"
11 #include "base/time/time.h"
16 // the returned Time objects. All methods may be called from any
20 // Starts off with a clock set to Time().
24 virtual Time Now() OVERRIDE;
29 // Sets the clock to the given time.
30 void SetNow(Time now);
36 Time now_;
  /external/chromium_org/sync/util/
time.h 5 // Time-related sync functions.
13 #include "base/time/time.h"
18 // Converts a time object to the format used in sync protobufs (ms
20 SYNC_EXPORT int64 TimeToProtoTime(const base::Time& t);
22 // Converts a time field from sync protobufs to a time object.
23 SYNC_EXPORT_PRIVATE base::Time ProtoTimeToTime(int64 proto_t);
25 SYNC_EXPORT std::string GetTimeDebugString(const base::Time& t);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_time.py 2 import time namespace
10 self.t = time.time()
13 time.altzone
14 time.daylight
15 time.timezone
16 time.tzname
19 time.clock()
22 self.assertTrue(time.ctime(self.t)
23 == time.asctime(time.localtime(self.t))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_time.py 2 import time namespace
10 self.t = time.time()
13 time.altzone
14 time.daylight
15 time.timezone
16 time.tzname
19 time.clock()
22 self.assertTrue(time.ctime(self.t)
23 == time.asctime(time.localtime(self.t))
    [all...]
  /external/chromium_org/cc/animation/
scrollbar_animation_controller_linear_fade_unittest.cc 48 base::TimeTicks time; local
49 time += base::TimeDelta::FromSeconds(1);
55 time += base::TimeDelta::FromSeconds(100);
56 scrollbar_controller_->Animate(time);
58 scrollbar_controller_->DidScrollGestureEnd(time);
62 EXPECT_EQ(2, scrollbar_controller_->DelayBeforeStart(time).InSeconds());
64 time += base::TimeDelta::FromSeconds(1);
65 scrollbar_controller_->Animate(time);
68 time += base::TimeDelta::FromSeconds(1);
69 scrollbar_controller_->Animate(time);
107 base::TimeTicks time; local
    [all...]

Completed in 978 milliseconds

1 2 3 4 5 6 7 8 91011>>