/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/net/ |
ppp_defs.h | 5 #include <time.h>
|
/dalvik/dx/tests/089-dex-define-object/ |
Object.java | 45 public final void wait(long time) { 46 wait(time, 0); 49 public final native void wait(long time, int frac);
|
/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...] |
/external/chromium_org/third_party/WebKit/Source/core/platform/ |
FileSystem.h | 33 #include <time.h> 49 inline bool isValidFileTime(double time) { return std::isfinite(time); }
|
/external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/ |
WebTransformKeyframe.cpp | 30 WebTransformKeyframe::WebTransformKeyframe(double time, WebTransformOperations* value) 31 : m_time(time) 41 double WebTransformKeyframe::time() const function in class:WebKit::WebTransformKeyframe
|
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/ |
AudioParam.idl | 43 void setValueAtTime(float value, double time); 44 void linearRampToValueAtTime(float value, double time); 45 void exponentialRampToValueAtTime(float value, double time); 47 // Exponentially approach the target with a rate having the given time constant. 48 void setTargetAtTime(float target, double time, double timeConstant); 50 // Sets an array of arbitrary parameter values starting at time for the given duration. 52 void setValueCurveAtTime(Float32Array values, double time, double duration); 57 [MeasureAs=LegacyWebAudio, ImplementedAs=setTargetAtTime] void setTargetValueAtTime(float targetValue, double time, double timeConstant);
|
/external/skia/bench/ |
BenchSysTimer_c.cpp | 10 //Time 11 #include <time.h> 14 this->fStartWall = time(); 25 time_t end_wall = time();
|
/packages/apps/VideoEditor/src/com/android/videoeditor/util/ |
StringUtils.java | 105 * Get a readable string displaying the time
107 * @param context The context (needed only for relative time)
108 * @param time The time
110 * @return The time string
112 public static String getTimestampAsString(Context context, long time) {
113 final long hours = time / 3600000;
114 time %= 3600000;
115 final long mins = time / 60000;
116 time %= 60000; [all...] |
/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...] |
/external/dropbear/libtommath/etc/ |
timer.asm | 6 time dd 0, 0
define 20 mov [time+0],edx
21 mov [time+4],eax
34 sub eax,[time+4]
35 sbb edx,[time+0]
|
/external/chromium/base/i18n/ |
time_formatting.cc | 10 #include "base/time.h" 15 using base::Time; 20 const Time& time) { 24 formatter->format(static_cast<UDate>(time.ToDoubleT() * 1000), date_string); 33 string16 TimeFormatTimeOfDay(const Time& time) { 38 return TimeFormat(formatter.get(), time); 41 string16 TimeFormatTimeOfDayWithHourClockType(const Time& time, [all...] |
/external/chromium_org/third_party/WebKit/Source/core/page/ |
ResourceTimingInfo.h | 42 static PassRefPtr<ResourceTimingInfo> create(const AtomicString& type, const double time) 44 return adoptRef(new ResourceTimingInfo(type, time)); 52 void setLoadFinishTime(double time) { m_loadFinishTime = time; } 65 ResourceTimingInfo(const AtomicString& type, const double time) 67 , m_initialTime(time)
|
/external/proguard/src/proguard/gui/splash/ |
ColorSprite.java | 51 public void paint(Graphics graphics, long time) 57 graphics.setColor(color.getColor(time)); 60 sprite.paint(graphics, time);
|
FontSprite.java | 51 public void paint(Graphics graphics, long time) 57 graphics.setFont(font.getFont(time)); 60 sprite.paint(graphics, time);
|
ConstantDouble.java | 24 * This VariableDouble is constant over time. 45 public double getDouble(long time)
|
ConstantInt.java | 24 * This VariableInt is constant over time. 45 public int getInt(long time)
|
ConstantTiming.java | 24 * This Timing is constant over time. 53 public double getTiming(long time)
|
TimeSwitchSprite.java | 26 * This Sprite displays another Sprite in a given time interval. 27 * The time of the encapsulated Sprite is shifted by the start time. 40 * a given time. 41 * @param onTime the start time. 52 * time interval. 53 * @param onTime the start time. 54 * @param offTime the stop time. 67 public void paint(Graphics graphics, long time) 69 if (time >= onTime && (offTime <= 0 || time <= offTime) [all...] |
/sdk/emulator/qtools/ |
read_addr.cpp | 17 uint64_t time; local 21 if (trace->ReadAddr(&time, &addr, &flags)) 26 printf("%lld 0x%08x %s\n", time, addr, op);
|
/external/chromium/chrome/browser/history/ |
history_publisher.cc | 15 const base::Time& time) const { 17 time, 28 void HistoryPublisher::PublishPageContent(const base::Time& time, 33 time,
|
/external/chromium_org/chrome/browser/history/ |
history_publisher.cc | 15 const base::Time& time) const { 17 time, 28 void HistoryPublisher::PublishPageContent(const base::Time& time, 33 time,
|
/external/chromium_org/chrome/browser/performance_monitor/ |
performance_monitor_util.cc | 11 #include "base/time/time.h" 30 const base::Time& time, 39 event.time = static_cast<double>(time.ToInternalValue()); 48 type, time, value.Pass())); 51 scoped_ptr<Event> CreateRendererFailureEvent(const base::Time& time, 56 event.time = static_cast<double>(time.ToInternalValue()) [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/chromium_org/third_party/WebKit/Source/core/platform/audio/ |
AudioUtilities.h | 36 // timeConstant is the time it takes a first-order linear time-invariant system 38 // discreteTimeConstantForSampleRate() will return the discrete time-constant for the specific sampleRate. 41 // Convert the time to a sample frame at the given sample rate. 42 size_t timeToSampleFrame(double time, double sampleRate);
|