Searched defs:get (Results 26 - 50 of 96) sorted by relevance

1234

/packages/apps/VideoEditor/src/com/android/videoeditor/service/
H A DIntentPool.java51 public synchronized Intent get(Context context, Class<?> cls) { method in class:IntentPool
52 final Intent intent = get();
61 public synchronized Intent get() { method in class:IntentPool
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
H A DAsyncResultHolder.java60 public E get(final E defaultValue, final long timeOut) { method in class:AsyncResultHolder
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
H A DAccountTypeWithDataSet.java50 public static AccountTypeWithDataSet get(String accountType, String dataSet) { method in class:AccountTypeWithDataSet
/packages/apps/Gallery/src/com/android/camera/gallery/
H A DLruCache.java65 return entry == null ? null : entry.get();
68 public synchronized V get(K key) { method in class:LruCache
70 V value = mLruMap.get(key);
72 Entry<K, V> entry = mWeakMap.get(key);
73 return entry == null ? null : entry.get();
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
H A DLruCache.java74 return entry == null ? null : entry.get();
77 public synchronized V get(K key) { method in class:LruCache
79 V value = mLruMap.get(key);
81 Entry<K, V> entry = mWeakMap.get(key);
82 return entry == null ? null : entry.get();
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DConfig.java36 public static synchronized AlbumSetPage get(Context context) { method in class:Config.AlbumSetPage
87 public static synchronized AlbumPage get(Context context) { method in class:Config.AlbumPage
112 public static synchronized ManageCachePage get(Context context) { method in class:Config.ManageCachePage
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DPreparePageFadeoutTexture.java38 public synchronized RawTexture get() { method in class:PreparePageFadeoutTexture
75 texture = task.get();
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DObjectCache.java53 public T get() { method in class:ObjectCache
66 * returned by subsequent calls to get()
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/decoder/
H A DUnboundedFifoByteBuffer.java34 * The {@link #remove()} and {@link #get()} operations perform in constant time.
157 public byte get() { method in class:UnboundedFifoByteBuffer
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/
H A DAddressList.java58 public Address get(int index) { method in class:AddressList
61 return addresses.get(index);
73 if (!(get(i) instanceof Mailbox)) {
84 Address addr = get(i);
99 Address addr = get(i);
/packages/inputmethods/LatinIME/tools/dicttool/compat/android/util/
H A DSparseArray.java57 public E get(final int key) { method in class:SparseArray
58 return get(key, null);
61 public E get(final int key, final E valueIfKeyNotFound) { method in class:SparseArray
64 return mValues.get(index);
78 return mKeys.get(index);
82 return mValues.get(index);
/packages/apps/Camera2/src/com/android/camera/data/
H A DLocalDataList.java32 * LinkedList. A linked list in indexOf does a other.equals(get(i)).
53 public LocalData get(int index) { method in class:LocalDataList
54 return mList.get(index);
63 public LocalData get(Uri uri) { method in class:LocalDataList
64 return mUriMap.get(uri);
/packages/apps/Dialer/src/com/android/dialer/util/
H A DExpirableCache.java72 * use the {@link #get(Object)} method instead.
128 mGeneration = mCacheGeneration.get();
138 return mGeneration != mCacheGeneration.get();
169 * If only wants values that are not expired, use {@link #get(Object)} instead.
174 return mCache.get(key);
183 * within the {@link CachedValue} and not call {@link #getPossiblyExpired(Object)} to get the
204 public V get(K key) { method in class:ExpirableCache
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DBytesBufferPool.java74 public synchronized BytesBuffer get() { method in class:BytesBufferPool
/packages/apps/Gallery2/src/com/android/photos/data/
H A DGalleryBitmapPool.java127 public Bitmap get(int width, int height) { method in class:GalleryBitmapPool
132 return pool.get(width, height);
H A DSparseArrayBitmapPool.java143 public synchronized Bitmap get(int width, int height) { method in class:SparseArrayBitmapPool
144 Node cur = mStore.get(width);
188 newNode.nextInBucket = mStore.get(key);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DAllAppsList.java82 public ApplicationInfo get(int index) { method in class:AllAppsList
83 return data.get(index);
105 ApplicationInfo info = data.get(i);
125 final ApplicationInfo applicationInfo = data.get(i);
140 final ResolveInfo info = matches.get(i);
155 final ApplicationInfo applicationInfo = data.get(i);
200 final ApplicationInfo info = apps.get(i);
/packages/apps/Mms/src/com/android/mms/util/
H A DSimpleCache.java71 return ref != null ? ref.get() : null;
100 * See {@link Map#get(Object)}.
102 public V get(Object key) { method in class:SimpleCache
103 return mSoftReferences != null ? unwrap(mSoftReferences.get(key))
104 : mHardReferences.get(key);
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
H A DMockSuggestionProviderCursor.java41 public Object get(int column) { method in class:MockSuggestionProviderCursor
42 return mRows.get(getPosition()).get(column);
57 return mRows.get(getPosition()).getDouble(column);
62 return mRows.get(getPosition()).getFloat(column);
67 return mRows.get(getPosition()).getInt(column);
72 return mRows.get(getPosition()).getLong(column);
77 return mRows.get(getPosition()).getShort(column);
82 return mRows.get(getPosition()).getString(column);
87 return mRows.get(getPositio
107 public Object get(int column) { method in class:MockSuggestionProviderCursor.Row
[all...]
/packages/apps/UnifiedEmail/src/com/android/bitmap/
H A DAltPooledCache.java69 public V get(K key, boolean incrementRefCount) { method in class:AltPooledCache
71 V result = mCache.get(key);
73 result = mNonPooledCache.get(key);
/packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
H A DPackedString.java58 public String get(String tag) { method in class:PackedString
62 return mExploded.get(tag);
155 public String get(String tag) { method in class:PackedString.Builder
156 return mMap.get(tag);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DAccountWithDataSet.java44 public static AccountWithDataSet get(String accountName, String accountType, String dataSet) { method in class:AccountWithDataSet
48 public static AccountWithDataSet get(Account account, String dataSet) { method in class:AccountWithDataSet
H A DHanziToPinyin.java129 public ArrayList<Token> get(final String input) { method in class:HanziToPinyin
/packages/apps/Exchange/src/com/android/exchange/provider/
H A DGalResult.java82 public String get(String field) { method in class:GalResult.GalData
83 return builder.get(field);
/packages/apps/Gallery2/src/com/android/gallery3d/util/
H A DJobLimiter.java90 public synchronized T get() { method in class:JobLimiter.JobWrapper
100 get();

Completed in 633 milliseconds

1234