Searched defs:getType (Results 51 - 75 of 100) sorted by relevance

1234

/frameworks/base/core/java/android/content/
H A DSearchRecentSuggestionsProvider.java249 public String getType(Uri uri) { method in class:SearchRecentSuggestionsProvider
/frameworks/base/core/java/android/database/
H A DCursor.java34 * Values returned by {@link #getType(int)}.
37 /** Value returned by {@link #getType(int)} if the specified column is null */
40 /** Value returned by {@link #getType(int)} if the specified column type is integer */
43 /** Value returned by {@link #getType(int)} if the specified column type is float */
46 /** Value returned by {@link #getType(int)} if the specified column type is string */
49 /** Value returned by {@link #getType(int)} if the specified column type is blob */
332 int getType(int columnIndex); method in interface:Cursor
H A DCursorWrapper.java145 public int getType(int columnIndex) { method in class:CursorWrapper
146 return mCursor.getType(columnIndex);
/frameworks/base/core/java/android/hardware/
H A DSensor.java233 if (sensor.getType() == Sensor.TYPE_ROTATION_VECTOR &&
273 public int getType() { method in class:Sensor
/frameworks/base/core/java/android/net/
H A DNetworkInfo.java178 public int getType() { method in class:NetworkInfo
/frameworks/base/core/java/android/nfc/tech/
H A DMifareClassic.java212 public int getType() { method in class:MifareClassic
H A DNdef.java58 * where possible, but it is not mandatory. {@link #getType} returns a String
201 public String getType() { method in class:Ndef
/frameworks/base/core/java/android/view/
H A DDisplay.java282 public int getType() { method in class:Display
/frameworks/base/core/tests/coretests/src/android/content/
H A DContentProviderOperationTest.java534 public String getType(Uri uri) { method in class:ContentProviderOperationTest.TestContentProvider
/frameworks/base/obex/javax/obex/
H A DClientOperation.java194 public String getType() { method in class:ClientOperation
H A DServerOperation.java572 public String getType() { method in class:ServerOperation
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContentProvider.java75 public String getType(Uri url) throws RemoteException { method in class:MockContentProvider.InversionIContentProvider
76 return MockContentProvider.this.getType(url);
182 public String getType(Uri uri) { method in class:MockContentProvider
H A DMockCursor.java195 public int getType(int columnIndex) { method in class:MockCursor
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DAbstractResult.java235 public abstract TestType getType(); method in class:AbstractResult
H A DTextResult.java222 public TestType getType() { method in class:TextResult
249 bundle.putString("type", getType().name());
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DTrackerEntry.java119 EntryType getType() { method in class:TrackerEntry
214 if (entry.getType() == EntryType.LOCATION_TYPE) {
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
H A DBaseAdapter.java81 int getType() { method in class:BaseAdapter.AdapterItem
/frameworks/native/services/surfaceflinger/
H A DTransform.cpp339 uint32_t Transform::getType() const { function in class:android::Transform
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccProvider.java95 public String getType(Uri url) { method in class:IccProvider
/frameworks/rs/
H A DrsAllocation.h91 const Type * getType() const {return mHal.state.type;} function in class:android::renderscript::Allocation
/frameworks/support/v4/java/android/support/v4/content/
H A DFileProvider.java166 public String getType(Uri uri) { method in class:FileProvider
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DAllocationThunker.java51 public Type getType() { method in class:AllocationThunker
52 return TypeThunker.find(mN.getType());
56 return getType().getElement();
243 TypeThunker tt = new TypeThunker(rs, a.getType());
255 TypeThunker tt = new TypeThunker(rs, a.getType());
273 TypeThunker tt = new TypeThunker(rs, a.getType());
287 TypeThunker tt = new TypeThunker(rs, a.getType());
298 TypeThunker tt = new TypeThunker(rs, a.getType());
308 TypeThunker tt = new TypeThunker(rs, a.getType());
/frameworks/base/core/java/android/nfc/
H A DNdefRecord.java580 public byte[] getType() { method in class:NdefRecord
/frameworks/base/graphics/java/android/renderscript/
H A DScript.java331 public Type getType() { method in class:Script.FieldBase
332 return mAllocation.getType();
/frameworks/base/libs/hwui/
H A DMatrix.cpp75 uint32_t Matrix4::getType() const { function in class:android::uirenderer::Matrix4
118 return getType() & sGeometryMask;
122 return getType() & kTypeRectToRect;
126 return getType() & (kTypeScale | kTypeAffine | kTypePerspective);
142 return getType() & kTypePerspective;
152 mType = v.getType();
173 // However, SkMatrix::getType() does not return the flag
176 mType = v.getType();
466 ALOGD("Matrix4[simple=%d, type=0x%x", isSimple(), getType());

Completed in 668 milliseconds

1234