Searched defs:get (Results 201 - 225 of 274) sorted by relevance

1234567891011

/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DPositionMap.java77 public E get(int key) { method in class:PositionMap
78 return get(key, null);
86 public E get(int key, E valueIfKeyNotFound) { method in class:PositionMap
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DMatrix4f.java67 public float get(int x, int y) { method in class:Matrix4f
233 float rhs_ij = rhs.get(i,j);
234 ri0 += lhs.get(j,0) * rhs_ij;
235 ri1 += lhs.get(j,1) * rhs_ij;
236 ri2 += lhs.get(j,2) * rhs_ij;
237 ri3 += lhs.get(j,3) * rhs_ij;
/frameworks/volley/src/main/java/com/android/volley/toolbox/
H A DDiskBasedCache.java106 public synchronized Entry get(String key) { method in class:DiskBasedCache
107 CacheHeader entry = mEntries.get(key);
180 Entry entry = get(key);
301 CacheHeader oldEntry = mEntries.get(key);
311 CacheHeader entry = mEntries.get(key);
391 // don't bother deleting, it'll get pruned eventually
H A DImageLoader.java36 * The simple way to use this class is to call {@link ImageLoader#get(String, ImageListener)}
137 * @param isImmediate True if this was called during ImageLoader.get() variants.
181 public ImageContainer get(String requestUrl, final ImageListener listener) { method in class:ImageLoader
182 return get(requestUrl, listener, 0, 0);
186 * Equivalent to calling {@link #get(String, ImageListener, int, int, ScaleType)} with
189 public ImageContainer get(String requestUrl, ImageListener imageListener, method in class:ImageLoader
191 return get(requestUrl, imageListener, maxWidth, maxHeight, ScaleType.CENTER_INSIDE);
207 public ImageContainer get(String requestUrl, ImageListener imageListener, method in class:ImageLoader
232 BatchedImageRequest request = mInFlightRequests.get(cacheKey);
353 BatchedImageRequest request = mInFlightRequests.get(mCacheKe
[all...]
/frameworks/av/services/camera/libcameraservice/utils/
H A DClientManager.h286 std::shared_ptr<ClientDescriptor<KEY, VALUE>> get(const KEY& key) const;
538 std::shared_ptr<ClientDescriptor<KEY, VALUE>> ClientManager<KEY, VALUE, LISTENER>::get( function in class:android::resource_policy::ClientManager
/frameworks/base/core/java/android/hardware/camera2/
H A DCameraManager.java47 * <p>You can get an instance of this class by calling
141 CameraManagerGlobal.get().registerAvailabilityCallback(callback, handler);
153 CameraManagerGlobal.get().unregisterAvailabilityCallback(callback);
187 CameraManagerGlobal.get().registerTorchCallback(callback, handler);
199 CameraManagerGlobal.get().unregisterTorchCallback(callback);
231 * otherwise get them from the legacy shim instead.
234 ICameraService cameraService = CameraManagerGlobal.get().getCameraService();
315 ICameraService cameraService = CameraManagerGlobal.get().getCameraService();
380 * <p>Use {@link #getCameraIdList} to get the list of available camera
464 * <p>Use {@link #getCameraIdList} to get th
792 public static CameraManagerGlobal get() { method in class:CameraManager.CameraManagerGlobal
[all...]
/frameworks/base/core/java/android/os/
H A DAsyncTask.java305 postResultIfNotInvoked(get());
319 final boolean wasTaskInvoked = mTaskInvoked.get();
449 return mCancelled.get();
497 public final Result get() throws InterruptedException, ExecutionException { method in class:AsyncTask
498 return mFuture.get();
516 public final Result get(long timeout, TimeUnit unit) throws InterruptedException, method in class:AsyncTask
518 return mFuture.get(timeout, unit);
H A DBaseBundle.java280 public Object get(String key) { method in class:BaseBundle
282 return mMap.get(key);
660 Object o = mMap.get(key);
694 Object o = mMap.get(key);
728 Object o = mMap.get(key);
762 Object o = mMap.get(key);
796 Object o = mMap.get(key);
830 Object o = mMap.get(key);
864 Object o = mMap.get(key);
898 Object o = mMap.get(ke
[all...]
/frameworks/base/libs/hwui/
H A DPathCache.cpp268 PATH_LOGD("PathCache::get/create: name, size, mSize = %d, %d, %d",
313 PathTask* t = static_cast<PathTask*>(task.get());
372 PathTexture* PathCache::get(const SkPath* path, const SkPaint* paint) { function in class:android::uirenderer::PathCache
376 PathTexture* texture = mCache.get(entry);
411 PathTexture* texture = mCache.get(entry);
429 // The conversion into GL texture will happen in get(), when a client
453 PathTexture* texture = get(entry);
475 PathTexture* texture = get(entry);
496 PathTexture* texture = get(entry);
519 PathTexture* texture = get(entr
[all...]
H A DPathCache.h203 PathTexture* get(const SkPath* path, const SkPaint* paint);
249 PathTexture* get(const PathDescription& entry) { function in class:android::uirenderer::PathCache
250 return mCache.get(entry);
279 delete future()->get();
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DDocumentsActivity.java492 SaveFragment.get(fm).setSaveEnabled(cwd != null && cwd.isCreateSupported());
579 final SaveFragment save = SaveFragment.get(fm);
587 final PickFragment pick = PickFragment.get(fm);
620 SaveFragment.get(fm).setReplaceTarget(doc);
661 uris[i] = docs.get(i).derivedUri;
742 public static DocumentsActivity get(Fragment fragment) { method in class:DocumentsActivity
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationData.java190 public Entry get(String key) { method in class:NotificationData
191 return mEntries.get(key);
305 NotificationData.Entry e = mSortedAndFiltered.get(active);
/frameworks/native/opengl/libs/EGL/
H A Degl_display.h85 static egl_display_t* get(EGLDisplay dpy);
226 const egl_display_t* get() const { return mDpy; } function in class:android::egl_display_ptr
227 egl_display_t* get() { return mDpy; } function in class:android::egl_display_ptr
241 return egl_display_ptr(egl_display_t::get(dpy));
247 return egl_display_t::get(dpy);
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A Dcommon.cpp319 get function
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DRecurrenceProcessor.java430 boolean get(Time iterator, int day) method in class:RecurrenceProcessor.DaySet
438 Log.i(TAG, "get called with iterator=" + iterator
719 * you'll get a DateException.
942 if (!days.get(iterator, dayIndex)) {
984 // sometimes events get generated (BYDAY, BYHOUR, etc.) that
1064 // Add freqAmount to freqField until we get another date that we want.
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSimpleSessionDescription.java292 return super.get("a=fmtp:" + format, ' ');
335 return super.get("a=rtpmap:" + type, ' ');
343 return super.get("a=fmtp:" + type, ' ');
402 String address = get("c", '=');
430 String encryption = get("k", '=');
442 String encryption = get("k", '=');
471 String value = get("b=" + type, ':');
501 return get("a=" + name, ':');
571 String line = mLines.get(i);
603 private String get(Strin method in class:SimpleSessionDescription.Fields
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiLogger.java166 pw.print(mLastAlerts.get(i));
173 pw.print(mLastBugReports.get(i));
257 public final E get(int i) { method in class:WifiLogger.LimitedCircularArray
258 return mArray.get(i);
282 LimitedCircularArray<byte[]> ring = mRingBufferData.get(status.name);
377 Log.e(TAG, "Fail to get ring buffer data of: " + element.name);
396 LimitedCircularArray<byte[]> data = mRingBufferData.get(buffer.name);
399 buffers[i] = data.get(i).clone();
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/loaders/
H A DLoaderDicom.java124 Element get(int group, int element) { method in class:LoaderDicom.TagSet
125 return get(tagInt(group, element));
234 mMappedByteBuffer.get(readBuff, 0, (int) (e.mLength));
246 mMappedByteBuffer.get(readBuff, 0, (int) (e.mLength));
255 mMappedByteBuffer.asShortBuffer().get(s);
315 v.mData[count] = (short[]) data.get(0x7fe0, 0x10).mValue;
317 v.mDimx = (Short) data.get(0x28, 0x10).mValue;
318 v.mDimy = (Short) data.get(0x28, 0x11).mValue;
407 int z = fileMap.get(file);
410 short[] slice = (short[]) data.get(
[all...]
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraMetadataNative.java286 * @param other the previous metadata instance which will get pilfered
323 public <T> T get(CameraCharacteristics.Key<T> key) { method in class:CameraMetadataNative
324 return get(key.getNativeKey());
330 public <T> T get(CaptureResult.Key<T> key) { method in class:CameraMetadataNative
331 return get(key.getNativeKey());
337 public <T> T get(CaptureRequest.Key<T> key) { method in class:CameraMetadataNative
338 return get(key.getNativeKey());
347 public <T> T get(Key<T> key) { method in class:CameraMetadataNative
351 GetCommand g = sGetCommandMap.get(key);
384 SetCommand s = sSetCommandMap.get(ke
[all...]
/frameworks/base/core/java/android/provider/
H A DBrowserContract.java522 * @see android.provider.SyncStateContract.Helpers#get
524 public static byte[] get(ContentProviderClient provider, Account account) method in class:BrowserContract.SyncState
526 return SyncStateContract.Helpers.get(provider, CONTENT_URI, account);
530 * @see android.provider.SyncStateContract.Helpers#get
/frameworks/base/core/java/android/view/
H A DKeyCharacterMap.java140 * This bit will be set in the return value of {@link #get(int, int)} if the
146 * Mask the return value from {@link #get(int, int)} with this value to get
267 final int combining = sAccentToCombining.get(accent);
366 public int get(int keyCode, int metaState) { method in class:KeyCharacterMap
370 int map = sCombiningToAccent.get(ch);
495 int combining = sAccentToCombining.get(accent);
503 combined = sDeadKeyCache.get(combination, -1);
521 * {@link KeyCharacterMap#getNumber(int)} and {@link KeyCharacterMap#get(int, int)}.
537 * (the same ones used for {@link #get} an
[all...]
H A DViewConfiguration.java251 * @deprecated Use {@link android.view.ViewConfiguration#get(android.content.Context)} instead.
280 * @see #get(android.content.Context)
363 public static ViewConfiguration get(Context context) { method in class:ViewConfiguration
367 ViewConfiguration configuration = sConfigurations.get(density);
/frameworks/base/core/java/android/widget/
H A DActivityChooserModel.java79 * ActivityChooserModel.get(context, "task_specific_history_file_name.xml");
342 public static ActivityChooserModel get(Context context, String historyFileName) { method in class:ActivityChooserModel
344 ActivityChooserModel dataModel = sDataModelRegistry.get(historyFileName);
426 return mActivities.get(index).resolveInfo;
443 ActivityResolveInfo currentActivity = activities.get(i);
478 ActivityResolveInfo chosenActivity = mActivities.get(index);
529 return mActivities.get(0).resolveInfo;
549 ActivityResolveInfo newDefaultActivity = mActivities.get(index);
550 ActivityResolveInfo oldDefaultActivity = mActivities.get(0);
714 ResolveInfo resolveInfo = resolveInfos.get(
[all...]
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES10Ext.cpp345 get function
/frameworks/base/keystore/java/android/security/
H A DKeyStore.java158 public byte[] get(String key) { method in class:KeyStore
160 return mBinder.get(key);

Completed in 730 milliseconds

1234567891011