HomeSort by relevance Sort by last modified time
    Searched refs:minDuration (Results 1 - 10 of 10) sorted by null

  /external/chromium/chrome/common/extensions/docs/examples/extensions/wave/
prettyload.js 32 minDuration,
46 this.minDuration = minDuration !== undefined ? minDuration : 1;
97 }, this.minDuration * MS_PER_SEC - (Date.now() - startTime));
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsContextRecorder.h 47 PassOwnPtr<Timings> profile(unsigned minIterations, double minDuration) const;
GraphicsContextRecorder.cpp 125 void play(GraphicsContextSnapshot::Timings* timingsVector, unsigned minRepeatCount, double minDuration)
131 double stopTime = now + minDuration;
166 PassOwnPtr<GraphicsContextSnapshot::Timings> GraphicsContextSnapshot::profile(unsigned minRepeatCount, double minDuration) const
171 player.play(timings.get(), minRepeatCount, minDuration);
  /hardware/libhardware/tests/camera2/
CameraBurstTests.cpp 339 int64_t minDuration = 0, maxDuration = 0;
432 minDuration = availableProcessedMinFrameDurations.data.i64[i/2];
438 if (minDuration == 0) {
439 minDuration = 1 * SEC / 30; // Fall back to 30 fps as minimum duration
442 ASSERT_LT(0, minDuration);
461 << minDuration << " - " << maxDuration << " ns" << std::endl;
501 d = minDuration;
517 d = minDuration;
531 d = d > minDuration ? d : minDuration;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorLayerTreeAgent.h 77 virtual void profileSnapshot(ErrorString*, const String& snapshotId, const int* minRepeatCount, const double* minDuration, RefPtr<TypeBuilder::Array<TypeBuilder::Array<double> > >&);
InspectorLayerTreeAgent.cpp 369 void InspectorLayerTreeAgent::profileSnapshot(ErrorString* errorString, const String& snapshotId, const int* minRepeatCount, const double* minDuration, RefPtr<TypeBuilder::Array<TypeBuilder::Array<double> > >& outTimings)
374 OwnPtr<GraphicsContextSnapshot::Timings> timings = snapshot->graphicsSnapshot->profile(minRepeatCount ? *minRepeatCount : 1, minDuration ? *minDuration : 0);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TimelineFrameController.js 157 this.minDuration = Infinity;
170 this.minDuration = Math.min(this.minDuration, duration);
TimelinePresentationModel.js     [all...]