/frameworks/base/core/java/android/util/ |
FloatMath.java | 33 * Returns the float conversion of the most positive (i.e. closest to 42 * Returns the float conversion of the most negative (i.e. closest to 51 * Returns the closest float approximation of the sine of the argument. 59 * Returns the closest float approximation of the cosine of the argument. 67 * Returns the closest float approximation of the square root of the
|
/frameworks/base/tools/layoutlib/bridge/src/android/util/ |
FloatMath_Delegate.java | 38 * Returns the float conversion of the most positive (i.e. closest to 50 * Returns the float conversion of the most negative (i.e. closest to 62 * Returns the closest float approximation of the sine of the argument. 73 * Returns the closest float approximation of the cosine of the argument. 84 * Returns the closest float approximation of the square root of the
|
/external/qemu/distrib/sdl-1.2.12/src/video/photon/ |
SDL_ph_modes.c | 166 /* if requested bpp is not found the mode with closest bpp is returned */ 169 int i, closest, delta, min_delta; local 192 /* get closest bpp */ 193 closest = i++; 196 return mode_list.modes[closest]; 216 closest = i; 224 closest = i; 231 return mode_list.modes[closest];
|
/external/webkit/Source/WebCore/html/ |
TimeRanges.cpp | 124 float closest = 0; local 131 if (fabs(startTime - time) < closest) 132 closest = fabsf(startTime - time); 133 else if (fabs(endTime - time) < closest) 134 closest = fabsf(endTime - time); 136 return closest;
|
/libcore/luni/src/main/java/java/lang/ |
StrictMath.java | 39 * The double value closest to e, the base of the natural logarithm. 44 * The double value closest to pi, the ratio of a circle's circumference to 125 * Returns the closest double approximation of the arc cosine of the 142 * Returns the closest double approximation of the arc sine of the argument 159 * Returns the closest double approximation of the arc tangent of the 178 * Returns the closest double approximation of the arc tangent of 217 * Returns the closest double approximation of the cube root of the 236 * Returns the double conversion of the most negative (closest to negative 250 * the value whose closest integer value has to be computed. 257 * Returns the closest double approximation of the hyperbolic cosine of th [all...] |
Math.java | 28 * The double value closest to e, the base of the natural logarithm. 33 * The double value closest to pi, the ratio of a circle's circumference to 106 * Returns the closest double approximation of the arc cosine of the 124 * Returns the closest double approximation of the arc sine of the argument 142 * Returns the closest double approximation of the arc tangent of the 162 * Returns the closest double approximation of the arc tangent of {@code 202 * Returns the closest double approximation of the cube root of the 221 * Returns the double conversion of the most negative (closest to negative 235 * the value whose closest integer value has to be computed. 241 * Returns the closest double approximation of the cosine of the argument [all...] |
StringToReal.java | 49 * exponent. Returns the closest double value to the real number, or Double.longBitsToDouble(-1). 58 * exponent. Returns the closest float value to the real number, or Float.intBitsToFloat(-1). 234 * Returns the closest double value to the real number in the string. 238 * @return the double closest to the real number 275 * Returns the closest float value to the real number in the string. 279 * @return the float closest to the real number
|
/external/v8/src/ |
fast-dtoa.h | 64 // The last digit will be closest to the actual v. That is, even if several 66 // the one closest to v. 69 // the difference v - (buffer * 10^(point-length)) is closest to zero for
|
/external/chromium/base/ |
mime_util.h | 33 // This will try to find the closest matching icon. If that's not available,
|
/external/chromium/base/third_party/dmg_fp/ |
dmg_fp.h | 24 // Store the closest decimal approximation to x in b (null terminated).
|
g_fmt.cc | 20 /* g_fmt(buf,x) stores the closest decimal approximation to x in buf;
|
/frameworks/base/media/libstagefright/include/ |
MP3Seeker.h | 31 // Given a request seek time in "*timeUs", find the byte offset closest
|
/external/webkit/Source/WebCore/page/ |
FocusController.cpp | 439 static void updateFocusCandidateIfNeeded(FocusDirection direction, const FocusCandidate& current, FocusCandidate& candidate, FocusCandidate& closest) 459 if (closest.isNull()) { 460 closest = candidate; 464 IntRect intersectionRect = intersection(candidate.rect, closest.rect); 465 if (!intersectionRect.isEmpty() && !areElementsOnSameLine(closest, candidate)) { 471 closest = candidate; 474 if (closest.visibleNode->contains(result.innerNode())) 478 if (candidate.alignment == closest.alignment) { 479 if (candidate.distance < closest.distance) 480 closest = candidate [all...] |
FocusController.h | 68 void findFocusCandidateInContainer(Node* container, const IntRect& startingRect, FocusDirection, KeyboardEvent*, FocusCandidate& closest);
|
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/ |
3d-raytrace.js | 190 var closest = null; 197 closest = triangle; 200 if (!closest) 203 var normal = closest.normal; 209 if (closest.shader) { 210 colour = closest.shader(closest, hit, dir); 212 colour = closest.material; 246 var closest = null;
|
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/ |
3d-raytrace.js | 190 var closest = null; 197 closest = triangle; 200 if (!closest) 203 var normal = closest.normal; 209 if (closest.shader) { 210 colour = closest.shader(closest, hit, dir); 212 colour = closest.material; 246 var closest = null;
|
/external/bluetooth/glib/glib/ |
gprimes.h | 43 * prime-valued sizes. The closest spaced prime function returns the
|
/external/skia/include/core/ |
SkTypeface.h | 89 @return reference to the closest-matching typeface. Call must call 100 @return reference to the closest-matching typeface. Call must call 113 @return reference to the closest-matching typeface. Call must call
|
/external/webkit/Source/WebCore/platform/graphics/mac/ |
GraphicsContext3DMac.mm | 56 static void setPixelFormat(Vector<CGLPixelFormatAttribute>& attribs, int colorBits, int depthBits, bool accelerated, bool supersample, bool closest) 75 if (closest) 119 // 4) closest to 32 bit RGBA/16 bit depth/software renderer
|
/external/webkit/Source/WebKit/android/WebCoreSupport/ |
WebViewClientError.h | 69 // Get the closest WebViewClient match to the given Chrome error code.
|
/external/webkit/Source/WebKit/chromium/public/ |
WebElement.h | 64 // is inherited, so the returned value is drawn from the closest parent
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
FocusHelper.java | 194 // Select the closest icon in the previous row, otherwise select the tab bar 207 // Select the closest icon in the previous row, otherwise do nothing 355 // Select the closest icon in the previous row, otherwise select the tab bar 367 // Select the closest icon in the previous row, otherwise do nothing 619 * Private helper method to find the next closest BubbleTextView or FolderIcon in the direction 725 // Select the closest icon in the previous line, otherwise select the tab bar 737 // Select the closest icon in the next line, otherwise select the button bar [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/ |
GuidelineHandler.java | 251 * Returns the closest match. 253 * @return the closest match, or null if nothing matched 431 * Finds the closest matching segments among the given list of edges for the given 435 List<Match> closest = new ArrayList<Match>(); local 436 addClosest(draggedEdge, edges, closest); 437 return closest; 441 List<Match> closest) { 443 int closestDelta = closest.size() > 0 ? closest.get(0).delta : Integer.MAX_VALUE; 477 closest.clear() [all...] |
/external/skia/gpu/include/ |
GrSamplerState.h | 28 * Read the closest src texel to the sample position 32 * Blend between closest 4 src texels to sample position (tent filter)
|
/external/clang/include/clang/Sema/ |
Scope.h | 177 /// getFnParent - Return the closest scope that is a function body. 182 /// getContinueParent - Return the closest scope that a continue statement 183 /// would be affected by. If the closest scope is a closure scope, we know 195 /// getBreakParent - Return the closest scope that a break statement 196 /// would be affected by. If the closest scope is a block scope, we know
|