Searched defs:get (Results 151 - 175 of 234) sorted by relevance

12345678910

/frameworks/base/core/java/com/android/internal/util/
H A DTypedProperties.java402 public Object get(Object key) { method in class:TypedProperties
403 Object value = super.get(key);
415 * An unchecked exception that is thrown if a {@code get<TYPE>()} method
435 Object value = super.get(property);
455 Object value = super.get(property);
475 Object value = super.get(property);
495 Object value = super.get(property);
515 Object value = super.get(property);
535 Object value = super.get(property);
555 Object value = super.get(propert
[all...]
/frameworks/base/libs/hwui/
H A DGradientCache.cpp132 Texture* GradientCache::get(uint32_t* colors, float* positions, int count) { function in class:android::uirenderer::GradientCache
134 Texture* texture = mCache.get(gradient);
H A DMatrix.h31 (m)->get(0), (m)->get(1), (m)->get(2), \
32 (m)->get(3), (m)->get(4), (m)->get(5), \
33 (m)->get(6), (m)->get(7), (m)->get(8)
220 inline float get(in function in class:android::uirenderer::Matrix4
[all...]
H A DPatchCache.cpp241 const Patch* PatchCache::get(const AssetAtlas::Entry* entry, function in class:android::uirenderer::PatchCache
246 const Patch* mesh = mCache.get(description);
H A DTextureCache.cpp158 Texture* texture = mCache.get(bitmap->pixelRef()->getStableID());
183 TEXTURE_LOGD("TextureCache::get: create texture(%p): name, size, mSize = %d, %d, %d",
207 Texture* TextureCache::get(const SkBitmap* bitmap) { function in class:android::uirenderer::TextureCache
/frameworks/base/media/java/android/media/
H A DCamcorderProfile.java259 * @see #get(int, int)
261 public static CamcorderProfile get(int quality) { method in class:CamcorderProfile
267 return get(i, quality);
324 public static CamcorderProfile get(int cameraId, int quality) { method in class:CamcorderProfile
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRootsFragment.java81 public static RootsFragment get(FragmentManager fm) { method in class:RootsFragment
179 final DocumentsActivity activity = DocumentsActivity.get(RootsFragment.this);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationData.java159 public Entry get(String key) { method in class:NotificationData
160 return mEntries.get(key);
227 Entry ent = mSortedAndFiltered.get(i);
288 NotificationData.Entry e = mSortedAndFiltered.get(active);
/frameworks/base/rs/java/android/renderscript/
H A DMatrix4f.java66 public float get(int x, int y) { method in class:Matrix4f
232 float rhs_ij = rhs.get(i,j);
233 ri0 += lhs.get(j,0) * rhs_ij;
234 ri1 += lhs.get(j,1) * rhs_ij;
235 ri2 += lhs.get(j,2) * rhs_ij;
236 ri3 += lhs.get(j,3) * rhs_ij;
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DPacManager.java105 file = get(mPacUrl);
199 private static String get(Uri pacUri) throws IOException { method in class:PacManager
226 String defaultDelay = SystemProperties.get(
/frameworks/base/services/core/java/com/android/server/job/controllers/
H A DTimeController.java62 public static synchronized TimeController get(JobSchedulerService jms) { method in class:TimeController
130 job.timeDelayConstraintSatisfied.get()) &&
132 job.deadlineConstraintSatisfied.get());
192 } else { // Keep going through list to get next delay time.
/frameworks/base/tests/touchlag/
H A Dtouchlag.cpp202 void get(int lag, int* x, int* y) { function in struct:Queue
275 // get touch events
278 queue.get(lag, &lag_x, &lag_y);
/frameworks/native/opengl/libs/EGL/
H A Degl_cache.cpp64 egl_cache_t::get()->setBlob(key, keySize, value, valueSize);
69 return egl_cache_t::get()->getBlob(key, keySize, value, valueSize);
85 egl_cache_t* egl_cache_t::get() { function in class:android::egl_cache_t
110 "but unable to get eglSetBlobCacheFuncsANDROID");
153 egl_cache_t* c = egl_cache_t::get();
183 return bc->get(key, keySize, value, valueSize);
H A Degl_display.cpp65 egl_cache_t::get()->terminate();
68 egl_display_t* egl_display_t::get(EGLDisplay dpy) { function in class:android::egl_display_t
105 // get our driver loader
169 // get the query-strings for this display for each implementation
212 egl_cache_t::get()->initialize(this);
281 // Reset the extension string since it will be regenerated if we get
408 // we don't want to get into a state where we can't wake up.
H A Degl_object.h58 static bool get(egl_display_t const* display, egl_object_t* object);
71 if (o && egl_object_t::get(display, native)) {
75 inline N* get() { function in class:android::egl_object_t::LocalRef
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A Dcommon.cpp208 get function
/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/support/v4/java/android/support/v4/content/
H A DModernAsyncTask.java131 final Result result = get();
150 final boolean wasTaskInvoked = mTaskInvoked.get();
320 public final Result get() throws InterruptedException, ExecutionException { method in class:ModernAsyncTask
321 return mFuture.get();
339 public final Result get(long timeout, TimeUnit unit) throws InterruptedException, method in class:ModernAsyncTask
341 return mFuture.get(timeout, unit);
/frameworks/support/v4/java/android/support/v4/util/
H A DSimpleArrayMap.java322 public V get(Object key) { method in class:SimpleArrayMap
545 Object theirs = map.get(key);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DAbsSpinnerCompat.java176 View view = mRecycler.get(selectedPosition);
427 View get(int position) { method in class:AbsSpinnerCompat.RecycleBin
429 View result = mScrapHeap.get(position);
H A DTintManager.java189 PorterDuffColorFilter filter = COLOR_FILTER_CACHE.get(color, tintMode);
390 PorterDuffColorFilter get(int color, PorterDuff.Mode mode) { method in class:TintManager.ColorFilterLruCache
391 return get(generateCacheKey(color, mode));
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DChildHelper.java34 * methods like get getUnfilteredChildCount or getUnfilteredChildAt.
99 while (mBucket.get(offset)) { // ensure this offset is not hidden
182 final View view = mHiddenViews.get(i);
274 if (mBucket.get(index)) {
276 throw new IllegalArgumentException("cannot get index of a hidden child");
305 if (DEBUG && mBucket.get(offset)) {
334 if (mBucket.get(index)) {
385 boolean get(int index) { method in class:ChildHelper.Bucket
388 return next.get(index - BITS_PER_WORD);
437 if (next.get(
[all...]
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/com/android/volley/toolbox/
H A DDiskBasedCache.java105 public synchronized Entry get(String key) { method in class:DiskBasedCache
106 CacheHeader entry = mEntries.get(key);
179 Entry entry = get(key);
300 CacheHeader oldEntry = mEntries.get(key);
310 CacheHeader entry = mEntries.get(key);
386 // don't bother deleting, it'll get pruned eventually

Completed in 1405 milliseconds

12345678910