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

1234567891011>>

/frameworks/base/core/java/android/util/
H A DSparseLongArray.java92 public long get(int key) { method in class:SparseLongArray
93 return get(key, 0);
100 public long get(int key, long valueIfKeyNotFound) { method in class:SparseLongArray
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodSubtypeArray.java130 public InputMethodSubtype get(final int index) { method in class:InputMethodSubtypeArray
/frameworks/base/core/java/com/android/internal/inputmethod/
H A DLocaleUtils.java39 Locale get(@Nullable T source); method in interface:LocaleUtils.LocaleExtractor
169 final Locale locale = extractor.get(sources.get(i));
176 final Locale preferredLocale = preferredLocales.get(j);
197 final ScoreEntry bestScore = scoreboard.get(lang);
208 dest.add(sources.get(entry.mIndex));
/frameworks/base/core/tests/coretests/src/android/view/
H A DViewRootImplTest.java97 public ViewRootImpl get() { method in class:ViewRootImplTest.ViewRootImplAccessor
134 return field.get(o);
/frameworks/base/core/tests/utiltests/src/android/util/
H A DRemoteIntArray.java74 public int get(int index) throws IOException { method in class:RemoteIntArray
76 return mRemoteInstance.get(index);
129 throw new TimeoutException("Cannot get spooler!");
/frameworks/base/drm/java/android/drm/
H A DDrmInfo.java108 public Object get(String key) { method in class:DrmInfo
109 return mAttributes.get(key);
H A DDrmInfoRequest.java24 * class is passed to the {@link DrmManagerClient#acquireDrmInfo acquireDrmInfo()} method to get an
113 public Object get(String key) { method in class:DrmInfoRequest
114 return mRequestInformation.get(key);
H A DDrmUtils.java117 * parser.get(extendedMetadataKey);<br>
196 public String get(String key) { method in class:DrmUtils.ExtendedMetadataParser
197 return mMap.get(key);
/frameworks/base/libs/androidfw/include/androidfw/
H A DUtil.h77 inline pointer get() const { return ptr_; } function in class:android::util::unique_cptr
/frameworks/base/libs/hwui/
H A DRenderBufferCache.cpp102 RenderBuffer* RenderBufferCache::get(GLenum format, const uint32_t width, const uint32_t height) { function in class:android::uirenderer::RenderBufferCache
H A DTextDropShadowCache.cpp147 ShadowTexture* TextDropShadowCache::get(const SkPaint* paint, const glyph_t* glyphs, int numGlyphs, function in class:android::uirenderer::TextDropShadowCache
150 ShadowTexture* texture = mCache.get(entry);
H A DTextureCache.cpp42 mMaxTextureSize = DeviceInfo::get()->maxTextureSize();
124 return textureIterator->second.get();
127 Texture* texture = mCache.get(bitmap->getStableID());
149 TEXTURE_LOGD("TextureCache::get: create texture(%p): name, size, mSize = %d, %d, %d",
178 Texture* TextureCache::get(Bitmap* bitmap) { function in class:android::uirenderer::TextureCache
/frameworks/base/libs/hwui/pipeline/skia/
H A DShaderCache.cpp40 ShaderCache& ShaderCache::get() { function in class:android::uirenderer::skiapipeline::ShaderCache
64 return mBlobCache.get();
82 size_t valueSize = bc->get(key.data(), keySize, valueBuffer, mObservedBlobValueSize);
92 valueSize = bc->get(key.data(), keySize, valueBuffer, mObservedBlobValueSize);
/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/recents/model/
H A DTaskKeyCache.java37 final V get(TaskKey key) { method in class:TaskKeyCache
46 TaskKey lastKey = mKeys.get(key.id);
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/
H A DWeakIdentityHashMap.java47 public V get(K key) { method in class:WeakIdentityHashMap
49 return mMap.get(new CmpWeakReference<>(key));
89 K k = get();
91 return ((CmpWeakReference) o).get() == k;
/frameworks/base/rs/java/android/renderscript/
H A DDouble2.java315 public double get(int i) { method in class:Double2
H A DDouble3.java336 public double get(int i) { method in class:Double3
H A DFloat2.java291 * get vector length
309 * get the vector field value by index
314 public float get(int i) { method in class:Float2
H A DFloat3.java313 * get vector length
331 * get the vector field value by index
336 public float get(int i) { method in class:Float3
H A DMatrix2f.java64 public float get(int x, int y) { method in class:Matrix2f
138 float rhs_ij = rhs.get(i,j);
139 ri0 += lhs.get(j,0) * rhs_ij;
140 ri1 += lhs.get(j,1) * rhs_ij;
H A DMatrix3f.java64 public float get(int x, int y) { method in class:Matrix3f
213 float rhs_ij = rhs.get(i,j);
214 ri0 += lhs.get(j,0) * rhs_ij;
215 ri1 += lhs.get(j,1) * rhs_ij;
216 ri2 += lhs.get(j,2) * rhs_ij;
/frameworks/base/services/core/java/com/android/server/
H A DAttributeCache.java119 public Entry get(String packageName, int resId, int[] styleable, int userId) { method in class:AttributeCache
121 Package pkg = mPackages.get(packageName);
125 map = pkg.mMap.get(resId);
127 ent = map.get(styleable);
/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/storage/
H A DRecoverySessionStorage.java47 public Entry get(int uid, String sessionId) { method in class:RecoverySessionStorage
48 ArrayList<Entry> userEntries = mSessionsByUid.get(uid);
69 if (mSessionsByUid.get(uid) == null) {
72 mSessionsByUid.get(uid).add(entry);
79 if (mSessionsByUid.get(uid) == null) {
82 mSessionsByUid.get(uid).removeIf(session -> session.mSessionId.equals(sessionId));
93 ArrayList<Entry> entries = mSessionsByUid.get(uid);
H A DRecoverySnapshotStorage.java97 public synchronized KeyChainSnapshot get(int uid) { method in class:RecoverySnapshotStorage
98 KeyChainSnapshot snapshot = mSnapshotByUid.get(uid);
/frameworks/base/tools/preload2/src/com/android/preload/
H A DClientUtils.java61 return wfc.get();
84 return wfc.get();
103 public Client get() { method in class:ClientUtils.WaitForClient
187 public Client[] get() { method in class:ClientUtils.WaitForClients

Completed in 285 milliseconds

1234567891011>>