Searched refs:distance (Results 1 - 25 of 52) sorted by relevance

123

/packages/inputmethods/LatinIME/native/jni/src/utils/
H A Dautocorrection_threshold_utils.cpp75 const int distance = editDistance(before, beforeLength, after, afterLength); local
87 if (score <= 0 || distance >= afterLength) {
89 // or if the edit distance is larger than or equal to afterLength.
92 // add a weight based on edit distance.
93 const float weight = 1.0f - static_cast<float>(distance) / static_cast<float>(afterLength);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DKeyDetector.java37 * @param keyHysteresisDistance if the pointer movement distance is smaller than this, the
103 final int distance = key.squaredDistanceToEdge(touchX, touchY);
104 if (distance > minDistance) {
108 if (primaryKey == null || distance < minDistance
110 minDistance = distance;
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DScrollerHelper.java84 // Returns the distance that over the scroll limit.
85 public int startScroll(int distance, int min, int max) { argument
89 int newPosition = Utils.clamp(finalPosition + distance, min, max);
95 return finalPosition + distance - newPosition;
H A DPaper.java36 public void overScroll(float distance) { argument
37 distance /= mWidth; // make it relative to width
38 if (distance < 0) {
39 mAnimationLeft.onPull(-distance);
41 mAnimationRight.onPull(distance);
H A DEdgeEffect.java180 * @param deltaDistance Change in distance since the last call. Values may be 0 (no change) to
198 float distance = Math.abs(mPullDistance);
200 mEdgeAlpha = mEdgeAlphaStart = Math.max(PULL_EDGE_BEGIN, Math.min(distance, MAX_ALPHA));
202 HELD_EDGE_SCALE_Y, Math.min(distance * PULL_DISTANCE_EDGE_FACTOR, 1.f));
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
H A DLevenshteinDistance.java20 * This class represents the matrix used in the Levenshtein distance algorithm, together
60 * Implementation of Levenshtein distance algorithm.
62 * @return The Levenshtein distance.
77 int distance = distTab[s-1][t] + 1;
81 if (d + 1 < distance ) {
82 distance = d + 1;
87 if (d + cost < distance) {
88 distance = d + cost;
91 distTab[s][t] = distance;
/packages/apps/Launcher2/src/com/android/launcher2/
H A DSmoothPagedView.java46 public void setDistance(int distance) { argument
47 mTension = distance > 0 ? DEFAULT_TENSION / distance : DEFAULT_TENSION;
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
H A DLevenshteinDistanceTest.java43 LevenshteinDistance distance = new LevenshteinDistance(sourceTokens, targetTokens);
45 assertEquals(expectedDistance, distance.calculate());
46 EditOperation[] ops = distance.getTargetOperations();
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DBogusMoveEventDetector.java63 // Accumulated distance from actual and artificial down keys.
84 public void onMoveKey(final int distance) { argument
85 mAccumulatedDistanceFromDownKey += distance;
H A DGestureStrokeRecognitionPoints.java280 final int distance = detectFastMove(x, y, time);
281 if (distance > mGestureSamplingMinimumDistance) {
/packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
H A DOverScrollerSGV.java158 * @return The new X offset as an absolute distance from the origin.
167 * @return The new Y offset as an absolute distance from the origin.
185 * @return The start X offset as an absolute distance from the origin.
194 * @return The start Y offset as an absolute distance from the origin.
203 * @return The final X offset as an absolute distance from the origin.
212 * @return The final Y offset as an absolute distance from the origin.
255 * @param newX The new X offset as an absolute distance from the origin.
273 * @param newY The new Y offset as an absolute distance from the origin.
345 * Start scrolling by providing a starting point and the distance to travel.
353 * @param dx Horizontal distance t
681 startScroll(int start, int distance, int duration) argument
[all...]
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
H A DOverScroller.java156 * @return The new X offset as an absolute distance from the origin.
165 * @return The new Y offset as an absolute distance from the origin.
183 * @return The start X offset as an absolute distance from the origin.
192 * @return The start Y offset as an absolute distance from the origin.
201 * @return The final X offset as an absolute distance from the origin.
210 * @return The final Y offset as an absolute distance from the origin.
253 * @param newX The new X offset as an absolute distance from the origin.
271 * @param newY The new Y offset as an absolute distance from the origin.
343 * Start scrolling by providing a starting point and the distance to travel.
351 * @param dx Horizontal distance t
682 startScroll(int start, int distance, int duration) argument
[all...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/
H A DMaterialColorMapUtils.java121 final float distance = Math.abs(comparedHue - colorHue);
122 if (distance < minimumDistance) {
123 minimumDistance = distance;
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/result/
H A Dsuggestions_output_utils.cpp204 // Get the distance for the first word of the suggestion
205 const float distance = terminalDicNode->getNormalizedCompoundDistanceAfterFirstWord(); local
217 // Expected distance is about 0.2 ~ 2.0, but consider 0.0 ~ 2.0
227 // The smaller the edit distance, the higher the contribution. MIN_EXPECTED_DISTANCE means 0
229 // weight of the distance. Clamp to avoid overflows.
230 const float clampedDistance = distance < MIN_EXPECTED_DISTANCE ? MIN_EXPECTED_DISTANCE
231 : distance > MAX_EXPECTED_DISTANCE ? MAX_EXPECTED_DISTANCE : distance;
/packages/apps/Browser/src/com/android/browser/
H A DNavTabScroller.java280 int distance = target - (mHorizontal ? v.getTop() : v.getLeft());
281 long duration = (long) (Math.abs(distance) * 1000 / Math.abs(velocity));
432 protected void onOrthoDrag(View v, float distance) { argument
434 offsetView(v, distance);
464 private void offsetView(View v, float distance) { argument
465 v.setAlpha(getAlpha(v, distance));
467 v.setTranslationY(distance);
469 v.setTranslationX(distance);
473 private float getAlpha(View v, float distance) { argument
474 return 1 - (float) Math.abs(distance) / (mHorizonta
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DLocationClustering.java38 // If the total distance change is less than this ratio, stop iterating.
222 // (sum of distance from each point to its group center) * sqrt(k).
255 float distance = (float) GalleryUtils.fastDistanceMeters(
257 // We may have small non-zero distance introduced by
260 if (distance < 1) {
261 distance = 0;
263 if (distance < bestDistance) {
264 bestDistance = distance;
/packages/apps/ExactCalculator/src/com/android/calculator2/
H A DCalculatorResult.java139 int distance = (int)distanceX;
147 if (mCurrentPos + distance < mMinPos) {
148 distance = mMinPos - mCurrentPos;
149 } else if (mCurrentPos + distance > mMaxPos) {
150 distance = mMaxPos - mCurrentPos;
154 mScroller.startScroll(mCurrentPos, 0, distance, 0, (int)duration);
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DMessageScrollView.java221 int distance = (deltaX * deltaX) + (deltaY * deltaY);
222 if (distance > mTouchSlopSquared) {
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DEyePosition.java146 float distance = (gx > 0 ? gx : -gx) + (gy > 0 ? gy : - gy);
147 if (distance < GYROSCOPE_THRESHOLD
148 || distance > GYROSCOPE_LIMIT || mGyroscopeCountdown > 0) {
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
H A DContactMatcher.java63 // Minimum edit distance between two names to be considered an approximate match
66 // Minimum edit distance between two email ids to be considered an approximate match
81 * match producing the score of 70. The score may also be 0 if the similarity (distance)
190 * of name we found and, if the match is approximate, the distance between the candidate and
229 float distance = nameDistance.getDistance(decodedCandidateName, decodedName);
235 if (distance > threshold) {
236 score = (int)(minScore + (maxScore - minScore) * (1.0f - distance));
H A DRawContactMatcher.java67 // Minimum edit distance between two names to be considered an approximate match
70 // Minimum edit distance between two email ids to be considered an approximate match
85 * match producing the score of 70. The score may also be 0 if the similarity (distance)
188 * of name we found and, if the match is approximate, the distance between the candidate and
227 float distance = nameDistance.getDistance(decodedCandidateName, decodedName);
233 if (distance > threshold) {
234 score = (int)(minScore + (maxScore - minScore) * (1.0f - distance));
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
H A DPhotoTouchListener.java111 // distance travelled before stopping
208 double distance = Math.hypot(x0 - mInitialTouchX,
211 if (distance < mTouchSlop) {
221 distance < mTouchSlop) {
/packages/apps/Calendar/src/com/android/calendar/agenda/
H A DAgendaByDayAdapter.java545 long distance = Math.abs(millis - row.mEventStartTimeMilli);
546 if (distance < idFoundMinDistance) {
547 idFoundMinDistance = distance;
565 long distance = Math.abs(millis - row.mEventStartTimeMilli);
566 if (distance < minDistance) {
567 minDistance = distance;
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
H A Dproximity_info_utils.h105 // Return point to the point distance.
168 const int distance = squaredLengthToEdge(keyXCoordinates, keyYCoordinates, local
170 if (onKey || distance < mostCommonKeyWidthSquare) {
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/typing/
H A Dtyping_weighting.h123 const float distance = distance1 + distance2; local
125 distance * ScoringParams::DISTANCE_WEIGHT_LENGTH;

Completed in 1488 milliseconds

123