/external/webkit/Source/WebCore/platform/graphics/android/layers/ |
ScrollableLayerAndroid.cpp | 48 float maxX, float maxY) 53 if (maxY < 0) maxY = 0; 55 if (minY > maxY) minY = maxY; 56 m_scrollLimits.set(minX, minY, minX + maxX, minY + maxY);
|
/external/chromium/chrome/browser/ui/cocoa/ |
browser_window_controller_private.mm | 192 CGFloat maxY = NSMaxY(contentBounds) + yOffset; 193 CGFloat startMaxY = maxY; 196 // If we need to lay out the top tab strip, replace |maxY| and |startMaxY| 199 startMaxY = maxY = NSHeight(windowFrame) + yOffset; 200 maxY = [self layoutTabStripAtMaxY:maxY width:width fullscreen:isFullscreen]; 203 // Sanity-check |maxY|. 204 DCHECK_GE(maxY, minY); 205 DCHECK_LE(maxY, NSMaxY(contentBounds) + yOffset); 218 maxY = [self layoutToolbarAtMinX:minX maxY:maxY width:width] [all...] |
browser_window_controller_private.h | 48 - (CGFloat)layoutTabStripAtMaxY:(CGFloat)maxY 56 maxY:(CGFloat)maxY 65 // call it with the appropriate |maxY| which depends on whether or not the 69 maxY:(CGFloat)maxY 81 maxY:(CGFloat)maxY
|
/external/skia/src/core/ |
SkBitmapProcState_shaderproc.h | 35 const unsigned maxY = s.fBitmap->height() - 1; 37 subY = TILEY_LOW_BITS(fy, maxY); 38 int y0 = TILEY_PROCF(fy, maxY); 39 int y1 = TILEY_PROCF((fy + s.fFilterOneY), maxY);
|
SkBitmapProcState_matrix.h | 45 const unsigned maxY = s.fBitmap->height() - 1; 46 *xy++ = TILEY_PROCF(fx, maxY); 113 int maxY = s.fBitmap->height() - 1; 116 *xy++ = (TILEY_PROCF(fy, maxY) << 16) | TILEX_PROCF(fx, maxX); 128 int maxY = s.fBitmap->height() - 1; 137 *xy++ = (TILEY_PROCF(srcXY[1], maxY) << 16) | 178 const unsigned maxY = s.fBitmap->height() - 1; 180 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, s.fFilterOneY PREAMBLE_ARG_Y); 221 unsigned maxY = s.fBitmap->height() - 1; 224 *xy++ = PACK_FILTER_Y_NAME(fy, maxY, oneY PREAMBLE_ARG_Y) [all...] |
SkBitmapSampler.cpp | 100 int maxY = fMaxY; 104 int tmpy = procY(iy, maxY); 110 int tmpy1 = procY(iy + 1, maxY); 148 int maxY = fMaxY; 152 int tmpy = procY(iy, maxY); 158 int tmpy1 = procY(iy + 1, maxY); 203 int maxY = fMaxY; 207 int tmpy = procY(iy, maxY); 213 int tmpy1 = procY(iy + 1, maxY); 262 int maxY = fMaxY [all...] |
SkBitmapProcState_matrix_clamp.h | 77 const unsigned maxY = s.fBitmap->height() - 1; 78 *xy++ = TILEY_PROCF(fx, maxY); 186 int maxY = s.fBitmap->height() - 1; 200 /* my sets of maxx/maxy for clamping */ 201 int32_t maxpair = (maxX&0xffff) | ((maxY&0xffff)<<16); 273 *xy++ = (TILEY_PROCF(fy, maxY) << 16) | TILEX_PROCF(fx, maxX); 288 int maxY = s.fBitmap->height() - 1; 320 int16x4_t maxY4 = vdup_n_s16((int16_t)maxY); 355 /* clamp Y>>16 (aka yhi) to 0..maxY */ 357 yhi = vmin_s16(yhi, maxY4); /* now 0..maxY */ [all...] |
SkBitmapProcState_matrix_repeat.h | 75 const unsigned maxY = s.fBitmap->height() - 1; 76 *xy++ = TILEY_PROCF(fx, maxY); 209 int maxY = s.fBitmap->height() - 1; 259 yout = vmulq_s32(yout, vdupq_n_s32(maxY+1)); 286 uint32_t val = (TILEY_PROCF(ofy, maxY) << 16) | TILEX_PROCF(ofx, maxX); 298 SkDebugf("maxX %08x maxY %08x\n", maxX, maxY); 306 *xy++ = (TILEY_PROCF(fy, maxY) << 16) | TILEX_PROCF(fx, maxX); 318 int maxY = s.fBitmap->height() - 1; 390 y = vmulq_s32(y, vdupq_n_s32(maxY+1)) [all...] |
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/ragdoll/ |
RagdollPreset.java | 65 private float maxX, minX, maxY, minY, maxZ, minZ; 70 public JointPreset(float maxX, float minX, float maxY, float minY, float maxZ, float minZ) { 73 this.maxY = maxY; 82 joint.getRotationalLimitMotor(1).setHiLimit(maxY);
|
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/ |
cull.rs | 35 float minX, minY, minZ, maxX, maxY, maxZ; 38 &maxX, &maxY, &maxZ); 40 //rsDebug("max", maxX, maxY, maxZ); 43 sphere.y = (maxY + minY) * 0.5f; 47 radius.y = (maxY - sphere.y);
|
/external/webkit/Source/WebCore/platform/graphics/ |
IntRect.cpp | 48 && y() < other.maxY() && other.y() < maxY(); 54 && y() <= other.y() && maxY() >= other.maxY(); 62 int b = min(maxY(), other.maxY()); 91 int b = max(maxY(), other.maxY()); 112 int bottom = max(maxY(), other.maxY()); [all...] |
FloatRect.cpp | 55 && y() < other.maxY() && other.y() < maxY(); 61 && y() <= other.y() && maxY() >= other.maxY(); 69 float b = min(maxY(), other.maxY()); 95 float b = max(maxY(), other.maxY()); 113 float bottom = max(maxY(), other.maxY()); [all...] |
/external/webkit/Source/WebCore/platform/graphics/android/context/ |
RTree.cpp | 57 int& maxx, int& maxy, 67 maxy = children[0]->m_maxY; 75 maxy = std::max(maxy, children[i]->m_maxY); 80 int h = maxy - miny; 86 int& maxx, int& maxy) 91 int newMaxY = std::max(maxy, node->m_maxY); 154 bounds.maxX(), bounds.maxY(), payload); 160 m_root->search(clip.x(), clip.y(), clip.maxX(), clip.maxY(), list); 165 m_root->remove(clip.x(), clip.y(), clip.maxX(), clip.maxY()); [all...] |
RTree.h | 124 static Node* create(RTree* tree, int minx, int miny, int maxx, int maxy, 126 return new (tree->allocateNode()) Node(tree, minx, miny, maxx, maxy, payload); 132 void search(int minx, int miny, int maxx, int maxy, Vector<WebCore::RecordingData*>& list); 133 void remove(int minx, int miny, int maxx, int maxy); 139 Node(RTree* tree, int minx, int miny, int maxx, int maxy, WebCore::RecordingData* payload); 154 bool overlap(int minx, int miny, int maxx, int maxy); 155 bool inside(int minx, int miny, int maxx, int maxy);
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
DiscretePathEffectTest.java | 77 int maxY = 0; 84 maxY = Math.max(maxY, y); 96 assertTrue(maxY - minY > 0); 98 assertTrue(maxY - minY <= 1 + 2 * DEVIATION);
|
/external/webkit/Source/WebCore/rendering/ |
RenderOverflow.h | 45 , m_maxYLayoutOverflow(layoutRect.maxY()) 49 , m_maxYVisualOverflow(visualRect.maxY()) 125 m_maxYLayoutOverflow = std::max(rect.maxY(), m_maxYLayoutOverflow); 133 m_maxYVisualOverflow = std::max(rect.maxY(), m_maxYVisualOverflow); 141 m_maxYLayoutOverflow = rect.maxY(); 149 m_maxYVisualOverflow = rect.maxY(); 157 m_maxYLayoutOverflow = rect.maxY();
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
NotificationPanelView.java | 102 float maxy = miny; local 106 if (y > maxy) maxy = y; 108 if (maxy - miny < mHandleBarHeight) {
|
/frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/ |
simplemodel.rs | 109 float minX, minY, minZ, maxX, maxY, maxZ; 114 &maxX, &maxY, &maxZ); 116 info->bBoxMax = toFloat3(maxX, maxY, maxZ); 126 float minX, minY, minZ, maxX, maxY, maxZ;
|
/external/webkit/Source/WebCore/platform/graphics/skia/ |
IntRectSkia.cpp | 40 SkIRect rect = { x(), y(), maxX(), maxY() }; 47 rect.set(SkIntToScalar(x()), SkIntToScalar(y()), SkIntToScalar(maxX()), SkIntToScalar(maxY()));
|
/external/webkit/Source/WebKit2/UIProcess/qt/ |
TiledDrawingAreaTileQt.cpp | 95 if (m_rect.maxY() > oldRect.maxY()) 96 invalidate(IntRect(oldRect.x(), oldRect.maxY(), m_rect.width(), m_rect.maxY() - oldRect.maxY()));
|
/external/skia/samplecode/ |
SampleClip.cpp | 90 const SkScalar maxy = 5*SkIntToScalar(H)/4; local 92 canvas->drawLine(randRange(rand, minx, maxx), randRange(rand, miny, maxy), 93 randRange(rand, minx, maxx), randRange(rand, miny, maxy),
|
/external/webkit/Source/WebCore/inspector/ |
DOMNodeHighlighter.cpp | 173 IntPoint titleBasePoint = IntPoint(anchorBox.x(), anchorBox.maxY() - 1); 191 if (titleRect.maxY() > overlayRect.maxY()) { 192 dy = anchorBox.y() - titleRect.maxY() - borderWidthPx; 194 if (titleRect.maxY() + dy > overlayRect.maxY()) 195 dy = overlayRect.maxY() - titleRect.maxY();
|
/external/replicaisland/src/com/replica/replicaisland/ |
AABoxCollisionVolume.java | 107 final float maxY; 113 maxY = Math.max(getMaxY(), other.getMaxY()); 118 maxY = other.getMaxY(); 122 final float verticalDelta = maxY - minY;
|
SphereCollisionVolume.java | 133 final float maxY; 139 maxY = Math.max(getMaxY(), other.getMaxY()); 144 maxY = other.getMaxY(); 148 final float verticalDelta = maxY - minY;
|
/frameworks/base/core/java/android/webkit/ |
OverScrollGlow.java | 59 * @param maxY Maximum range for vertical scrolling 61 public void pullGlow(int x, int y, int oldX, int oldY, int maxX, int maxY) { 83 if (maxY > 0 || mHostView.getWebView().getOverScrollMode() == View.OVER_SCROLL_ALWAYS) { 90 } else if (pulledToY > maxY) {
|