Searched defs:get (Results 26 - 50 of 142) sorted by relevance

123456

/frameworks/av/drm/common/
H A DDrmInfoRequest.cpp46 String8 DrmInfoRequest::get(const String8& key) const { function in class:DrmInfoRequest
H A DDrmMetadata.cpp38 String8 DrmMetadata::get(const String8& key) const { function in class:DrmMetadata
H A DDrmInfo.cpp49 String8 DrmInfo::get(const String8& key) const { function in class:DrmInfo
/frameworks/base/core/java/android/nfc/tech/
H A DIsoDep.java30 * <p>Acquire an {@link IsoDep} object using {@link #get}.
60 public static IsoDep get(Tag tag) { method in class:IsoDep
H A DNfcA.java30 * <p>Acquire a {@link NfcA} object using {@link #get}.
57 public static NfcA get(Tag tag) { method in class:NfcA
H A DNfcF.java30 * <p>Acquire a {@link NfcF} object using {@link #get}.
57 public static NfcF get(Tag tag) { method in class:NfcF
H A DMifareUltralight.java33 * <p>Acquire a {@link MifareUltralight} object using {@link #get}.
93 public static MifareUltralight get(Tag tag) { method in class:MifareUltralight
107 NfcA a = NfcA.get(tag);
/frameworks/base/core/java/android/util/
H A DProperty.java21 * in a <em>host</em> object. The Property's {@link #set(Object, Object)} or {@link #get(Object)}
46 * <p>If either of the get/is method alternatives is found on the class, but an appropriate
91 public abstract V get(T object); method in class:Property
H A DReflectiveProperty.java28 private static final String PREFIX_GET = "get";
42 * "get" and "is to search for the appropriate methods. If the get/is methods are not found,
136 public V get(T object) { method in class:ReflectiveProperty
147 return (V) mField.get(object);
152 // Should not get here: there should always be a non-null getter or field
H A DLruCache.java49 * if (cache.get(key) == null) {
55 * value of null from {@link #get}, {@link #put} or {@link #remove} is
111 public final V get(K key) { method in class:LruCache
118 mapValue = map.get(key);
331 * Returns the number of times {@link #get} returned a value that was
339 * Returns the number of times {@link #get} returned null or required a new
H A DSparseBooleanArray.java65 public boolean get(int key) { method in class:SparseBooleanArray
66 return get(key, false);
73 public boolean get(int key, boolean valueIfKeyNotFound) { method in class:SparseBooleanArray
H A DSparseIntArray.java69 public int get(int key) { method in class:SparseIntArray
70 return get(key, 0);
77 public int get(int key, int valueIfKeyNotFound) { method in class:SparseIntArray
/frameworks/native/include/utils/
H A DStrongPointer.h93 inline T* get() const { return m_ptr; } function in class:android::sp
213 return printStrongPointer(to, val.get());
/frameworks/opt/mms/src/java/com/google/android/mms/util/
H A DAbstractCache.java64 public V get(K key) { method in class:AbstractCache
66 Log.v(TAG, "Trying to get " + key + " from cache.");
70 CacheEntry<V> cacheEntry = mCacheMap.get(key);
/frameworks/rs/
H A DrsMatrix4x4.h28 float get(uint32_t x, uint32_t y) const { function in struct:android::renderscript::Matrix4x4
/frameworks/support/renderscript/v8/rs_support/
H A DrsMatrix4x4.h28 float get(uint32_t x, uint32_t y) const { function in struct:android::renderscript::Matrix4x4
/frameworks/base/core/java/android/net/http/
H A DHttpResponseCache.java202 @Override public CacheResponse get(URI uri, String requestMethod, method in class:HttpResponseCache
204 return delegate.get(uri, requestMethod, requestHeaders);
/frameworks/base/core/java/android/os/
H A DRegistrantList.java55 Registrant r = (Registrant) registrants.get(i);
70 get(int index) method in class:RegistrantList
72 return registrants.get(index);
79 Registrant r = (Registrant) registrants.get(i);
113 Registrant r = (Registrant) registrants.get(i);
H A DSystemProperties.java50 public static String get(String key) { method in class:SystemProperties
62 public static String get(String key, String def) { method in class:SystemProperties
152 callbacks.get(i).run();
/frameworks/base/core/java/android/provider/
H A DSyncStateContract.java73 public static byte[] get(ContentProviderClient provider, Uri uri, method in class:SyncStateContract.Helpers
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfoCache.java123 public AccessibilityNodeInfo get(long accessibilityNodeId) { method in class:AccessibilityNodeInfoCache
126 AccessibilityNodeInfo info = mCacheImpl.get(accessibilityNodeId);
133 Log.i(LOG_TAG, "get(" + accessibilityNodeId + ") = " + info);
155 AccessibilityNodeInfo oldInfo = mCacheImpl.get(sourceId);
214 AccessibilityNodeInfo current = mCacheImpl.get(rootNodeId);
280 parent = mCacheImpl.get(parent.getParentNodeId());
321 AccessibilityNodeInfo child = mCacheImpl.get(childId);
/frameworks/base/drm/java/android/drm/
H A DDrmInfo.java107 public Object get(String key) { method in class:DrmInfo
108 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.java127 * parser.get(extendedMetadataKey);<br>
206 public String get(String key) { method in class:DrmUtils.ExtendedMetadataParser
207 return mMap.get(key);
/frameworks/base/graphics/java/android/renderscript/
H A DMatrix2f.java67 public float get(int x, int y) { method in class:Matrix2f
141 float rhs_ij = rhs.get(i,j);
142 ri0 += lhs.get(j,0) * rhs_ij;
143 ri1 += lhs.get(j,1) * rhs_ij;

Completed in 156 milliseconds

123456