Searched defs:getType (Results 1 - 25 of 145) sorted by path

123456

/frameworks/av/drm/common/
H A DDrmInfoEvent.cpp33 int DrmInfoEvent::getType() const { function in class:DrmInfoEvent
/frameworks/av/media/mtp/
H A DMtpStorage.cpp52 int MtpStorage::getType() const { function in class:android::MtpStorage
/frameworks/base/core/java/android/animation/
H A DFloatKeyframeSet.java141 public Class getType() { method in class:FloatKeyframeSet
H A DIntKeyframeSet.java140 public Class getType() { method in class:IntKeyframeSet
H A DKeyframe.java252 public Class getType() { method in class:Keyframe
H A DKeyframeSet.java176 public Class getType() { method in class:KeyframeSet
177 return mFirstKeyframe.getType();
H A DKeyframes.java40 Class getType(); method in interface:Keyframes
H A DPathKeyframes.java128 public Class getType() { method in class:PathKeyframes
236 public Class getType() { method in class:PathKeyframes.IntKeyframesBase
249 public Class getType() { method in class:PathKeyframes.FloatKeyframesBase
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothDevice.java709 public int getType() { method in class:BluetoothDevice
H A DBluetoothGattService.java224 public int getType() { method in class:BluetoothGattService
/frameworks/base/core/java/android/bluetooth/le/
H A DResultStorageDescriptor.java34 public int getType() { method in class:ResultStorageDescriptor
/frameworks/base/core/java/android/content/
H A DContentProvider.java72 * <li>{@link #getType} which returns the MIME type of data in the content provider</li>
220 public String getType(Uri uri) { method in class:ContentProvider.Transport
223 return ContentProvider.this.getType(uri);
635 * {@link #getType(Uri)} or {@link #getStreamTypes(Uri, String)} requests.
987 public abstract String getType(Uri uri); method in class:ContentProvider
1164 * <p class="note">For use in Intents, you will want to implement {@link #getType}
1191 * @see #getType(android.net.Uri)
1227 * <p class="note">For use in Intents, you will want to implement {@link #getType}
1261 * @see #getType(android.net.Uri)
1292 * <p class="note">For use in Intents, you will want to implement {@link #getType}
[all...]
H A DContentProviderClient.java140 /** See {@link ContentProvider#getType ContentProvider.getType} */
141 public String getType(Uri url) throws RemoteException { method in class:ContentProviderClient
144 return mContentProvider.getType(url);
H A DContentProviderNative.java149 String type = getType(url);
443 public String getType(Uri url) throws RemoteException method in class:ContentProviderProxy
H A DContentProviderOperation.java207 public int getType() { method in class:ContentProviderOperation
H A DContentResolver.java322 public final String getType(Uri url) { method in class:ContentResolver
327 return provider.getType(url);
360 * not necessarily a superset of the type returned by {@link #getType} --
H A DIContentProvider.java40 public String getType(Uri url) throws RemoteException; method in interface:IContentProvider
H A DIntent.java679 * <p>Input: {@link #getType} is the desired MIME type of the item to create or edit.
927 if (target.getType() != null) {
928 mimeTypes = new String[] { target.getType() };
985 * Input: {@link #getType} is the desired MIME type to retrieve. Note
1059 * Input: {@link #getType} is the MIME type of the data being sent.
1091 * Input: {@link #getType} is the MIME type of the data being sent.
4744 public String getType() { method in class:Intent
4756 * @see #getType
4774 * @see #getType
4783 return resolver.getType(mDat
[all...]
H A DRestrictionEntry.java183 public int getType() { method in class:RestrictionEntry
H A DSearchRecentSuggestionsProvider.java249 public String getType(Uri uri) { method in class:SearchRecentSuggestionsProvider
/frameworks/base/core/java/android/content/res/
H A DTypedArray.java799 public int getType(int index) { method in class:TypedArray
/frameworks/base/core/java/android/database/
H A DAbstractCursor.java91 public int getType(int column) { method in class:AbstractCursor
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...]
H A DCursor.java37 * Values returned by {@link #getType(int)}.
40 /** Value returned by {@link #getType(int)} if the specified column is null */
43 /** Value returned by {@link #getType(int)} if the specified column type is integer */
46 /** Value returned by {@link #getType(int)} if the specified column type is float */
49 /** Value returned by {@link #getType(int)} if the specified column type is string */
52 /** Value returned by {@link #getType(int)} if the specified column type is blob */
335 int getType(int columnIndex); method in interface:Cursor
H A DCursorWindow.java286 * @deprecated Use {@link #getType(int, int)} instead.
290 return getType(row, column) == Cursor.FIELD_TYPE_NULL;
301 * @deprecated Use {@link #getType(int, int)} instead.
305 int type = getType(row, column);
316 * @deprecated Use {@link #getType(int, int)} instead.
320 return getType(row, column) == Cursor.FIELD_TYPE_INTEGER;
330 * @deprecated Use {@link #getType(int, int)} instead.
334 return getType(row, column) == Cursor.FIELD_TYPE_FLOAT;
345 * @deprecated Use {@link #getType(int, int)} instead.
349 int type = getType(ro
370 public int getType(int row, int column) { method in class:CursorWindow
[all...]

Completed in 3179 milliseconds

123456