/frameworks/base/libs/rs/ |
D | rsAdapter.cpp | 51 rsAssert(mAllocation->getType()); in getElement() 53 ptr += mAllocation->getType()->getLODOffset(mLOD, x, mY); in getElement() 59 if (mAllocation.get() && mAllocation.get()->getType()) { in subData() 61 count *= mAllocation.get()->getType()->getElementSizeBytes(); in subData() 70 mAllocation.get()->getType()->getSizeBytes()); in data() 158 rsAssert(mAllocation->getType()); in getElement() 160 ptr += mAllocation->getType()->getLODOffset(mLOD, x, y); in getElement() 168 rsAssert(mAllocation->getType()); in subData() 170 uint32_t eSize = mAllocation.get()->getType()->getElementSizeBytes(); in subData() 185 mAllocation.get()->getType()->getSizeBytes()); in data()
|
D | rsAdapter.h | 40 uint32_t getDimX() const {return mAllocation->getType()->getLODDimX(mLOD);} in getDimX() 42 const Type * getBaseType() const {return mAllocation->getType();} in getBaseType() 72 uint32_t getDimX() const {return mAllocation->getType()->getLODDimX(mLOD);} in getDimX() 73 uint32_t getDimY() const {return mAllocation->getType()->getLODDimY(mLOD);} in getDimY() 74 const Type * getBaseType() const {return mAllocation->getType();} in getBaseType()
|
/frameworks/base/tests/AndroidTests/src/com/android/unit_tests/ |
D | VpnTest.java | 75 assertEquals(VpnType.L2TP, new L2tpProfile().getType()); in testGetType() 76 assertEquals(VpnType.L2TP_IPSEC, new L2tpIpsecProfile().getType()); in testGetType() 78 new L2tpIpsecPskProfile().getType()); in testGetType() 79 assertEquals(VpnType.PPTP, new PptpProfile().getType()); in testGetType() 92 assertEquals(t, m.createVpnProfile(t).getType()); in testGetTypeFromManager()
|
/frameworks/base/media/libdrm/mobile2/src/rights/ |
D | Right.cpp | 57 if ((*it)->getType() == type) in checkPermission() 72 if ((*it)->getType() == type) in getConstraint()
|
D | OperationPermission.cpp | 45 OperationPermission::OPERATION OperationPermission::getType() const in getType() function in OperationPermission
|
/frameworks/base/media/libdrm/mobile2/src/dcf/ |
D | DrmRawContent.cpp | 55 if(DCF_CONTAINER_BOX != conFullBox.getType()) in DrmRawContent() 76 }while(DCF_CONTAINER_BOX == conFullBox.getType()); in DrmRawContent()
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/ |
D | BridgeXmlPullAttributes.java | 108 id = Bridge.getResourceValue(resource.getType(), resource.getName()); in resolveResourceValue() 111 resource.getType(), resource.getName()); in resolveResourceValue()
|
D | ResourceValue.java | 40 public String getType() { in getType() method in ResourceValue
|
/frameworks/base/opengl/java/android/opengl/ |
D | GLUtils.java | 65 public static int getType(Bitmap bitmap) { in getType() method in GLUtils 177 int type = getType(bitmap); in texSubImage2D()
|
/frameworks/base/core/java/android/content/ |
D | ContentProviderClient.java | 53 public String getType(Uri url) throws RemoteException { in getType() method in ContentProviderClient 54 return mContentProvider.getType(url); in getType()
|
/frameworks/base/tools/layoutlib/api/src/com/android/layoutlib/api/ |
D | IResourceValue.java | 27 String getType(); in getType() method
|
/frameworks/base/vpn/java/android/net/vpn/ |
D | VpnProfile.java | 131 public abstract VpnType getType(); in getType() method in VpnProfile 164 parcel.writeString(getType().toString()); in writeToParcel()
|
D | PptpProfile.java | 30 public VpnType getType() { in getType() method in PptpProfile
|
D | L2tpIpsecPskProfile.java | 31 public VpnType getType() { in getType() method in L2tpIpsecPskProfile
|
D | L2tpProfile.java | 32 public VpnType getType() { in getType() method in L2tpProfile
|
/frameworks/base/awt/java/awt/image/ |
D | PackedColorModel.java | 140 if (cs.getType() != ColorSpace.TYPE_RGB) { in PackedColorModel() 193 && cs.getType() == cm.getColorSpace().getType() && hasAlpha == cm.hasAlpha() in equals()
|
/frameworks/base/core/java/android/server/data/ |
D | ThrowableData.java | 87 public String getType() { in getType() method in ThrowableData 113 builder.append(throwableData.getType()) in append()
|
/frameworks/base/opengl/tools/glgen/src/ |
D | JniCodeEmitter.java | 117 boolean isVoid = jfunc.getType().isVoid(); in emitFunctionCall() 123 jfunc.getType() + " _returnValue;"); in emitFunctionCall() 216 CType returnType = cfunc.getType(); in getErrorReturnValue() 419 jfunc.getType() + " " + in emitFunction() 427 jfunc.getType() + " " + in emitFunction() 510 boolean isVoid = jfunc.getType().isVoid(); in emitFunction() 616 out.println(getJniType(jfunc.getType())); in emitJniCode() 619 String rsignature = getJniName(jfunc.getType()); in emitJniCode() 716 CType returnType = cfunc.getType(); in emitJniCode()
|
D | JFunc.java | 41 public JType getType() { in getType() method in JFunc 110 jfunc.setType(JType.convert(cfunc.getType(), false)); in convert()
|
/frameworks/base/media/libdrm/mobile2/include/rights/ |
D | OperationPermission.h | 53 OPERATION getType() const;
|
/frameworks/base/obex/javax/obex/ |
D | Operation.java | 168 String getType(); in getType() method
|
/frameworks/base/core/java/android/hardware/ |
D | Sensor.java | 106 public int getType() { in getType() method in Sensor
|
/frameworks/base/tests/AndroidTests/EnabledTestApp/src/com/android/unit_tests/enabled_app/ |
D | DisabledProvider.java | 39 public String getType(Uri uri) { in getType() method in DisabledProvider
|
D | EnabledProvider.java | 39 public String getType(Uri uri) { in getType() method in EnabledProvider
|
/frameworks/base/test-runner/android/test/ |
D | ActivityTestCase.java | 65 if (testCaseClass.isAssignableFrom(fieldClass) && !field.getType().isPrimitive()) { in scrubClass()
|