/packages/apps/Gallery/src/com/android/camera/ |
HighlightView.java | 181 final float hysteresis = 20F; local 191 if (Math.abs(delta) <= hysteresis) { 213 boolean verticalCheck = (y >= r.top - hysteresis) 214 && (y < r.bottom + hysteresis); 215 boolean horizCheck = (x >= r.left - hysteresis) 216 && (x < r.right + hysteresis); 219 if ((Math.abs(r.left - x) < hysteresis) && verticalCheck) { 222 if ((Math.abs(r.right - x) < hysteresis) && verticalCheck) { 225 if ((Math.abs(r.top - y) < hysteresis) && horizCheck) { 228 if ((Math.abs(r.bottom - y) < hysteresis) && horizCheck) [all...] |
/external/chromium/chrome/browser/ui/cocoa/ |
draggable_button.h | 52 // hysteresis limit. 63 // hysteresis limit.
|
draggable_button.mm | 13 // TODO(viettrungluu): Do we want common, standard code for drag hysteresis?
|
/external/webkit/Source/WebKit/mac/Misc/ |
WebNSViewExtras.h | 45 // passes expiration or the mouse moves less than the hysteresis before the mouseUp event,
|
/frameworks/base/tools/orientationplot/ |
README.txt | 49 for hysteresis. Try holding the device in one orientation and slowly turning 64 In other words, the hysteresis gap applies only when the measured orientation
|
/frameworks/base/core/java/android/view/ |
WindowOrientationListener.java | 200 * to the corresponding orientation. These thresholds have some hysteresis built-in 317 // The gap angle in degrees between adjacent orientation angles for hysteresis. 511 * for hysteresis. 515 // The gap is used only to introduce hysteresis among advertised orientation
|
/hardware/invensense/mlsdk/mllite/ |
mlcontrol.h | 74 #define INV_HYSTERESIS 0x0008 // Indicates that, when INV_GRID is selected, hysteresis should be used to prevent
|
mlcontrol.c | 189 * Indicates that, when INV_GRID is selected, hysteresis should
|
/external/wpa_supplicant_8/wpa_supplicant/ |
driver_i.h | 499 int threshold, int hysteresis) 503 threshold, hysteresis);
|
/external/webkit/Source/WebKit/mac/WebView/ |
WebViewEventHandling.mm | 97 // Record the mouse down position so we can determine drag hysteresis.
|
/external/llvm/lib/CodeGen/ |
RegAllocGreedy.cpp | 297 // Hysteresis to use when comparing floats. 299 const float Hysteresis = 0.98f; [all...] |
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_button.mm | 135 (yDelta <= -yHysteresis) && // Bottom of hysteresis box was hit.
|
/external/opencv/cv/src/ |
cvcanny.cpp | 304 // now track the edges (hysteresis thresholding)
|
/external/webkit/Source/WebCore/platform/graphics/ |
GraphicsLayer.h | 327 // the same value passed to setContentsScale(), because of clamping and hysteresis.
|
/packages/apps/Calendar/src/com/android/calendar/month/ |
SimpleDayPickerFragment.java | 514 // Use some hysteresis for checking which month to highlight. This
|
/packages/apps/Camera/src/com/android/camera/ |
Util.java | 76 // Orientation hysteresis amount used in rounding, in degrees
|
/external/speex/libspeex/ |
jitter.c | 249 /* Two-frame penalty if we're going to increase the amount of late frames (hysteresis) */
|
/external/webkit/Source/WebCore/page/ |
EventHandler.cpp | 115 // The link drag hysteresis is much larger than the others because there [all...] |
/external/wpa_supplicant_8/src/drivers/ |
driver.h | [all...] |
driver_nl80211.c | [all...] |
nl80211_copy.h | [all...] |
/frameworks/base/core/java/android/widget/ |
CalendarView.java | 886 // Use some hysteresis for checking which month to highlight. This [all...] |
/external/webkit/Source/WebKit/mac/ |
ChangeLog-2002-12-03 | [all...] |
/external/bluetooth/bluez/tools/ |
csr.c | 696 return "AGC hysteresis levels"; [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
ConcurrentSkipListMap.java | [all...] |