Searched defs:get (Results 301 - 325 of 416) sorted by relevance

<<11121314151617

/frameworks/native/opengl/libs/EGL/
H A Degl_display.h74 static egl_display_t* get(EGLDisplay dpy);
160 const egl_display_t* get() const { return mDpy; } function in class:android::egl_display_ptr
161 egl_display_t* get() { return mDpy; } function in class:android::egl_display_ptr
175 return egl_display_ptr(egl_display_t::get(dpy));
181 return egl_display_t::get(dpy);
H A Degl_object.cpp50 bool egl_object_t::get(egl_display_t const* display, egl_object_t* object) { function in class:android::egl_object_t
H A Degl_object.h59 static bool get(egl_display_t const* display, egl_object_t* object);
72 if (o && egl_object_t::get(display, native)) {
76 inline N* get() { function in class:android::egl_object_t::LocalRef
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
H A DTimeZoneData.java94 public TimeZoneInfo get(int position) { method in class:TimeZoneData
95 return mTimeZones.get(position);
204 ArrayList<Integer> group = mTimeZonesByCountry.get(tz.mCountry);
276 TimeZoneInfo tzi = mTimeZonesById.get(ids[i]);
298 ArrayList<Integer> group = mTimeZonesByOffsets.get(index);
311 return mTimeZonesByOffsets.get(index);
406 String country = mCountryCodeToNameMap.get(countryCode);
412 // TODO Don't like this here but need to get the country of
433 TimeZoneInfo tzInfoToOverride = mTimeZones.get(tzToOverride);
/frameworks/rs/support/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/support/app-toolkit/common/src/main/java/androidx/arch/core/internal/
H A DSafeIterableMap.java44 protected Entry<K, V> get(K k) { method in class:SafeIterableMap
65 Entry<K, V> entry = get(key);
97 Entry<K, V> toRemove = get(key);
/frameworks/support/collection/src/main/java/androidx/collection/
H A DSimpleArrayMap.java357 public V get(Object key) { method in class:SimpleArrayMap
600 Object theirs = map.get(key);
625 Object theirs = map.get(key);
/frameworks/support/compat/src/main/java/androidx/core/os/
H A DLocaleListHelper.java61 Locale get(int index) { method in class:LocaleListHelper
510 && defaultLocale.equals(sDefaultLocaleList.get(0))) {
571 sLastDefaultLocale = locales.get(localeIndex);
/frameworks/support/customview/src/main/java/androidx/customview/widget/
H A DFocusStrategy.java43 sortedFocusables.add(collectionAdapter.get(focusables, i));
67 return focusables.get(position);
69 return focusables.get(0);
82 return focusables.get(position);
84 return focusables.get(count - 1);
170 final T focusable = collectionAdapter.get(focusables, i);
175 // get focus bounds of other view
450 V get(T collection, int index); method in interface:FocusStrategy.CollectionAdapter
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
H A DObjectAdapter.java106 mObservers.get(i).onChanged();
112 mObservers.get(i).onItemRangeChanged(positionStart, itemCount);
118 mObservers.get(i).onItemRangeChanged(positionStart, itemCount, payload);
124 mObservers.get(i).onItemRangeInserted(positionStart, itemCount);
130 mObservers.get(i).onItemRangeRemoved(positionStart, itemCount);
136 mObservers.get(i).onItemMoved(positionStart, toPosition);
337 public abstract Object get(int position); method in class:ObjectAdapter
H A DParallax.java132 public final Integer get(Parallax object) { method in class:Parallax.IntProperty
149 * Fast version of get() method that returns a primitive int value of the Property.
285 public final Float get(Parallax object) { method in class:Parallax.FloatProperty
302 * Fast version of get() method that returns a primitive int value of the Property.
499 i, mProperties.get(i).getName(),
500 i - 1, mProperties.get(i - 1).getName()));
504 i - 1, mProperties.get(i - 1).getName(),
505 i, mProperties.get(i).getName()));
521 i, mProperties.get(i).getName(),
522 i - 1, mProperties.get(
[all...]
/frameworks/support/loader/src/main/java/androidx/loader/content/
H A DModernAsyncTask.java155 final Result result = get();
174 final boolean wasTaskInvoked = mTaskInvoked.get();
297 return mCancelled.get();
345 public final Result get() throws InterruptedException, ExecutionException { method in class:ModernAsyncTask
346 return mFuture.get();
364 public final Result get(long timeout, TimeUnit unit) throws InterruptedException, method in class:ModernAsyncTask
366 return mFuture.get(timeout, unit);
/frameworks/support/paging/common/src/main/java/androidx/paging/
H A DPagedStorage.java119 public T get(int i) { method in class:PagedStorage
143 int pageSize = mPages.get(localPageIndex).size();
152 List<T> page = mPages.get(localPageIndex);
157 return page.get(pageInternalIndex);
212 List page = mPages.get(i);
224 List page = mPages.get(i);
238 return mPages.get(0).get(0);
244 List<T> page = mPages.get(mPages.size() - 1);
245 return page.get(pag
[all...]
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DChildHelper.java34 * methods like get getUnfilteredChildCount or getUnfilteredChildAt.
123 while (mBucket.get(offset)) { // ensure this offset is not hidden
190 mCallback.onLeftHiddenState(mHiddenViews.get(i));
208 final View view = mHiddenViews.get(i);
301 if (mBucket.get(index)) {
303 throw new IllegalArgumentException("cannot get index of a hidden child");
332 if (DEBUG && mBucket.get(offset)) {
354 if (!mBucket.get(offset)) {
380 if (mBucket.get(index)) {
431 boolean get(in method in class:ChildHelper.Bucket
[all...]
/frameworks/base/core/java/android/hardware/camera2/
H A DCameraManager.java104 return CameraManagerGlobal.get().getCameraIdList();
136 CameraManagerGlobal.get().registerAvailabilityCallback(callback,
158 CameraManagerGlobal.get().registerAvailabilityCallback(callback, executor);
170 CameraManagerGlobal.get().unregisterAvailabilityCallback(callback);
196 CameraManagerGlobal.get().registerTorchCallback(callback,
218 CameraManagerGlobal.get().registerTorchCallback(callback, executor);
230 CameraManagerGlobal.get().unregisterTorchCallback(callback);
257 * otherwise get them from the legacy shim instead.
259 ICameraService cameraService = CameraManagerGlobal.get().getCameraService();
338 ICameraService cameraService = CameraManagerGlobal.get()
831 public static CameraManagerGlobal get() { method in class:CameraManager.CameraManagerGlobal
[all...]
/frameworks/base/core/java/android/hardware/radio/
H A DProgramList.java227 public @Nullable RadioManager.ProgramInfo get(@NonNull ProgramSelector.Identifier id) { method in class:ProgramList
229 return mPrograms.get(Objects.requireNonNull(id));
/frameworks/base/core/java/android/os/
H A DAsyncTask.java349 postResultIfNotInvoked(get());
363 final boolean wasTaskInvoked = mTaskInvoked.get();
493 return mCancelled.get();
541 public final Result get() throws InterruptedException, ExecutionException { method in class:AsyncTask
542 return mFuture.get();
560 public final Result get(long timeout, TimeUnit unit) throws InterruptedException, method in class:AsyncTask
562 return mFuture.get(timeout, unit);
H A DVibrationEffect.java55 * @see #get(int)
63 * @see #get(int)
70 * @see #get(int)
77 * @see #get(int)
84 * @see #get(int)
91 * @see #get(int)
101 * @see #get(Uri, Context)
223 public static VibrationEffect get(int effectId) { method in class:VibrationEffect
224 return get(effectId, true);
249 public static VibrationEffect get(in method in class:VibrationEffect
272 public static VibrationEffect get(Uri uri, Context context) { method in class:VibrationEffect
[all...]
H A DWorkSource.java135 public int get(int index) { method in class:WorkSource
1039 final WorkChain wc = oldWs.mChains.get(i);
1051 final WorkChain wc = newWs.mChains.get(i);
1108 result.append(mChains.get(i));
1130 final WorkChain wc = mChains.get(i);
/frameworks/base/core/java/android/util/
H A DArrayMap.java419 public V get(Object key) { method in class:ArrayMap
733 Object theirs = map.get(key);
/frameworks/base/core/java/android/view/
H A DDisplayCutout.java557 public DisplayCutout get() { method in class:DisplayCutout.ParcelableWrapper
562 mInner = cutout.get();
/frameworks/base/core/java/android/widget/
H A DAbsSpinner.java201 View view = mRecycler.get(selectedPosition);
464 View get(int position) { method in class:AbsSpinner.RecycleBin
466 View result = mScrapHeap.get(position);
/frameworks/base/libs/hwui/
H A DMatrix.h31 (m)->get(0), (m)->get(1), (m)->get(2), (m)->get(3), (m)->get(4), (m)->get(5), (m)->get(6), \
32 (m)->get(7), (m)->get(8)
233 inline float get(in function in class:android::uirenderer::Matrix4
[all...]
H A DPathCache.cpp187 mMaxTextureSize = DeviceInfo::get()->maxTextureSize();
295 PATH_LOGD("PathCache::get/create: name, size, mSize = %d, %d, %d", texture->id, size, mSize);
322 PathTask* t = static_cast<PathTask*>(task.get());
359 PathTexture* PathCache::get(const SkPath* path, const SkPaint* paint) { function in class:android::uirenderer::PathCache
363 PathTexture* texture = mCache.get(entry);
403 PathTexture* texture = mCache.get(entry);
421 // The conversion into GL texture will happen in get(), when a client
445 PathTexture* texture = get(entry);
467 PathTexture* texture = get(entry);
488 PathTexture* texture = get(entr
[all...]
H A DPathCache.h189 PathTexture* get(const SkPath* path, const SkPaint* paint);
228 PathTexture* get(const PathDescription& entry) { return mCache.get(entry); } function in class:android::uirenderer::PathCache

Completed in 1121 milliseconds

<<11121314151617