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

12

/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/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
H A DAutoCorrectionUtils.java70 // we should not use net because relatively edit distance can be big.
76 final int distance = BinaryDictionaryUtils.editDistance(typedWord, suggestion);
78 Log.d(TAG, "Autocorrected edit distance = " + distance
81 if (distance > maxEditDistanceOfNativeDictionary) {
84 Log.e(TAG, "(Error) The edit distance of this correction exceeds limit. "
/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/ContactsCommon/src/com/android/contacts/common/util/
H A DMaterialColorMapUtils.java62 final float distance = Math.abs(comparedHue - colorHue);
63 if (distance < minimumDistance) {
64 minimumDistance = 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/Launcher3/src/com/android/launcher3/
H A DSmoothPagedView.java45 public void setDistance(int distance) { argument
46 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/native/jni/src/suggest/core/result/
H A Dsuggestions_output_utils.cpp157 // Get the distance for the first word of the suggestion
158 const float distance = terminalDicNode->getNormalizedCompoundDistanceAfterFirstWord(); local
170 // Expected distance is about 0.2 ~ 2.0, but consider 0.0 ~ 2.0
180 // The smaller the edit distance, the higher the contribution. MIN_EXPECTED_DISTANCE means 0
182 // weight of the distance. Clamp to avoid overflows.
183 const float clampedDistance = distance < MIN_EXPECTED_DISTANCE ? MIN_EXPECTED_DISTANCE
184 : distance > MAX_EXPECTED_DISTANCE ? MAX_EXPECTED_DISTANCE : distance;
/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.java159 * @return The new X offset as an absolute distance from the origin.
168 * @return The new Y offset as an absolute distance from the origin.
188 * @return The start X offset as an absolute distance from the origin.
197 * @return The start Y offset as an absolute distance from the origin.
206 * @return The final X offset as an absolute distance from the origin.
215 * @return The final Y offset as an absolute distance from the origin.
258 * @param newX The new X offset as an absolute distance from the origin.
276 * @param newY The new Y offset as an absolute distance from the origin.
348 * Start scrolling by providing a starting point and the distance to travel.
356 * @param dx Horizontal distance t
684 startScroll(int start, int distance, int duration) argument
[all...]
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
H A DOverScroller.java157 * @return The new X offset as an absolute distance from the origin.
166 * @return The new Y offset as an absolute distance from the origin.
186 * @return The start X offset as an absolute distance from the origin.
195 * @return The start Y offset as an absolute distance from the origin.
204 * @return The final X offset as an absolute distance from the origin.
213 * @return The final Y offset as an absolute distance from the origin.
256 * @param newX The new X offset as an absolute distance from the origin.
274 * @param newY The new Y offset as an absolute distance from the origin.
346 * Start scrolling by providing a starting point and the distance to travel.
354 * @param dx Horizontal distance t
685 startScroll(int start, int distance, int duration) argument
[all...]
/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.java39 // If the total distance change is less than this ratio, stop iterating.
223 // (sum of distance from each point to its group center) * sqrt(k).
256 float distance = (float) GalleryUtils.fastDistanceMeters(
258 // We may have small non-zero distance introduced by
261 if (distance < 1) {
262 distance = 0;
264 if (distance < bestDistance) {
265 bestDistance = distance;
/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.java147 float distance = (gx > 0 ? gx : -gx) + (gy > 0 ? gy : - gy);
148 if (distance < GYROSCOPE_THRESHOLD
149 || distance > GYROSCOPE_LIMIT || mGyroscopeCountdown > 0) {
/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/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
H A DContactMatcher.java69 // Minimum edit distance between two names to be considered an approximate match
72 // Minimum edit distance between two email ids to be considered an approximate match
87 * match producing the score of 70. The score may also be 0 if the similarity (distance)
278 * of name we found and, if the match is approximate, the distance between the candidate and
317 float distance = nameDistance.getDistance(decodedCandidateName, decodedName);
323 if (distance > threshold) {
324 score = (int)(minScore + (maxScore - minScore) * (1.0f - distance));
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
H A Dproximity_info_utils.h104 // Return point to the point distance.
167 const int distance = squaredLengthToEdge(keyXCoordinates, keyYCoordinates, local
169 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 763 milliseconds

12