Searched refs:getType (Results 1 - 25 of 459) sorted by relevance

1234567891011>>

/frameworks/base/rs/java/android/renderscript/
H A DScriptIntrinsicHistogram.java88 if (ain.getType().getElement().getVectorSize() <
89 mOut.getType().getElement().getVectorSize()) {
94 if (!ain.getType().getElement().isCompatible(Element.U8(mRS)) &&
95 !ain.getType().getElement().isCompatible(Element.U8_2(mRS)) &&
96 !ain.getType().getElement().isCompatible(Element.U8_3(mRS)) &&
97 !ain.getType().getElement().isCompatible(Element.U8_4(mRS))) {
141 if (mOut.getType().getElement() != Element.U32(mRS) &&
142 mOut.getType().getElement() != Element.U32_2(mRS) &&
143 mOut.getType().getElement() != Element.U32_3(mRS) &&
144 mOut.getType()
[all...]
H A DAllocationAdapter.java104 if (!mAdaptedAllocation.getType().hasMipmaps()) {
123 if (!mAdaptedAllocation.getType().hasFaces()) {
146 if (mAdaptedAllocation.getType().getX() <= x) {
149 if (mWindow.getX() == mAdaptedAllocation.getType().getX()) {
152 if ((mWindow.getX() + x) >= mAdaptedAllocation.getType().getX()) {
168 if (mAdaptedAllocation.getType().getY() == 0) {
171 if (mAdaptedAllocation.getType().getY() <= y) {
174 if (mWindow.getY() == mAdaptedAllocation.getType().getY()) {
177 if ((mWindow.getY() + y) >= mAdaptedAllocation.getType().getY()) {
193 if (mAdaptedAllocation.getType()
[all...]
H A DScriptIntrinsicBLAS.java277 int M = A.getType().getY();
278 int N = A.getType().getX();
279 if (!A.getType().getElement().isCompatible(e) ||
280 !X.getType().getElement().isCompatible(e) ||
281 !Y.getType().getElement().isCompatible(e)) {
284 if (X.getType().getY() > 1 || Y.getType().getY() > 1) {
299 if (X.getType().getX() != expectedXDim ||
300 Y.getType().getX() != expectedYDim) {
322 int M = A.getType()
[all...]
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DScriptIntrinsicHistogram.java98 if (ain.getType().getElement().getVectorSize() <
99 mOut.getType().getElement().getVectorSize()) {
104 if (!ain.getType().getElement().isCompatible(Element.U8(mRS)) &&
105 !ain.getType().getElement().isCompatible(Element.U8_2(mRS)) &&
106 !ain.getType().getElement().isCompatible(Element.U8_3(mRS)) &&
107 !ain.getType().getElement().isCompatible(Element.U8_4(mRS))) {
151 if (mOut.getType().getElement() != Element.U32(mRS) &&
152 mOut.getType().getElement() != Element.U32_2(mRS) &&
153 mOut.getType().getElement() != Element.U32_3(mRS) &&
154 mOut.getType()
[all...]
H A DScriptIntrinsicBLAS.java284 int M = A.getType().getY();
285 int N = A.getType().getX();
286 if (!A.getType().getElement().isCompatible(e) ||
287 !X.getType().getElement().isCompatible(e) ||
288 !Y.getType().getElement().isCompatible(e)) {
291 if (X.getType().getY() > 1 || Y.getType().getY() > 1) {
306 if (X.getType().getX() != expectedXDim ||
307 Y.getType().getX() != expectedYDim) {
329 int M = A.getType()
[all...]
/frameworks/rs/cpp/
H A DScriptIntrinsics.cpp49 if (ain->getType()->getElement()->isCompatible(mElement) == false ||
50 aout->getType()->getElement()->isCompatible(mElement) == false) {
57 sp<const Type> t = lut->getType();
83 if (in->getType()->getElement()->isCompatible(mElement) == false ||
84 out->getType()->getElement()->isCompatible(mElement) == false) {
91 if (in->getType()->getElement()->isCompatible(mElement) == false ||
92 out->getType()->getElement()->isCompatible(mElement) == false) {
99 if (in->getType()->getElement()->isCompatible(mElement) == false ||
100 out->getType()->getElement()->isCompatible(mElement) == false) {
107 if (in->getType()
[all...]
/frameworks/base/core/java/android/database/
H A DAbstractWindowedCursor.java93 return mWindow.getType(mPos, columnIndex) == Cursor.FIELD_TYPE_NULL;
97 * @deprecated Use {@link #getType}
101 return getType(columnIndex) == Cursor.FIELD_TYPE_BLOB;
105 * @deprecated Use {@link #getType}
109 return getType(columnIndex) == Cursor.FIELD_TYPE_STRING;
113 * @deprecated Use {@link #getType}
117 return getType(columnIndex) == Cursor.FIELD_TYPE_INTEGER;
121 * @deprecated Use {@link #getType}
125 return getType(columnIndex) == Cursor.FIELD_TYPE_FLOAT;
129 public int getType(in method in class:AbstractWindowedCursor
[all...]
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
H A DFisheye.java78 mInPixelsAllocation.getType().getX(),
79 mInPixelsAllocation.getType().getY(), center_x,
83 mInPixelsAllocation.getType().getX(),
84 mInPixelsAllocation.getType().getY(), center_x,
88 mInPixelsAllocation.getType().getX(),
89 mInPixelsAllocation.getType().getY(), center_x, center_y,
93 mInPixelsAllocation.getType().getX(),
94 mInPixelsAllocation.getType().getY(), center_x, center_y,
H A DBlend.java70 image1 = Allocation.createTyped(mRS, mInPixelsAllocation.getType());
71 image2 = Allocation.createTyped(mRS, mInPixelsAllocation2.getType());
121 image1.copy2DRangeFrom(0, 0, mInPixelsAllocation.getType().getX(), mInPixelsAllocation.getType().getY(), mInPixelsAllocation, 0, 0);
122 image2.copy2DRangeFrom(0, 0, mInPixelsAllocation2.getType().getX(), mInPixelsAllocation2.getType().getY(), mInPixelsAllocation2, 0, 0);
175 mOutPixelsAllocation.copy2DRangeFrom(0, 0, image2.getType().getX(), image2.getType().getY(), image2, 0, 0);
H A DMirror.java37 mWidth = mInPixelsAllocation.getType().getX();
38 mHeight = mInPixelsAllocation.getType().getY();
H A DVignette.java100 mInPixelsAllocation.getType().getX(),
101 mInPixelsAllocation.getType().getY(), center_x,
105 mInPixelsAllocation.getType().getX(),
106 mInPixelsAllocation.getType().getY(), center_x,
110 mInPixelsAllocation.getType().getX(),
111 mInPixelsAllocation.getType().getY(), center_x, center_y,
115 mInPixelsAllocation.getType().getX(),
116 mInPixelsAllocation.getType().getY(), center_x, center_y,
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
H A DFisheye.java80 mInPixelsAllocation.getType().getX(),
81 mInPixelsAllocation.getType().getY(), center_x,
85 mInPixelsAllocation.getType().getX(),
86 mInPixelsAllocation.getType().getY(), center_x,
90 mInPixelsAllocation.getType().getX(),
91 mInPixelsAllocation.getType().getY(), center_x, center_y,
95 mInPixelsAllocation.getType().getX(),
96 mInPixelsAllocation.getType().getY(), center_x, center_y,
H A DBlend.java63 image1 = Allocation.createTyped(mRS, mInPixelsAllocation.getType());
64 image2 = Allocation.createTyped(mRS, mInPixelsAllocation2.getType());
113 image1.copy2DRangeFrom(0, 0, mInPixelsAllocation.getType().getX(), mInPixelsAllocation.getType().getY(), mInPixelsAllocation, 0, 0);
114 image2.copy2DRangeFrom(0, 0, mInPixelsAllocation2.getType().getX(), mInPixelsAllocation2.getType().getY(), mInPixelsAllocation2, 0, 0);
167 mOutPixelsAllocation.copy2DRangeFrom(0, 0, image2.getType().getX(), image2.getType().getY(), image2, 0, 0);
H A DVignette.java102 mInPixelsAllocation.getType().getX(),
103 mInPixelsAllocation.getType().getY(), center_x,
107 mInPixelsAllocation.getType().getX(),
108 mInPixelsAllocation.getType().getY(), center_x,
112 mInPixelsAllocation.getType().getX(),
113 mInPixelsAllocation.getType().getY(), center_x, center_y,
117 mInPixelsAllocation.getType().getX(),
118 mInPixelsAllocation.getType().getY(), center_x, center_y,
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
H A DFisheye.java83 mInPixelsAllocation.getType().getX(),
84 mInPixelsAllocation.getType().getY(), center_x,
88 mInPixelsAllocation.getType().getX(),
89 mInPixelsAllocation.getType().getY(), center_x,
93 mInPixelsAllocation.getType().getX(),
94 mInPixelsAllocation.getType().getY(), center_x, center_y,
98 mInPixelsAllocation.getType().getX(),
99 mInPixelsAllocation.getType().getY(), center_x, center_y,
H A DBlend.java70 image1 = Allocation.createTyped(mRS, mInPixelsAllocation.getType());
71 image2 = Allocation.createTyped(mRS, mInPixelsAllocation2.getType());
120 image1.copy2DRangeFrom(0, 0, mInPixelsAllocation.getType().getX(), mInPixelsAllocation.getType().getY(), mInPixelsAllocation, 0, 0);
121 image2.copy2DRangeFrom(0, 0, mInPixelsAllocation2.getType().getX(), mInPixelsAllocation2.getType().getY(), mInPixelsAllocation2, 0, 0);
174 mOutPixelsAllocation.copy2DRangeFrom(0, 0, image2.getType().getX(), image2.getType().getY(), image2, 0, 0);
H A DVignette.java102 mInPixelsAllocation.getType().getX(),
103 mInPixelsAllocation.getType().getY(), center_x,
107 mInPixelsAllocation.getType().getX(),
108 mInPixelsAllocation.getType().getY(), center_x,
112 mInPixelsAllocation.getType().getX(),
113 mInPixelsAllocation.getType().getY(), center_x, center_y,
117 mInPixelsAllocation.getType().getX(),
118 mInPixelsAllocation.getType().getY(), center_x, center_y,
H A DHistogram.java40 int w = mInPixelsAllocation.getType().getX();
41 int h = mInPixelsAllocation.getType().getY();
73 lo.setX(0, mSums.getType().getY());
/frameworks/av/drm/common/
H A DDrmInfoEvent.cpp33 int DrmInfoEvent::getType() const { function in class:DrmInfoEvent
/frameworks/base/core/java/android/animation/
H A DKeyframes.java39 Class getType(); method in interface:Keyframes
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DSlotFilter.java29 return getFrameManager().getSlot(mSlotName).getType();
/frameworks/av/include/drm/
H A DDrmInfoEvent.h100 int getType() const;
/frameworks/rs/
H A DrsAdapter.h38 uint32_t getDimX() const {return mAllocation->getType()->getLODDimX(mLOD);}
40 const Type * getBaseType() const {return mAllocation->getType();}
70 uint32_t getDimX() const {return mAllocation->getType()->getLODDimX(mLOD);}
71 uint32_t getDimY() const {return mAllocation->getType()->getLODDimY(mLOD);}
72 const Type * getBaseType() const {return mAllocation->getType();}
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/eap/
H A DNonEAPInnerAuth.java61 public NonEAPType getType() { method in class:NonEAPInnerAuth
81 return ((NonEAPInnerAuth) thatObject).getType() == getType();
/frameworks/av/media/mtp/
H A DMtpStorage.h46 int getType() const;

Completed in 7987 milliseconds

1234567891011>>