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

12345

/frameworks/base/libs/rs/
H A DrsAdapter.h40 uint32_t getDimX() const {return mAllocation->getType()->getLODDimX(mLOD);}
42 const Type * getBaseType() const {return mAllocation->getType();}
72 uint32_t getDimX() const {return mAllocation->getType()->getLODDimX(mLOD);}
73 uint32_t getDimY() const {return mAllocation->getType()->getLODDimY(mLOD);}
74 const Type * getBaseType() const {return mAllocation->getType();}
H A DrsAdapter.cpp51 rsAssert(mAllocation->getType());
53 ptr += mAllocation->getType()->getLODOffset(mLOD, x, mY);
59 if (mAllocation.get() && mAllocation.get()->getType()) {
61 count *= mAllocation.get()->getType()->getElementSizeBytes();
70 mAllocation.get()->getType()->getSizeBytes());
158 rsAssert(mAllocation->getType());
160 ptr += mAllocation->getType()->getLODOffset(mLOD, x, y);
168 rsAssert(mAllocation->getType());
170 uint32_t eSize = mAllocation.get()->getType()->getElementSizeBytes();
185 mAllocation.get()->getType()
[all...]
H A DrsElement.h53 RsDataType getType() const {return mComponent.getType();} function in class:android::renderscript::Element
H A DrsComponent.h43 RsDataType getType() const {return mType;} function in class:android::renderscript::Component
/frameworks/base/obex/javax/obex/
H A DOperation.java55 * <code>getType()</code> will return the value specified in the OBEX Type
168 String getType(); method in interface:Operation
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DUUSInfo.java85 public int getType() { method in class:UUSInfo
/frameworks/base/vpn/java/android/net/vpn/
H A DL2tpIpsecPskProfile.java31 public VpnType getType() { method in class:L2tpIpsecPskProfile
H A DPptpProfile.java30 public VpnType getType() { method in class:PptpProfile
H A DL2tpIpsecProfile.java32 public VpnType getType() { method in class:L2tpIpsecProfile
H A DL2tpProfile.java32 public VpnType getType() { method in class:L2tpProfile
H A DVpnProfile.java131 public abstract VpnType getType(); method in class:VpnProfile
164 parcel.writeString(getType().toString());
/frameworks/base/vpn/tests/vpntests/src/android/net/vpn/
H A DVpnTest.java75 assertEquals(VpnType.L2TP, new L2tpProfile().getType());
76 assertEquals(VpnType.L2TP_IPSEC, new L2tpIpsecProfile().getType());
78 new L2tpIpsecPskProfile().getType());
79 assertEquals(VpnType.PPTP, new PptpProfile().getType());
92 assertEquals(t, m.createVpnProfile(t).getType());
/frameworks/base/core/java/android/hardware/
H A DSensor.java140 public int getType() { method in class:Sensor
/frameworks/base/core/tests/coretests/EnabledTestApp/src/com/android/frameworks/coretests/enabled_app/
H A DDisabledProvider.java39 public String getType(Uri uri) { method in class:DisabledProvider
H A DEnabledProvider.java39 public String getType(Uri uri) { method in class:EnabledProvider
/frameworks/base/test-runner/src/android/test/
H A DActivityTestCase.java65 if (testCaseClass.isAssignableFrom(fieldClass) && !field.getType().isPrimitive()) {
/frameworks/base/core/java/android/content/
H A DContentProviderClient.java52 /** see {@link ContentProvider#getType} */
53 public String getType(Uri url) throws RemoteException { method in class:ContentProviderClient
54 return mContentProvider.getType(url);
/frameworks/base/opengl/java/android/opengl/
H A DGLUtils.java65 public static int getType(Bitmap bitmap) { method in class:GLUtils
67 throw new NullPointerException("getType can't be used with a null Bitmap");
177 int type = getType(bitmap);
/frameworks/base/core/java/android/nfc/tech/
H A DMifareUltralight.java122 public int getType() { method in class:MifareUltralight
/frameworks/base/core/java/com/google/android/util/
H A DSmileyParser.java70 if (token.getType() == AbstractMessageParser.Token.Type.SMILEY) {
/frameworks/base/include/gui/
H A DSensor.h61 int32_t getType() const;
/frameworks/base/libs/gui/
H A DSensorManager.cpp73 if (mSensorList[i]->getType() == type)
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DKMLFormatter.java46 if (entry.getType() == EntryType.LOCATION_TYPE) {
/frameworks/base/opengl/tools/glgen/src/
H A DJFunc.java56 public JType getType() { method in class:JFunc
125 jfunc.setType(JType.convert(cfunc.getType(), false));
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
H A DFakeExpandableAdapter.java165 return getChildItem(groupPosition, childPosition).getType();
173 return mItems.get(groupPosition).getType();

Completed in 1126 milliseconds

12345