OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:estimator
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
TranslateLanguagePanel.java
209
TextView
estimator
= (TextView) LayoutInflater.from(getContext()).inflate(
local
211
layout.addView(
estimator
);
213
estimator
.setText(getStringForLanguage(i));
214
estimator
.measure(spec, spec);
215
mMinimumWidth = Math.max(mMinimumWidth,
estimator
.getMeasuredWidth());
/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
...]
/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/WebKit/Source/devtools/scripts/closure/
compiler.jar
Completed in 745 milliseconds