HomeSort by relevance Sort by last modified time
    Searched defs:estimator (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/tools/
bwe_rtp_play.cc 50 webrtc::RemoteBitrateEstimator* estimator; local
56 &parser, &estimator, &estimator_used)) {
61 webrtc::scoped_ptr<webrtc::RemoteBitrateEstimator> rbe(estimator);
102 printf("Estimator used: %s\n", estimator_used.c_str());
  /external/chromium_org/third_party/webrtc/video_engine/
vie_channel_group.cc 255 WrappingBitrateEstimator* estimator = local
257 estimator->SetConfig(config);
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
TranslateLanguagePanel.java 208 TextView estimator = (TextView) LayoutInflater.from(getContext()).inflate( local
210 layout.addView(estimator);
212 estimator.setText(getStringForLanguage(i));
213 estimator.measure(spec, spec);
214 mMinimumWidth = Math.max(mMinimumWidth, estimator.getMeasuredWidth());
  /external/chromium_org/ui/events/gesture_detection/
velocity_tracker.cc 27 virtual bool GetEstimator(uint32_t id, Estimator* out_estimator) const = 0;
53 struct Estimator {
56 // Estimator time base.
119 // Degree must be no greater than Estimator::MAX_DEGREE.
130 Estimator* out_estimator) const OVERRIDE;
169 Estimator* out_estimator) const OVERRIDE;
193 void PopulateEstimator(const State& state, Estimator* out_estimator) const;
359 Estimator estimator; local
360 if (GetEstimator(id, &estimator) && estimator.degree >= 1)
    [all...]
  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 53 bool getEstimator(int32_t id, VelocityTracker::Estimator* outEstimator);
134 bool VelocityTrackerState::getEstimator(int32_t id, VelocityTracker::Estimator* outEstimator) {
197 VelocityTracker::Estimator estimator; local
198 bool result = state->getEstimator(id, &estimator);
205 env->SetFloatArrayRegion(xCoeffObj, 0, VelocityTracker::Estimator::MAX_DEGREE + 1,
206 estimator.xCoeff);
207 env->SetFloatArrayRegion(yCoeffObj, 0, VelocityTracker::Estimator::MAX_DEGREE + 1,
208 estimator.yCoeff);
209 env->SetIntField(outEstimatorObj, gEstimatorClassInfo.degree, estimator.degree)
    [all...]
  /external/deqp/modules/gles2/performance/
es2pShaderOperatorTests.cpp 423 const gls::LineParameters estimator = simpleLinearRegression(data); local
428 const float estY = estimator.offset + estimator.coefficient*data[i].x();
    [all...]
  /external/deqp/modules/gles3/performance/
es3pShaderOperatorTests.cpp 423 const gls::LineParameters estimator = simpleLinearRegression(data); local
428 const float estY = estimator.offset + estimator.coefficient*data[i].x();
    [all...]
  /frameworks/native/libs/input/
VelocityTracker.cpp 251 Estimator estimator; local
252 getEstimator(id, &estimator);
254 "estimator (degree=%d, xCoeff=%s, yCoeff=%s, confidence=%f)",
256 int(estimator.degree),
257 vectorToString(estimator.xCoeff, estimator.degree + 1).string(),
258 vectorToString(estimator.yCoeff, estimator.degree + 1).string(),
259 estimator.confidence)
336 Estimator estimator; local
    [all...]
  /external/chromium_org/third_party/closure_compiler/compiler/
compiler.jar 

Completed in 2649 milliseconds