Searched refs:yoff (Results 1 - 25 of 31) sorted by relevance

12

/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DAppCompatPopupWindow.java88 public void showAsDropDown(View anchor, int xoff, int yoff) {
91 yoff -= anchor.getHeight();
93 super.showAsDropDown(anchor, xoff, yoff);
97 public void showAsDropDown(View anchor, int xoff, int yoff, int gravity) {
100 yoff -= anchor.getHeight();
102 super.showAsDropDown(anchor, xoff, yoff, gravity);
106 public void update(View anchor, int xoff, int yoff, int width, int height) {
109 yoff -= anchor.getHeight();
111 super.update(anchor, xoff, yoff, width, height);
/frameworks/support/compat/java/android/support/v4/widget/
H A DPopupWindowCompat.java42 public void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff, argument
51 popup.showAsDropDown(anchor, xoff, yoff);
112 public void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff, argument
114 popup.showAsDropDown(anchor, xoff, yoff, gravity);
213 * @param yoff A vertical offset from the anchor in pixels
216 public static void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff, argument
218 IMPL.showAsDropDown(popup, anchor, xoff, yoff, gravity);
/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DAllocation.java1046 * @param yoff
1052 public void setFromFieldPacker(int xoff, int yoff, int zoff, int component_number, FieldPacker fp) {
1060 if(yoff < 0) {
1077 mRS.nAllocationElementData(getIDSafe(), xoff, yoff, zoff, mSelectedLOD,
1427 private void validate2DRange(int xoff, int yoff, int w, int h) { argument
1432 if (xoff < 0 || yoff < 0) {
1438 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) {
1444 void copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, Object array, argument
1447 validate2DRange(xoff, yoff, w, h);
1463 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLO
1494 copy2DRangeFrom(int xoff, int yoff, int w, int h, Object array) argument
1527 copy2DRangeFrom(int xoff, int yoff, int w, int h, byte[] data) argument
1560 copy2DRangeFrom(int xoff, int yoff, int w, int h, short[] data) argument
1593 copy2DRangeFrom(int xoff, int yoff, int w, int h, int[] data) argument
1626 copy2DRangeFrom(int xoff, int yoff, int w, int h, float[] data) argument
1644 copy2DRangeFrom(int xoff, int yoff, int w, int h, Allocation data, int dataXoff, int dataYoff) argument
1663 copy2DRangeFrom(int xoff, int yoff, Bitmap data) argument
1677 validate3DRange(int xoff, int yoff, int zoff, int w, int h, int d) argument
1701 copy3DRangeFromUnchecked(int xoff, int yoff, int zoff, int w, int h, int d, Object array, Element.DataType dt, int arrayLen) argument
1753 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, Object array) argument
1774 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, Allocation data, int dataXoff, int dataYoff, int dataZoff) argument
2286 copy2DRangeToUnchecked(int xoff, int yoff, int w, int h, Object array, Element.DataType dt, int arrayLen) argument
2335 copy2DRangeTo(int xoff, int yoff, int w, int h, Object array) argument
2367 copy2DRangeTo(int xoff, int yoff, int w, int h, byte[] data) argument
2399 copy2DRangeTo(int xoff, int yoff, int w, int h, short[] data) argument
2431 copy2DRangeTo(int xoff, int yoff, int w, int h, int[] data) argument
2463 copy2DRangeTo(int xoff, int yoff, int w, int h, float[] data) argument
[all...]
H A DRenderScript.java475 native void rsnAllocationElementData(long con,long id, int xoff, int yoff, int zoff, int mip, int compIdx, byte[] d, int sizeBytes);
476 synchronized void nAllocationElementData(long id, int xoff, int yoff, int zoff, int mip, int compIdx, byte[] d, int sizeBytes) {
478 rsnAllocationElementData(mContext, id, xoff, yoff, zoff, mip, compIdx, d, sizeBytes);
502 native void rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face, argument
505 synchronized void nAllocationData2D(long id, int xoff, int yoff, int mip, int face, argument
509 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes, dt.mID, mSize, usePadding);
512 native void rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face, Bitmap b); argument
513 synchronized void nAllocationData2D(long id, int xoff, int yoff, int mip, int face, Bitmap b) { argument
515 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, b);
537 native void rsnAllocationData3D(long con, long id, int xoff, int yoff, in argument
540 nAllocationData3D(long id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, Object d, int sizeBytes, Element.DataType dt, int mSize, boolean usePadding) argument
572 rsnAllocationRead2D(long con, long id, int xoff, int yoff, int mip, int face, int w, int h, Object d, int sizeBytes, int dt, int mSize, boolean usePadding) argument
575 nAllocationRead2D(long id, int xoff, int yoff, int mip, int face, int w, int h, Object d, int sizeBytes, Element.DataType dt, int mSize, boolean usePadding) argument
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DAllocation.java1066 * @param yoff
1071 public void setFromFieldPacker(int xoff, int yoff, int zoff, int component_number, FieldPacker fp) { argument
1079 if(yoff < 0) {
1096 mRS.nAllocationElementData(getIDSafe(), xoff, yoff, zoff, mSelectedLOD,
1452 private void validate2DRange(int xoff, int yoff, int w, int h) { argument
1457 if (xoff < 0 || yoff < 0) {
1463 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) {
1469 void copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, Object array, argument
1474 validate2DRange(xoff, yoff, w, h);
1490 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLO
1524 copy2DRangeFrom(int xoff, int yoff, int w, int h, Object array) argument
1562 copy2DRangeFrom(int xoff, int yoff, int w, int h, byte[] data) argument
1595 copy2DRangeFrom(int xoff, int yoff, int w, int h, short[] data) argument
1628 copy2DRangeFrom(int xoff, int yoff, int w, int h, int[] data) argument
1661 copy2DRangeFrom(int xoff, int yoff, int w, int h, float[] data) argument
1679 copy2DRangeFrom(int xoff, int yoff, int w, int h, Allocation data, int dataXoff, int dataYoff) argument
1703 copy2DRangeFrom(int xoff, int yoff, Bitmap data) argument
1722 validate3DRange(int xoff, int yoff, int zoff, int w, int h, int d) argument
1746 copy3DRangeFromUnchecked(int xoff, int yoff, int zoff, int w, int h, int d, Object array, Element.DataType dt, int arrayLen) argument
1803 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, Object array) argument
1829 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, Allocation data, int dataXoff, int dataYoff, int dataZoff) argument
2028 copyToFieldPacker(int xoff, int yoff, int zoff, int component_number, FieldPacker fp) argument
2388 copy2DRangeToUnchecked(int xoff, int yoff, int w, int h, Object array, Element.DataType dt, int arrayLen) argument
2442 copy2DRangeTo(int xoff, int yoff, int w, int h, Object array) argument
2474 copy2DRangeTo(int xoff, int yoff, int w, int h, byte[] data) argument
2506 copy2DRangeTo(int xoff, int yoff, int w, int h, short[] data) argument
2538 copy2DRangeTo(int xoff, int yoff, int w, int h, int[] data) argument
2570 copy2DRangeTo(int xoff, int yoff, int w, int h, float[] data) argument
2585 copy3DRangeToUnchecked(int xoff, int yoff, int zoff, int w, int h, int d, Object array, Element.DataType dt, int arrayLen) argument
2641 copy3DRangeTo(int xoff, int yoff, int zoff, int w, int h, int d, Object array) argument
[all...]
H A DRenderScript.java543 native void rsnAllocationElementData(long con,long id, int xoff, int yoff, int zoff, int mip, int compIdx, byte[] d, int sizeBytes); argument
544 synchronized void nAllocationElementData(long id, int xoff, int yoff, int zoff, int mip, int compIdx, byte[] d, int sizeBytes) { argument
546 rsnAllocationElementData(mContext, id, xoff, yoff, zoff, mip, compIdx, d, sizeBytes);
569 native void rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face, argument
572 synchronized void nAllocationData2D(long id, int xoff, int yoff, int mip, int face, argument
576 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes, dt.mID, mSize, usePadding);
579 native void rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face, Bitmap b); argument
580 synchronized void nAllocationData2D(long id, int xoff, int yoff, int mip, int face, Bitmap b) { argument
582 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, b);
603 native void rsnAllocationData3D(long con, long id, int xoff, int yoff, in argument
606 nAllocationData3D(long id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, Object d, int sizeBytes, Element.DataType dt, int mSize, boolean usePadding) argument
628 rsnAllocationElementRead(long con,long id, int xoff, int yoff, int zoff, int mip, int compIdx, byte[] d, int sizeBytes) argument
630 nAllocationElementRead(long id, int xoff, int yoff, int zoff, int mip, int compIdx, byte[] d, int sizeBytes) argument
636 rsnAllocationRead2D(long con, long id, int xoff, int yoff, int mip, int face, int w, int h, Object d, int sizeBytes, int dt, int mSize, boolean usePadding) argument
639 nAllocationRead2D(long id, int xoff, int yoff, int mip, int face, int w, int h, Object d, int sizeBytes, Element.DataType dt, int mSize, boolean usePadding) argument
646 rsnAllocationRead3D(long con, long id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, Object d, int sizeBytes, int dt, int mSize, boolean usePadding) argument
649 nAllocationRead3D(long id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, Object d, int sizeBytes, Element.DataType dt, int mSize, boolean usePadding) argument
[all...]
/frameworks/native/libs/vr/libdvrcommon/include/private/dvr/
H A Dortho.h18 const T yoff = -(top + bottom) / (top - bottom); local
22 0, b, 0, yoff,
/frameworks/rs/cpp/
H A DAllocation.cpp282 void Allocation::validate2DRange(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h) { argument
286 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) {
292 void Allocation::copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, argument
294 validate2DRange(xoff, yoff, w, h);
300 yoff, mSelectedLOD, mSelectedFace,
306 yoff, mSelectedLOD, mSelectedFace,
312 void Allocation::copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, argument
314 validate2DRange(xoff, yoff, w, h);
315 tryDispatch(mRS, RS::dispatch->AllocationCopy2DRange(mRS->getContext(), getIDSafe(), xoff, yoff,
321 void Allocation::copy2DRangeTo(uint32_t xoff, uint32_t yoff, uint32_ argument
341 copy2DStridedFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void *data, size_t stride) argument
353 copy2DStridedTo(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, void *data, size_t stride) argument
365 validate3DRange(uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t w, uint32_t h, uint32_t d) argument
376 copy3DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t w, uint32_t h, uint32_t d, const void* data) argument
396 copy3DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t w, uint32_t h, uint32_t d, const sp<const Allocation>& data, uint32_t dataXoff, uint32_t dataYoff, uint32_t dataZoff) argument
404 copy3DRangeTo(uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t w, uint32_t h, uint32_t d, void* data) argument
[all...]
/frameworks/rs/rsov/driver/
H A DrsovAllocation.cpp147 uint8_t *GetOffsetPtr(const Allocation *alloc, uint32_t xoff, uint32_t yoff, argument
154 ptr += yoff * alloc->mHal.drvState.lod[lod].stride;
339 uint32_t xoff, uint32_t yoff, uint32_t lod,
350 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face);
352 for (uint32_t line = yoff; line < (yoff + h); line++) {
375 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face);
377 for (uint32_t line = (yoff >> 1); line < ((yoff + h) >> 1); line++) {
391 uint32_t xoff, uint32_t yoff, uint32_
338 rsovAllocationData2D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, const void *data, size_t sizeBytes, size_t stride) argument
390 rsovAllocationData3D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, const void *data, size_t sizeBytes, size_t stride) argument
431 rsovAllocationRead2D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, void *data, size_t sizeBytes, size_t stride) argument
460 rsovAllocationRead3D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, void *data, size_t sizeBytes, size_t stride) argument
[all...]
H A DrsovAllocation.h95 uint32_t xoff, uint32_t yoff, uint32_t lod,
102 uint32_t xoff, uint32_t yoff, uint32_t zoff,
114 uint32_t xoff, uint32_t yoff, uint32_t lod,
121 uint32_t xoff, uint32_t yoff, uint32_t zoff,
/frameworks/rs/tests/java_api/RSTest_CompatLib/src/com/android/rs/test/
H A DUT_alloc_copy.java269 int yoff = random.nextInt(height);
271 int ycount = height - yoff;
281 alloc.copy2DRangeFrom(xoff, yoff, xcount, ycount, inArray);
282 alloc.copy2DRangeTo(xoff, yoff, xcount, ycount, outArray);
304 int yoff = random.nextInt(height);
306 int ycount = height - yoff;
319 alloc.copy2DRangeFrom(xoff, yoff, xcount, ycount, inArray);
320 alloc.copy2DRangeTo(xoff, yoff, xcount, ycount, outArray);
342 int yoff = random.nextInt(height);
344 int ycount = height - yoff;
[all...]
H A DUT_alloc_copyPadded.java917 int yoff = random.nextInt(height);
919 int ycount = height - yoff;
930 alloc.copy2DRangeFrom(xoff, yoff, xcount, ycount, inArray);
931 alloc.copy2DRangeTo(xoff, yoff, xcount, ycount, outArray);
953 int yoff = random.nextInt(height);
955 int ycount = height - yoff;
969 alloc.copy2DRangeFrom(xoff, yoff, xcount, ycount, inArray);
970 alloc.copy2DRangeTo(xoff, yoff, xcount, ycount, outArray);
992 int yoff = random.nextInt(height);
994 int ycount = height - yoff;
[all...]
/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
H A DUT_alloc_copy.java269 int yoff = random.nextInt(height);
271 int ycount = height - yoff;
281 alloc.copy2DRangeFrom(xoff, yoff, xcount, ycount, inArray);
282 alloc.copy2DRangeTo(xoff, yoff, xcount, ycount, outArray);
304 int yoff = random.nextInt(height);
306 int ycount = height - yoff;
319 alloc.copy2DRangeFrom(xoff, yoff, xcount, ycount, inArray);
320 alloc.copy2DRangeTo(xoff, yoff, xcount, ycount, outArray);
342 int yoff = random.nextInt(height);
344 int ycount = height - yoff;
[all...]
H A DUT_alloc_copyPadded.java917 int yoff = random.nextInt(height);
919 int ycount = height - yoff;
930 alloc.copy2DRangeFrom(xoff, yoff, xcount, ycount, inArray);
931 alloc.copy2DRangeTo(xoff, yoff, xcount, ycount, outArray);
953 int yoff = random.nextInt(height);
955 int ycount = height - yoff;
969 alloc.copy2DRangeFrom(xoff, yoff, xcount, ycount, inArray);
970 alloc.copy2DRangeTo(xoff, yoff, xcount, ycount, outArray);
992 int yoff = random.nextInt(height);
994 int ycount = height - yoff;
[all...]
/frameworks/base/core/java/android/view/autofill/
H A DAutofillPopupWindow.java190 public void showAsDropDown(View anchor, int xoff, int yoff, int gravity) { argument
192 Log.v(TAG, "showAsDropDown(): anchor=" + anchor + ", xoff=" + xoff + ", yoff=" + yoff
201 attachToAnchor(anchor, xoff, yoff, gravity);
204 final boolean aboveAnchor = findDropDownPosition(anchor, p, xoff, yoff,
/frameworks/rs/driver/
H A DrsdAllocation.h116 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
121 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
131 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
136 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
H A DrsdAllocation.cpp85 uint32_t xoff, uint32_t yoff, uint32_t zoff,
90 ptr += yoff * alloc->mHal.drvState.lod[lod].stride;
97 uint32_t xoff, uint32_t yoff, uint32_t lod,
109 RSD_CALL_GL(glTexSubImage2D, t, lod, xoff, yoff, w, h, drv->glFormat, drv->glType, ptr);
837 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
849 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face);
857 for (uint32_t line=yoff; line < (yoff+h); line++) {
879 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face);
881 for (uint32_t line=(yoff >>
84 GetOffsetPtr(const android::renderscript::Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, RsAllocationCubemapFace face) argument
96 Update2DTexture(const Context *rsc, const Allocation *alloc, const void *ptr, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h) argument
836 rsdAllocationData2D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, const void *data, size_t sizeBytes, size_t stride) argument
898 rsdAllocationData3D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, const void *data, size_t sizeBytes, size_t stride) argument
949 rsdAllocationRead2D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, void *data, size_t sizeBytes, size_t stride) argument
978 rsdAllocationRead3D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, void *data, size_t sizeBytes, size_t stride) argument
[all...]
/frameworks/rs/
H A DrsAllocation.cpp212 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, argument
214 rsc->mHal.funcs.allocation.data2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes, stride);
218 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, argument
221 rsc->mHal.funcs.allocation.data3D(rsc, this, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stride);
242 void Allocation::read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, argument
258 rsc->mHal.funcs.allocation.read2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes, stride);
261 void Allocation::read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, argument
269 rsc->mHal.funcs.allocation.read3D(rsc, this, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stride);
701 void rsi_Allocation2DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, argument
704 a->data(rsc, xoff, yoff, lo
707 rsi_Allocation3DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, const void *data, size_t sizeBytes, size_t stride) argument
909 rsi_Allocation2DRead(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, void *data, size_t sizeBytes, size_t stride) argument
916 rsi_Allocation3DRead(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, void *data, size_t sizeBytes, size_t stride) argument
[all...]
H A DrsAllocation.h133 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
135 void data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
139 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
141 void read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
H A DrsScriptC_Lib.cpp248 const Allocation *alloc, uint32_t xoff, uint32_t yoff,
281 // Check both in case yoff + h overflows
282 if (yoff >= allocDimY || (yoff + h) > allocDimY) {
285 ss << "[" << yoff << ", " << yoff + h << ") outside ";
247 validateCopyArgs(Context *rsc, bool isSrc, uint32_t expectDim, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t lod, uint32_t w, uint32_t h) argument
H A Drs.spec206 param uint32_t yoff
218 param uint32_t yoff
258 param uint32_t yoff
270 param uint32_t yoff
H A DrsApiStubs.h74 extern "C" void rsAllocation2DData (RsContext rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, const void * data, size_t data_length, size_t stride);
75 extern "C" void rsAllocation3DData (RsContext rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, const void * data, size_t data_length, size_t stride);
80 extern "C" void rsAllocation2DRead (RsContext rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, void * data, size_t data_length, size_t stride);
81 extern "C" void rsAllocation3DRead (RsContext rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, void * data, size_t data_length, size_t stride);
H A Drs_hal.h248 uint32_t xoff, uint32_t yoff, uint32_t lod,
252 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
260 uint32_t xoff, uint32_t yoff, uint32_t lod,
264 uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod,
H A DrsApiStubs.cpp420 extern "C" void rsAllocation2DData (RsContext ctxWrapper, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, argument
424 RS_DISPATCH(ctxWrapper, Allocation2DData, va, xoff, yoff, lod, face, w, h, data, data_length, stride);
427 extern "C" void rsAllocation3DData (RsContext ctxWrapper, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t zoff, argument
431 RS_DISPATCH(ctxWrapper, Allocation3DData, va, xoff, yoff, zoff, lod, w, h, d, data, data_length, stride);
456 extern "C" void rsAllocation2DRead (RsContext ctxWrapper, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, argument
460 RS_DISPATCH(ctxWrapper, Allocation2DRead, va, xoff, yoff, lod, face, w, h, data, data_length, stride);
463 extern "C" void rsAllocation3DRead (RsContext ctxWrapper, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t zoff, argument
467 RS_DISPATCH(ctxWrapper, Allocation3DRead, va, xoff, yoff, zoff, lod, w, h, d, data, data_length, stride);
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java1235 * @param yoff A vertical offset from the anchor in pixels
1239 public void showAsDropDown(View anchor, int xoff, int yoff) { argument
1240 showAsDropDown(anchor, xoff, yoff, DEFAULT_ANCHORED_GRAVITY);
1258 * @param yoff A vertical offset from the anchor in pixels
1263 public void showAsDropDown(View anchor, int xoff, int yoff, int gravity) { argument
1270 attachToAnchor(anchor, xoff, yoff, gravity);
1279 final boolean aboveAnchor = findDropDownPosition(anchor, p, xoff, yoff,
2225 * @param yoff y offset from the view's bottom edge
2229 public void update(View anchor, int xoff, int yoff, int width, int height) { argument
2230 update(anchor, true, xoff, yoff, widt
2233 update(View anchor, boolean updateLocation, int xoff, int yoff, int width, int height) argument
2315 attachToAnchor(View anchor, int xoff, int yoff, int gravity) argument
[all...]

Completed in 2000 milliseconds

12