Searched defs:get (Results 1 - 25 of 96) sorted by path

1234

/packages/apps/Browser/src/com/android/browser/search/
H A DSearchEngines.java48 public static SearchEngine get(Context context, String name) { method in class:SearchEngines
/packages/apps/Camera/src/com/android/camera/
H A DComboPreferences.java62 public static ComboPreferences get(Context context) { method in class:ComboPreferences
64 return sMap.get(context);
80 Object v = m.get(key);
H A DPreferenceGroup.java44 public CameraPreference get(int index) { method in class:PreferenceGroup
45 return list.get(index);
H A DRecordLocationPreference.java43 return get(getSharedPreferences(), mResolver) ? VALUE_ON : VALUE_OFF;
46 public static boolean get( method in class:RecordLocationPreference
/packages/apps/Camera2/src/com/android/camera/
H A DComboPreferences.java65 public static ComboPreferences get(Context context) { method in class:ComboPreferences
67 return sMap.get(context);
83 Object v = m.get(key);
H A DPreferenceGroup.java44 public CameraPreference get(int index) { method in class:PreferenceGroup
45 return list.get(index);
H A DRecordLocationPreference.java43 return get(getSharedPreferences(), mResolver) ? VALUE_ON : VALUE_OFF;
46 public static boolean get( method in class:RecordLocationPreference
/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/Contacts/tests/src/com/android/contacts/tests/allintents/
H A DAllIntentsActivity.java129 public static ContactsIntent get(int ordinal) { method in class:AllIntentsActivity.ContactsIntent
145 switch (ContactsIntent.get(position)) {
342 final String lookupKey = lookupUri.getPathSegments().get(2);
417 final String lookupKey = lookupUri.getPathSegments().get(2);
631 switch (ContactsIntent.get(tag)) {
/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/ContactsCommon/src/com/android/contacts/common/vcard/
H A DProcessorBase.java31 * {@link #get()} and {@link #get(long, TimeUnit)}, which are form {@link Future}, aren't
64 public final Object get() { method in class:ProcessorBase
72 public final Object get(long timeout, TimeUnit unit) { method in class:ProcessorBase
/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/Dialer/src/com/android/dialer/voicemail/
H A DVoicemailPlaybackFragment.java173 public final Activity get() { method in class:VoicemailPlaybackFragment.ActivityReference
212 Activity activity = mActivityReference.get();
220 Activity activity = mActivityReference.get();
275 Activity activity = mActivityReference.get();
284 Activity activity = mActivityReference.get();
408 Activity activity = mActivityReference.get();
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
H A DEmailAsyncTask.java257 * @see AsyncTask#get
259 public final Result get() throws InterruptedException, ExecutionException { method in class:EmailAsyncTask
260 return mInnerTask.get();
H A DUtility.java154 // In theory, we can't get an illegal value here, since the field is monitored for valid
379 buffer.get(bytes);
599 T get(Cursor cursor, int column); method in interface:Utility.CursorGetter
604 public Long get(Cursor cursor, int column) {
611 public Integer get(Cursor cursor, int column) {
618 public String get(Cursor cursor, int column) {
625 public byte[] get(Cursor cursor, int column) {
659 return getter.get(c, column);
922 // Collection doesn't have get(i). (Iterable doesn't have size())
1018 * Use {@link #get} t
1057 public static Cursor get(Cursor original) { method in class:Utility.CloseTraceCursorWrapper
[all...]
/packages/apps/Email/src/com/android/email/provider/
H A DContentCache.java50 * To (try to) get a cursor from a cache:
131 Integer refCount = mMap.get(object);
147 Integer refCount = mMap.get(object);
160 Integer refCount = mMap.get(object);
311 if ((count == 0) && mCache.mLruCache.get(mId) != (mCursor)) {
459 Cursor get(String id) { method in class:ContentCache
460 return mLruCache.get(id);
497 Cursor existingCursor = get(id);
529 Cursor c = get(id);
544 Cursor c = get(i
[all...]
/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/Exchange/tests/src/com/android/exchange/utility/
H A DCalendarUtilitiesTests.java173 // Make sure non-DST TZ's get the proper offset and DST status otherwise
223 assertEquals(cal.get(Calendar.YEAR), 2010);
224 assertEquals(cal.get(Calendar.MONTH), 1); // 0 based
225 assertEquals(cal.get(Calendar.DAY_OF_MONTH), 23);
226 assertEquals(cal.get(Calendar.HOUR_OF_DAY), 16);
227 assertEquals(cal.get(Calendar.MINUTE), 16);
228 assertEquals(cal.get(Calendar.SECOND), 17);
238 assertEquals(cal.get(Calendar.YEAR), 2010);
239 assertEquals(cal.get(Calendar.MONTH), 1); // 0 based
240 assertEquals(cal.get(Calenda
776 String get(String field) { method in class:CalendarUtilitiesTests.BlockHash
[all...]
/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/gallerycommon/src/com/android/gallery3d/util/
H A DFuture.java24 // value will be provided to get(). The implementation may choose to return
27 // - get() does not throw exceptions.
33 public T get(); method in interface:Future
H A DThreadPool.java174 public synchronized T get() { method in class:ThreadPool.Worker
188 get();
/packages/apps/Gallery2/src/com/android/gallery3d/anim/
H A DFloatAnimation.java37 public float get() { method in class:FloatAnimation
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DAlbumDataLoader.java121 public MediaItem get(int index) { method in class:AlbumDataLoader
123 return mSource.getMediaItem(index, 1).get(0);
227 return task.get();
309 MediaItem updateItem = items.get(i - info.reloadStart);
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

Completed in 281 milliseconds

1234