Searched refs:time (Results 226 - 250 of 3443) sorted by relevance

1234567891011>>

/external/deqp/framework/delibs/deutil/
H A DdeClock.c26 #include <time.h>
32 # include <time.h>
34 # include <sys/time.h>
73 return (deUint64)time(DE_NULL);
/external/fio/
H A Dfio.c26 #include <time.h>
/external/libcxx/test/localization/locales/locale/locale.types/locale.category/
H A Dcategory.pass.cpp35 assert(std::locale::time);
41 & std::locale::time
47 | std::locale::time
56 test(std::locale::time);
/external/lldb/test/functionalities/backticks/
H A DTestBackticksWithoutATarget.py5 import os, time namespace
/external/netperf/
H A Dnetcpu_sysctl.c20 # include <sys/time.h>
21 # include <time.h>
24 # include <sys/time.h>
26 # include <time.h>
85 fprintf (stderr, "Cannot get CPU time!\n");
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_wavefile.h48 EAS_U32 time; member in struct:s_wave_state_tag
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_wavefile.h48 EAS_U32 time; member in struct:s_wave_state_tag
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_wavefile.h48 EAS_U32 time; member in struct:s_wave_state_tag
/external/tinycompress/
H A Dutils.c57 #include <sys/time.h>
/external/webrtc/src/system_wrappers/source/
H A Dsleep.cc19 #include <time.h>
/external/chromium_org/content/browser/speech/endpointer/
H A Dendpointer_unittest.cc24 virtual EpStatus ProcessFrame(int64 time, int16* samples, int frame_size) = 0;
37 int64 time = 0; local
53 EpStatus ep_status = processor->ProcessFrame(time, samples, kFrameSize);
54 time += static_cast<int64>(kFrameSize * (1e6 / kSampleRate));
76 virtual EpStatus ProcessFrame(int64 time,
79 endpointer_->ProcessAudioFrame(time, samples, kFrameSize, NULL);
121 virtual EpStatus ProcessFrame(int64 time,
/external/chromium_org/v8/tools/profviz/
H A Dworker.js60 function time(name, fun) { function
69 time("Loading scripts",
92 time("Reading log file (" + (file.size / 1024).toFixed(1) + " kB)",
98 time("Producing statistical profile",
133 time("Collecting events (" + content_lines.length + " entries)",
143 time("Assembling plot script",
158 time("Running gnuplot (" + objects + " objects)",
/external/chromium_org/v8/tools/testrunner/local/
H A Dcommands.py34 import time namespace
85 # Compute the end time - if the process crosses this limit we
88 else: end_time = time.time() + timeout
95 if (not end_time is None) and (time.time() >= end_time):
102 time.sleep(sleep_time)
126 time.sleep(retry_count * 0.1)
/external/chromium_org/cc/input/
H A Dpage_scale_animation.h10 #include "base/time/time.h"
21 // positions and an animation length time, then call ...AtTime() at every frame
56 // the start time. StartAnimation should only be called once after creation.
58 void StartAnimation(base::TimeTicks time);
62 gfx::Vector2dF ScrollOffsetAtTime(base::TimeTicks time) const;
63 float PageScaleFactorAtTime(base::TimeTicks time) const;
64 bool IsAnimationCompleteAtTime(base::TimeTicks time) const;
88 float InterpAtTime(base::TimeTicks time) const;
/external/chromium_org/ppapi/native_client/tools/browser_tester/browsertester/
H A Dserver.py14 import time namespace
108 old_value_as_t = time.strptime(value, last_mod_format)
109 old_value_in_secs = time.mktime(old_value_as_t)
111 value = time.strftime(last_mod_format,
112 time.localtime(new_value_in_secs))
221 start_time = time.time()
227 cur_elapsed = time.time() - start_time
230 time
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DSimpleCollisionComponent.java75 float time = timeSystem.getGameTime();
77 parentObject.setLastTouchedLeftWallTime(time);
79 parentObject.setLastTouchedRightWallTime(time);
83 parentObject.setLastTouchedFloorTime(time);
85 parentObject.setLastTouchedCeilingTime(time);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DTimeTest.java197 Time time = new Time();
199 time.set(0, 0, 0, 12, 5, 2008);
200 time.timezone = "Australia/Sydney";
201 long millis = time.normalize(true);
204 int julianDay = Time.getJulianDay(millis, time.gmtoff);
206 // Change the time during the day and check that we get the same
210 time.set(0, minute, hour, 12, 5, 2008);
211 millis = time.normalize(true);
212 int day = Time.getJulianDay(millis, time.gmtoff);
221 Time time
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DNetworkManager.js264 * @param {!NetworkAgent.Timestamp} time
268 requestWillBeSent: function(requestId, frameId, loaderId, documentURL, request, time, initiator, redirectResponse)
275 this.responseReceived(requestId, frameId, loaderId, time, PageAgent.ResourceType.Other, redirectResponse);
276 networkRequest = this._appendRedirect(requestId, time, request.url);
281 networkRequest.startTime = time;
302 * @param {!NetworkAgent.Timestamp} time
306 responseReceived: function(requestId, frameId, loaderId, time, resourceType, response)
321 networkRequest.responseReceivedTime = time;
331 * @param {!NetworkAgent.Timestamp} time
335 dataReceived: function(requestId, time, dataLengt
[all...]
/external/chromium_org/content/renderer/input/
H A Dinput_handler_proxy_unittest.cc37 double InSecondsF(const base::TimeTicks& time) { argument
38 return (time - base::TimeTicks()).InSecondsF();
136 virtual bool apply(double time, blink::WebGestureCurveTarget* target) { argument
137 blink::WebFloatSize displacement(velocity_.width * time,
138 velocity_.height * time);
584 // The first animate call should let us pick up an animation start time, but
592 base::TimeTicks time = base::TimeTicks() + base::TimeDelta::FromSeconds(10); local
593 input_handler_->Animate(time);
606 time += base::TimeDelta::FromMilliseconds(100);
607 input_handler_->Animate(time);
695 base::TimeTicks time = base::TimeTicks() + base::TimeDelta::FromSeconds(10); local
970 base::TimeTicks time = base::TimeTicks() + base::TimeDelta::FromSeconds(10); local
1008 base::TimeTicks time = base::TimeTicks() + dt; local
1086 base::TimeTicks time = local
1154 base::TimeTicks time = base::TimeTicks() + base::TimeDelta::FromSeconds(10); local
1199 base::TimeTicks time = base::TimeTicks() + base::TimeDelta::FromSeconds(10); local
1265 base::TimeTicks time = base::TimeTicks() + dt; local
1351 base::TimeTicks time = base::TimeTicks() + base::TimeDelta::FromSeconds(10); local
1514 base::TimeTicks time = base::TimeTicks() + base::TimeDelta::FromSeconds(10); local
1542 base::TimeTicks time = base::TimeTicks() + dt; local
1591 base::TimeTicks time = base::TimeTicks() + dt; local
1726 base::TimeTicks time = base::TimeTicks() + dt; local
1756 base::TimeTicks time = base::TimeTicks() + dt; local
1793 base::TimeTicks time = base::TimeTicks() + dt; local
1835 base::TimeTicks time = base::TimeTicks() + dt; local
1880 base::TimeTicks time = base::TimeTicks() + dt; local
1920 base::TimeTicks time = base::TimeTicks() + dt; local
[all...]
/external/sonivox/jet_tools/JetCreator/
H A DJetCtrls.py405 self.time = (wx.TextCtrl(parent, -1, str(value[0]), pos=(p1, top), size=(w1, -1), style=wx.TE_NOHIDESEL),
409 h = self.time[2].GetSize().height
410 w = self.time[2].GetSize().width + self.time[2].GetPosition().x + 8
419 self.time[0].Bind(wx.EVT_SET_FOCUS, self.OnFocusMeasure, self.time[0] )
420 self.time[1].Bind(wx.EVT_SET_FOCUS, self.OnFocusBeat, self.time[1] )
421 self.time[2].Bind(wx.EVT_SET_FOCUS, self.OnFocusTick, self.time[
[all...]
/external/chromium_org/cc/animation/
H A Dkeyframed_animation_curve.h24 Keyframe(double time, scoped_ptr<TimingFunction> timing_function);
37 double time,
47 ColorKeyframe(double time,
57 double time,
67 FloatKeyframe(double time,
77 double time,
88 double time,
98 double time,
109 double time,
118 // It is required that the keyframes be sorted by time
[all...]
/external/chromium_org/net/ftp/
H A Dftp_util_unittest.cc12 #include "base/time/time.h"
171 base::Time time; local
174 UTF8ToUTF16(kTestCases[i].rest), mock_current_time, &time));
177 time.LocalExplode(&time_exploded);
192 const char* time; member in struct:__anon9240::__anon9245
209 kTestCases[i].date, kTestCases[i].time));
211 base::Time time; local
214 UTF8ToUTF16(kTestCases[i].time),
215 &time));
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/
H A DRTPjitter.cc41 float time; member in struct:arr_time
119 while(fread(&(time_vec[dat_len].time),sizeof(float),1,dat_file)>0) {
125 fprintf(stderr, "Error: dat_file is empty, no arrival time is given.\n");
183 if(time_vec[k].time < FLT_MAX && time_vec[k].ix < Npack){
186 if ( time_vec[k].time >= 0 ) {
187 *offset = htonl((uint32_t) time_vec[k].time);
191 fprintf(stderr, "Warning: negative receive time in dat file transformed"
223 if(((arr_time *)xp)->time == ((arr_time *)yp)->time)
225 else if(((arr_time *)xp)->time > ((arr_tim
[all...]
/external/chromium_org/chrome/browser/ssl/
H A Dssl_error_classification_unittest.cc9 #include "base/time/time.h"
35 base::Time time; local
41 EXPECT_TRUE(base::Time::FromString("Wed, 03 Jan 2007 12:00:00 GMT", &time));
43 time,
51 EXPECT_TRUE(base::Time::FromString("Sat, 06 Jan 2007 12:00:00 GMT", &time));
53 time,
61 EXPECT_TRUE(base::Time::FromString("Mon, 08 Jan 2007 12:00:00 GMT", &time));
63 time,
76 base::Time time local
[all...]
/external/chromium_org/third_party/skia/src/utils/
H A DSkInterpolator.cpp40 <time (in msec)>
61 SkScalar SkInterpolatorBase::ComputeRelativeT(SkMSec time, SkMSec prevTime, argument
63 SkASSERT(time > prevTime && time < nextTime);
65 SkScalar t = SkScalarDiv((SkScalar)(time - prevTime),
71 SkInterpolatorBase::Result SkInterpolatorBase::timeToT(SkMSec time, SkScalar* T, argument
79 SkMSec offsetTime = time - startTime;
93 time = offsetTime + startTime;
96 int index = SkTSearch<SkMSec>(&fTimes[0].fTime, fFrameCount, time,
123 *T = ComputeRelativeT(time, prev
161 setKeyFrame(int index, SkMSec time, const SkScalar values[], const SkScalar blend[4]) argument
182 timeToValues(SkMSec time, SkScalar values[]) const argument
[all...]

Completed in 3450 milliseconds

1234567891011>>