OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:abs
(Results
326 - 350
of
696
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/
shell.js
151
if ( Math.
abs
(actual-expect) < 0.0000001 ) {
674
if ( Math.
abs
( t ) > 8.64e15 ) {
693
return ( sign * Math.floor( Math.
abs
( t ) ) );
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Date/
shell.js
141
if ( Math.
abs
(actual-expect) < 0.0000001 ) {passed = true;}
628
if ( Math.
abs
( t ) > 8.64e15 ) {return ( Number.NaN);}
649
return ( sign * Math.floor( Math.
abs
( t ) ) );
/external/webkit/Source/WebKit/chromium/tests/
KURLTest.cpp
334
const char
abs
[] = "http://www.google.com/";
local
335
WebCore::KURL resolveAbs(emptyBase,
abs
);
337
EXPECT_STREQ(
abs
, resolveAbs.string().utf8().data());
/frameworks/base/core/java/android/gesture/
GestureOverlayView.java
607
final float dx = Math.
abs
(x - previousX);
608
final float dy = Math.
abs
(y - previousY);
643
float angle = Math.
abs
(box.orientation);
/frameworks/base/core/java/android/widget/
Switch.java
428
if (Math.
abs
(x - mTouchX) > mTouchSlop ||
429
Math.
abs
(y - mTouchY) > mTouchSlop) {
493
if (Math.
abs
(xvel) > mMinFlingVelocity) {
/frameworks/base/libs/rs/driver/
rsdRuntimeMath.cpp
77
static uint32_t SC_abs_i32(int32_t v) {return
abs
(v);}
78
static uint16_t SC_abs_i16(int16_t v) {return (uint16_t)
abs
(v);}
79
static uint8_t SC_abs_i8(int8_t v) {return (uint8_t)
abs
(v);}
/cts/tests/tests/widget/src/android/widget/cts/
FrameLayoutTest.java
382
assertTrue(Math.
abs
(leftDelta - rightDelta) <= 1);
383
assertTrue(Math.
abs
(topDelta - bottomDelta) <= 1);
RelativeLayoutTest.java
203
assertTrue(Math.
abs
(bottomSpace - topSpace) <= 1);
295
assertTrue(Math.
abs
(bottomSpace - topSpace) <= 1);
/external/apache-harmony/math/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerCompareTest.java
28
* Methods:
abs
, compareTo, equals, max, min, negate, signum
32
*
abs
() for a positive number
39
BigInteger result = aNumber.
abs
();
49
*
abs
() for a negative number
56
BigInteger result = aNumber.
abs
();
/external/clang/utils/
FindSpecRefs
640
dist =
abs
(line - target)
725
return
abs
(a-b)
[
all
...]
/external/libvpx/vp8/encoder/
sad_c.c
29
sad +=
abs
(src_ptr[c] - ref_ptr[c]);
57
sad +=
abs
(src_ptr[c] - ref_ptr[c]);
/external/opencv/cvaux/src/
cvfindhandregion.cpp
516
j_left =
abs
( j_left - jc );
517
j_right =
abs
( j_right - jc );
/external/opencv/cxcore/src/
_cxcore.h
161
inline double
abs
(CvComplex32f a)
function
229
inline double
abs
(CvComplex64f a)
function
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_1/
jsref.js
96
if ( Math.
abs
(actual-expect) < 0.0000001 ) {
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/
shell.js
100
if ( Math.
abs
(actual-expect) < 0.0000001 ) {
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_4/
jsref.js
94
if ( Math.
abs
(actual-expect) < 0.0000001 ) {
/external/webkit/Source/WebCore/platform/graphics/
TiledBackingStore.cpp
196
return
abs
(centerCoordinate.y() - tileCoordinate.y()) + horizontalBias *
abs
(centerCoordinate.x() - tileCoordinate.x());
/external/webkit/Source/WebKit/chromium/src/gtk/
WebInputEventFactory.cpp
69
||
abs
(x - gLastClickX) > doubleClickDistance
70
||
abs
(y - gLastClickY) > doubleClickDistance;
/external/webkit/Source/WebKit/chromium/src/win/
WebInputEventFactory.cpp
263
(
abs
(lastClickPositionX - result.x) > (GetSystemMetrics(SM_CXDOUBLECLK) / 2))
264
|| (
abs
(lastClickPositionY - result.y) > (GetSystemMetrics(SM_CYDOUBLECLK) / 2))
/external/webkit/Source/WebKit/wince/
WebView.cpp
291
bool insideThreshold =
abs
(globalPrevPoint.x() - mouseEvent.pos().x()) < ::GetSystemMetrics(SM_CXDOUBLECLK)
292
&&
abs
(globalPrevPoint.y() - mouseEvent.pos().y()) < ::GetSystemMetrics(SM_CYDOUBLECLK);
/external/webkit/Source/WebKit2/Shared/win/
WebEventFactory.cpp
79
bool cancelPreviousClick = (
abs
(lastClickPosition.x - position.x) > (::GetSystemMetrics(SM_CXDOUBLECLK) / 2))
80
|| (
abs
(lastClickPosition.y - position.y) > (::GetSystemMetrics(SM_CYDOUBLECLK) / 2))
/external/webkit/Source/WebKit2/UIProcess/gtk/
WebView.cpp
157
for (int i = 0; i <
abs
(count); i++)
198
for (int i = 0; i <
abs
(count); i++)
WebViewWidget.cpp
270
|| ((
abs
(buttonEvent->x - priv->previousClickPoint.x()) < doubleClickDistance)
271
&& (
abs
(buttonEvent->y - priv->previousClickPoint.y()) < doubleClickDistance)
/external/webkit/Tools/Scripts/
bisect-builds
169
while (
abs
($endIndex - $startIndex) > 1) {
256
while (
abs
($highIndex - $lowIndex) > 1) {
/external/webrtc/src/modules/audio_processing/aecm/main/matlab/matlab/
align.m
61
delayDiff =
abs
(delayStruct.delay(i-1)-tempdelay+1);
Completed in 674 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>