Home
last modified time | relevance | path

Searched defs:top (Results 1 – 25 of 169) sorted by relevance

1234567

/frameworks/base/libs/hwui/
DSnapshot.cpp110 bool Snapshot::clipRegionOr(float left, float top, float right, float bottom) { in clipRegionOr()
121 bool Snapshot::clipRegionXor(float left, float top, float right, float bottom) { in clipRegionXor()
132 bool Snapshot::clipRegionAnd(float left, float top, float right, float bottom) { in clipRegionAnd()
143 bool Snapshot::clipRegionNand(float left, float top, float right, float bottom) { in clipRegionNand()
154 bool Snapshot::clip(float left, float top, float right, float bottom, SkRegion::Op op) { in clip()
212 void Snapshot::setClip(float left, float top, float right, float bottom) { in setClip()
233 void Snapshot::resetClip(float left, float top, float right, float bottom) { in resetClip()
DPathCache.cpp30 float& left, float& top, float& offset, uint32_t& width, uint32_t& height) { in computePathBounds()
36 float& left, float& top, float& offset, uint32_t& width, uint32_t& height) { in computeBounds()
99 float left, top, offset; in get() local
DOpenGLRenderer.cpp171 int OpenGLRenderer::prepareDirty(float left, float top, float right, float bottom, bool opaque) { in prepareDirty()
420 int OpenGLRenderer::saveLayer(float left, float top, float right, float bottom, in saveLayer()
450 int OpenGLRenderer::saveLayerAlpha(float left, float top, float right, float bottom, in saveLayerAlpha()
512 bool OpenGLRenderer::createLayer(sp<Snapshot> snapshot, float left, float top, in createLayer()
925 int32_t top = rects[0].top; in drawRegionRects() local
940 void OpenGLRenderer::dirtyLayer(const float left, const float top, in dirtyLayer()
951 void OpenGLRenderer::dirtyLayer(const float left, const float top, in dirtyLayer()
1080 bool OpenGLRenderer::quickReject(float left, float top, float right, float bottom) { in quickReject()
1095 bool OpenGLRenderer::clipRect(float left, float top, float right, float bottom, SkRegion::Op op) { in clipRect()
1237 void OpenGLRenderer::setupDrawModelViewTranslate(float left, float top, float right, float bottom, in setupDrawModelViewTranslate()
[all …]
DRect.h34 float top; variable
51 inline Rect(float left, float top, float right, float bottom): in Rect()
87 inline void set(float left, float top, float right, float bottom) { in set()
/frameworks/base/graphics/java/android/graphics/
DInsets.java32 public final int top; field in Insets
36 private Insets(int left, int top, int right, int bottom) { in Insets()
55 public static Insets of(int left, int top, int right, int bottom) { in of()
DRectF.java35 public float top; field in RectF
54 public RectF(float left, float top, float right, float bottom) { in RectF()
190 public void set(float left, float top, float right, float bottom) { in set()
295 public boolean contains(float left, float top, float right, float bottom) { in contains()
337 public boolean intersect(float left, float top, float right, float bottom) { in intersect()
410 public boolean intersects(float left, float top, float right, in intersects()
459 public void union(float left, float top, float right, float bottom) { in union()
DRect.java35 public int top; field in Rect
57 public Rect(int left, int top, int right, int bottom) { in Rect()
243 public void set(int left, int top, int right, int bottom) { in set()
335 public boolean contains(int left, int top, int right, int bottom) { in contains()
376 public boolean intersect(int left, int top, int right, int bottom) { in intersect()
439 public boolean intersects(int left, int top, int right, int bottom) { in intersects()
467 public void union(int left, int top, int right, int bottom) { in union()
DRegion.java69 public Region(int left, int top, int right, int bottom) { in Region()
94 public boolean set(int left, int top, int right, int bottom) { in set()
183 public native boolean quickContains(int left, int top, int right, in quickContains()
200 public native boolean quickReject(int left, int top, int right, int bottom); in quickReject()
259 public boolean op(int left, int top, int right, int bottom, Op op) { in op()
372 int top, int right, int bottom); in nativeSetRect()
379 private static native boolean nativeOp(int native_dst, int left, int top, in nativeOp()
/frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
DRunData.java31 public int left, top, right, bottom; field in RunData.TileData
36 public TileData(int left, int top, int right, int bottom, in TileData()
/frameworks/base/policy/src/com/android/internal/policy/impl/
DRecentApplicationsBackground.java61 protected boolean setFrame(int left, int top, int right, int bottom) { in setFrame()
101 final int top = chld.top - bkg.top; in draw() local
/frameworks/base/core/java/android/view/
DDisplayList.java282 public abstract void setTop(int top); in setTop()
308 public abstract void setLeftTop(int left, int top); in setLeftTop()
318 public abstract void setLeftTopRightBottom(int left, int top, int right, int bottom); in setLeftTopRightBottom()
DGLES20DisplayList.java245 public void setTop(int top) { in setTop()
266 public void setLeftTop(int left, int top) { in setLeftTop()
273 public void setLeftTopRightBottom(int left, int top, int right, int bottom) { in setLeftTopRightBottom()
295 private static native void nSetLeftTopRightBottom(int displayList, int left, int top, in nSetLeftTopRightBottom()
297 private static native void nSetLeftTop(int displayList, int left, int top); in nSetLeftTop()
300 private static native void nSetTop(int displayList, int top); in nSetTop()
DGLES20Canvas.java161 int left, int top, int right, int bottom); in nUpdateRenderLayer()
228 private static native int nPrepareDirty(int renderer, int left, int top, int right, int bottom, in nPrepareDirty()
440 public boolean clipRect(float left, float top, float right, float bottom) { in clipRect()
444 private static native boolean nClipRect(int renderer, float left, float top, in nClipRect()
448 public boolean clipRect(float left, float top, float right, float bottom, Region.Op op) { in clipRect()
453 public boolean clipRect(int left, int top, int right, int bottom) { in clipRect()
457 private static native boolean nClipRect(int renderer, int left, int top, int right, int bottom, in nClipRect()
506 public boolean quickReject(float left, float top, float right, float bottom, EdgeType type) { in quickReject()
510 private static native boolean nQuickReject(int renderer, float left, float top, in nQuickReject()
615 public int saveLayer(float left, float top, float right, float bottom, Paint paint, in saveLayer()
[all …]
/frameworks/support/v4/java/android/support/v4/view/
DPagerTabStrip.java151 public void setPadding(int left, int top, int right, int bottom) { in setPadding()
263 final int top = bottom - mIndicatorHeight; in onDraw() local
280 int top = bottom - mIndicatorHeight; in updateTextPositions() local
/frameworks/native/include/android/
Drect.h32 int32_t top; member
/frameworks/base/core/java/android/text/style/
DLineBackgroundSpan.java27 int top, int baseline, int bottom, in drawBackground()
DLeadingMarginSpan.java66 int top, int baseline, int bottom, in drawLeadingMargin()
139 int top, int baseline, int bottom, in drawLeadingMargin()
DReplacementSpan.java30 int top, int y, int bottom, Paint paint); in draw()
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
DRegion_Delegate.java182 int left, int top, int right, int bottom) { in quickContains()
194 int left, int top, int right, int bottom) { in quickReject()
297 int left, int top, int right, int bottom) { in nativeSetRect()
372 int left, int top, int right, int bottom, int op) { in nativeOp()
/frameworks/rs/
DrsMatrix4x4.cpp272 void Matrix4x4::loadOrtho(float left, float right, float bottom, float top, float near, float far) { in loadOrtho()
282 void Matrix4x4::loadFrustum(float left, float right, float bottom, float top, float near, float far… in loadFrustum()
295 float top = near * tan((float) (fovy * M_PI / 360.0f)); in loadPerspective() local
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DThinPatchesActivity.java79 final int top = (getHeight() - height) / 2; in onDraw() local
DPathDestructionActivity.java59 float left, top, right, bottom; in getRandomPath() local
/frameworks/base/core/java/android/widget/
DCheckedTextView.java185 public void setPadding(int left, int top, int right, int bottom) { in setPadding()
191 public void setPaddingRelative(int start, int top, int end, int bottom) { in setPaddingRelative()
/frameworks/base/opengl/java/android/opengl/
DGLU.java93 float bottom, float top) { in gluOrtho2D()
113 float top = zNear * (float) Math.tan(fovy * (Math.PI / 360.0)); in gluPerspective() local
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DEventHole.java83 View top = this; in onComputeInternalInsets() local

1234567