Searched defs:get (Results 51 - 75 of 274) sorted by relevance

1234567891011

/frameworks/opt/bitmap/src/com/android/bitmap/
H A DPooledCache.java21 V get(K key, boolean incrementRefCount); method in interface:PooledCache
/frameworks/rs/
H A DrsMatrix2x2.h28 inline float get(uint32_t col, uint32_t row) const { function in struct:android::renderscript::Matrix2x2
H A DrsMatrix3x3.h28 inline float get(uint32_t col, uint32_t row) const { function in struct:android::renderscript::Matrix3x3
H A DrsMatrix4x4.h28 float get(uint32_t col, uint32_t row) const { function in struct:android::renderscript::Matrix4x4
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
H A DActionBarPolicy.java37 public static ActionBarPolicy get(Context context) { method in class:ActionBarPolicy
53 return !ViewConfigurationCompat.hasPermanentMenuKey(ViewConfiguration.get(mContext));
68 // so they get what they expect.
87 // Older apps get the home button interaction enabled by default.
/frameworks/volley/src/main/java/com/android/volley/toolbox/
H A DNoCache.java30 public Entry get(String key) { method in class:NoCache
/frameworks/av/drm/common/
H A DDrmConstraints.cpp43 String8 DrmConstraints::get(const String8& key) const { function in class:DrmConstraints
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/av/services/audiopolicy/engineconfigurable/src/
H A DCollection.h91 T *get(Key key) const function in class:android::audio_policy::Collection
/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
/frameworks/base/core/java/android/util/
H A DLongArray.java128 public long get(int index) { method in class:LongArray
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
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DKeyStoreLruCache.java47 final V get(Task.TaskKey key) { method in class:KeyStoreLruCache
48 return mCache.get(key.id);
55 Task.TaskKey lastKey = mTaskKeys.get(key.id);
64 return mCache.get(key.id);
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DUnmodifiableSparseArray.java37 public E get(int key) { method in class:UnmodifiableSparseArray
38 return mArray.get(key);
41 public E get(int key, E valueIfKeyNotFound) { method in class:UnmodifiableSparseArray
42 return mArray.get(key, valueIfKeyNotFound);
H A DUnmodifiableSparseIntArray.java37 public int get(int key) { method in class:UnmodifiableSparseIntArray
38 return mArray.get(key);
41 public int get(int key, int valueIfKeyNotFound) { method in class:UnmodifiableSparseIntArray
42 return mArray.get(key, valueIfKeyNotFound);
/frameworks/compile/mclinker/lib/LD/
H A DSectionSymbolSet.cpp67 LDSymbol* sym = get(pOutSect);
96 LDSymbol* SectionSymbolSet::get(const LDSection& pOutSect) { function in class:mcld::SectionSymbolSet
101 const LDSymbol* SectionSymbolSet::get(const LDSection& pOutSect) const { function in class:mcld::SectionSymbolSet
/frameworks/opt/telephony/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/cpp/util/
H A DStrongPointer.h94 inline T* get() const { return m_ptr; } function in class:android::RSC::sp
214 return printStrongPointer(to, val.get());
/frameworks/rs/server/
H A DStrongPointer.h93 inline T* get() const { return m_ptr; } function in class:android::sp
213 return printStrongPointer(to, val.get());
/frameworks/volley/src/test/java/com/android/volley/toolbox/
H A DNetworkImageViewTest.java48 public ImageContainer get(String requestUrl, ImageListener imageListener, int maxWidth, method in class:NetworkImageViewTest.MockImageLoader

Completed in 532 milliseconds

1234567891011