HomeSort by relevance Sort by last modified time
    Searched refs:period (Results 101 - 125 of 677) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/chrome/browser/media/
desktop_media_list_ash.h 43 virtual void SetUpdatePeriod(base::TimeDelta period) OVERRIDE;
native_desktop_media_list.h 34 virtual void SetUpdatePeriod(base::TimeDelta period) OVERRIDE;
fake_desktop_media_list.cc 44 void FakeDesktopMediaList::SetUpdatePeriod(base::TimeDelta period) {}
  /frameworks/av/media/libmediaplayerservice/
VideoFrameScheduler.h 39 // returns the vsync period for the main display
57 // returns period
64 bool mPrimed; // have an estimate for the period
75 bool fit(nsecs_t phase, nsecs_t period, size_t numSamples,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
NetworkController.java 85 public String period; field in class:NetworkController.MobileDataController.DataUsageInfo
  /frameworks/native/services/surfaceflinger/
DispSync.h 45 // display and uses that model to execute period callbacks at specific phase
99 // The setPeriod method sets the vsync event model's period to a specific
102 void setPeriod(nsecs_t period);
104 // The getPeriod method returns the current vsync period.
144 // mPeriod is the computed period of the modeled vsync events in
  /ndk/tests/device/issue39680-chrono-resolution/jni/
issue39680-chrono-resolution.cpp 45 typedef typename C::period P;// type of time unit
  /external/clang/lib/Parse/
ParseInit.cpp 32 case tok::period: // designator: '.' identifier
165 while (Tok.is(tok::period) || Tok.is(tok::l_square)) {
166 if (Tok.is(tok::period)) {
216 NextToken().isNot(tok::period) &&
258 NextToken().is(tok::period),
  /ndk/sources/host-tools/sed-4.2.1/sed/
fmt.c 79 /* Cost of breaking a line after a period not marking end of a sentence.
125 unsigned period:1; /* ends in [.?!])* */ member in struct:Word
268 (word_limit - 1)->period = (word_limit - 1)->final = true;
334 || (word_limit->period
385 w->period = isperiod (*finish);
490 if ((this - 1)->period)
  /external/qemu/hw/timer/
mc146818rtc.c 80 uint32_t period; member in struct:RTCState
113 muldiv64(s->period / c, get_ticks_per_sec(), 32768);
137 int period_code, period; local
159 /* period in 32 Khz cycles */
160 period = 1 << (period_code - 1);
162 if(period != s->period)
163 s->irq_coalesced = (s->irq_coalesced * s->period) / period;
164 s->period = period
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/
SensorCtsHelper.java 118 * Convert a period to frequency in Hz.
120 public static <TValue extends Number> double getFrequency(TValue period, TimeUnit unit) {
121 return 1000000000 / (TimeUnit.NANOSECONDS.convert(1, unit) * period.doubleValue());
125 * Convert a frequency in Hz into a period.
  /external/chromium_org/third_party/webrtc/test/manual/
adapter.js 37 // Unify them for earlier Chrome versions in the coexisting period.
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
MockResponse.java 232 * Throttles the response body writer to sleep for the given period after each
236 public MockResponse throttleBody(int bytesPerPeriod, long period, TimeUnit unit) {
238 this.throttlePeriod = period;
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
MockResponse.java 217 * Throttles the response body writer to sleep for the given period after each
221 public MockResponse throttleBody(int bytesPerPeriod, long period, TimeUnit unit) {
223 this.throttlePeriod = period;
  /external/apache-http/src/org/apache/http/message/
BasicLineParser.java 177 int period = buffer.indexOf('.', i, indexTo); local
178 if (period == -1) {
185 major = Integer.parseInt(buffer.substringTrimmed(i, period));
191 i = period + 1;
  /external/chromium_org/base/time/
time_win.cc 185 // therefore undo the period effect.
203 UINT period = g_high_res_timer_enabled ? kMinTimerIntervalHighResMs local
209 timeBeginPeriod(period);
214 timeEndPeriod(period);
216 return (period == kMinTimerIntervalHighResMs);
  /external/chromium_org/third_party/skia/samplecode/
SampleCode.h 37 static SkScalar GetAnimScalar(SkScalar speedPerSec, SkScalar period = 0);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
sw-clock.c 16 * then check their frequency -> period conversion has no artifact of
17 * setting period to 1 forcefully.
89 total_periods += sample.period;
96 pr_debug("All (%d) samples have period value of 1!\n",
  /external/llvm/lib/TableGen/
TGLexer.h 41 comma, period, // , . enumerator in enum:llvm::tgtok::TokKind
  /external/skia/samplecode/
SampleCode.h 37 static SkScalar GetAnimScalar(SkScalar speedPerSec, SkScalar period = 0);
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipWakeupTimer.java 113 // Determines the period and the trigger time of the new event and insert it
147 * @param period the timer period; in milli-second
151 public synchronized void set(int period, Runnable callback) {
155 MyEvent event = new MyEvent(period, callback, now);
294 MyEvent(int period, Runnable callback, long now) {
295 mPeriod = mMaxPeriod = period;
  /external/chromium_org/third_party/mesa/src/docs/
MESA_swap_frame_usage.spec 36 swap period has elapsed since the last swap operation completed. The
52 buffer swap occurred within the time period required to maintain a
112 The frame usage is measured as the percentage of the swap period elapsed
114 swap period is the vertical refresh time. If SGI_swap_control or
115 MESA_swap_control are supported, the swap period is the vertical refresh
119 If OML_sync_control is supported, the swap period is the vertical
  /external/clang/lib/Lex/
TokenConcatenation.cpp 76 TokenInfo[tok::period ] |= aci_custom_firstchar;
245 case tok::period: // ..., .*, .1234
246 return (FirstChar == '.' && PrevPrevTok.is(tok::period)) ||
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
hist.h 26 * sample_event.period and stash the result in total_period.
85 struct symbol *parent, u64 period,
97 u64 period,
104 u64 period,
  /external/mesa3d/docs/
MESA_swap_frame_usage.spec 36 swap period has elapsed since the last swap operation completed. The
52 buffer swap occurred within the time period required to maintain a
112 The frame usage is measured as the percentage of the swap period elapsed
114 swap period is the vertical refresh time. If SGI_swap_control or
115 MESA_swap_control are supported, the swap period is the vertical refresh
119 If OML_sync_control is supported, the swap period is the vertical

Completed in 505 milliseconds

1 2 3 45 6 7 8 91011>>