Searched defs:get (Results 176 - 200 of 416) sorted by relevance

1234567891011>>

/frameworks/base/tools/preload2/src/com/android/preload/classdataretrieval/hprof/
H A DHprof.java50 return gh.get();
108 String rep = primitiveMapping.get(name);
126 public File get() { method in class:Hprof.GetHprof
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
H A DAnnotationAnalyzer.java71 public static AnnotationAnalyzer get() { method in class:AnnotationAnalyzer
77 TypeKind typeKind = PRIMITIVE_TYPES.get(className);
124 findClass(templateParameters.get(i), imports);
126 L.e("cannot find type argument for %s in %s", templateParameters.get(i),
151 String importedClass = imports.get(className);
/frameworks/ex/camera2/utils/src/com/android/ex/camera2/utils/
H A DCamera2RequestSettingsSet.java88 Object currentValue = get(key);
134 public <T> T get(Key<T> key) { method in class:Camera2RequestSettingsSet
138 return (T) mDictionary.get(key);
146 * to its default value or simply unset. While {@link #get} will return
173 return Objects.equals(get(key), value);
248 T value = get(key);
/frameworks/layoutlib/bridge/src/android/util/
H A DLruCache.java53 * if (cache.get(key) == null) {
59 * value of null from {@link #get}, {@link #put} or {@link #remove} is
115 public final V get(K key) { method in class:LruCache
122 mapValue = map.get(key);
211 // get the last item in the linked list.
341 * Returns the number of times {@link #get} returned a value that was
349 * Returns the number of times {@link #get} returned null or required a new
/frameworks/minikin/include/minikin/
H A DSparseBitSet.h49 bool get(uint32_t ch) const { function in class:minikin::SparseBitSet
/frameworks/ml/nn/runtime/
H A DManager.cpp128 DeviceManager* DeviceManager::get() { function in class:android::nn::DeviceManager
/frameworks/native/libs/vr/libpdx/private/pdx/
H A Dstatus.h94 const T& get() const { return value_; } function in class:android::pdx::Status
174 return status ? status.get() : -status.error();
/frameworks/opt/bitmap/src/com/android/bitmap/
H A DUnrefedBitmapCache.java120 public ReusableBitmap get(final RequestKey key, final boolean incrementRefCount) { method in class:UnrefedBitmapCache
121 if (mNullRequests != null && mNullRequests.get(key) != null) {
124 return super.get(key, incrementRefCount);
H A DUnrefedPooledCache.java72 public V get(K key, boolean incrementRefCount) { method in class:UnrefedPooledCache
73 Trace.beginSection("cache get");
75 V result = mCache.get(key);
77 result = mNonPooledCache.get(key);
/frameworks/opt/bitmap/src/com/android/bitmap/util/
H A DInputStreamBuffer.java74 * If <code>autoAdvance</code> is true, behavior is undefined if you call {@link #get(int)}
75 * or {@link #has(int)} with an index N, then some arbitrary time later call {@link #get(int)}
110 * Attempt to get byte at the requested index from the wrapped input stream. If the internal
129 public byte get(final int index) throws IllegalStateException, IndexOutOfBoundsException { method in class:InputStreamBuffer
130 Trace.beginSection("get");
147 * If this method returns true, it is guaranteed that {@link #get(int)} with the same index
153 * See {@link #get(int)} for caveats. A lot of the same warnings about exceptions and
184 * Advancing does not fill the internal buffer. The next {@link #get(int)} or
/frameworks/opt/net/wifi/service/jni/
H A Djni_helper.h37 T get() const { function in class:android::JNIObject
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DInputStreamBuffer.java74 * If <code>autoAdvance</code> is true, behavior is undefined if you call {@link #get(int)}
75 * or {@link #has(int)} with an index N, then some arbitrary time later call {@link #get(int)}
110 * Attempt to get byte at the requested index from the wrapped input stream. If the internal
129 public byte get(final int index) throws IllegalStateException, IndexOutOfBoundsException { method in class:InputStreamBuffer
130 Trace.beginSection("get");
147 * If this method returns true, it is guaranteed that {@link #get(int)} with the same index
153 * See {@link #get(int)} for caveats. A lot of the same warnings about exceptions and
184 * Advancing does not fill the internal buffer. The next {@link #get(int)} or
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DInstallCarrierAppTrampolineActivity.java56 public static Intent get(Context context, String packageName) { method in class:InstallCarrierAppTrampolineActivity
/frameworks/rs/support/java/src/android/support/v8/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;
/frameworks/support/collection/src/main/java/androidx/collection/
H A DCircularArray.java239 public E get(int n) { method in class:CircularArray
H A DCircularIntArray.java196 public int get(int n) { method in class:CircularIntArray
H A DLruCache.java78 public final V get(K key) { method in class:LruCache
85 mapValue = map.get(key);
294 * Returns the number of times {@link #get} returned a value that was
302 * Returns the number of times {@link #get} returned null or required a new
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
H A DCursorObjectAdapter.java138 public Object get(int index) { method in class:CursorObjectAdapter
145 Object item = mItemCache.get(index);
174 * from the data source the next time {@link #get(int)} is called.
/frameworks/support/lifecycle/process/src/main/java/androidx/lifecycle/
H A DProcessLifecycleOwner.java97 public static LifecycleOwner get() { method in class:ProcessLifecycleOwner
161 ReportFragment.get(activity).setProcessListener(mInitializationListener);
/frameworks/support/lifecycle/runtime/src/main/java/androidx/lifecycle/
H A DReportFragment.java46 static ReportFragment get(Activity activity) { method in class:ReportFragment
/frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/
H A DDaoNameConflictTest.java63 assertThat(mDb.item1Dao().get(), is(item1));
64 assertThat(mDb.item2Dao().get(), is(item2));
81 Item1 get(); method in interface:DaoNameConflictTest.Item1.Store
119 Item2 get(); method in interface:DaoNameConflictTest.Item2.Store
/frameworks/av/include/media/stagefright/foundation/
H A DFlagged.h29 * accessed via get(). This template is meant to be inherited by other utility/wrapper classes
47 * a.get() = 15;
49 * EXPECT_EQ(a.get(), 15);
74 * EXPECT_EQ(b.get().flags(), kSafe);
75 * EXPECT_EQ(b.get().get(), 1);
77 * b.get().setFlags(overflow ? kUnsafe : kSafe);
92 * EXPECT_EQ(v.get().flags(), kUnsafe); // !kUnsafeV overrides kSafe
93 * EXPECT_EQ(v.get().get(), 1
410 inline constexpr const T &get() const { return mValue; } function in class:android::Flagged
413 inline T &get() { return mValue; } function in class:android::Flagged
493 inline constexpr T &get() const { return *this; } function in class:android::Flagged
496 inline T &get() { return *this; } function in class:android::Flagged
[all...]
/frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
H A DFlagged.h29 * accessed via get(). This template is meant to be inherited by other utility/wrapper classes
47 * a.get() = 15;
49 * EXPECT_EQ(a.get(), 15);
74 * EXPECT_EQ(b.get().flags(), kSafe);
75 * EXPECT_EQ(b.get().get(), 1);
77 * b.get().setFlags(overflow ? kUnsafe : kSafe);
92 * EXPECT_EQ(v.get().flags(), kUnsafe); // !kUnsafeV overrides kSafe
93 * EXPECT_EQ(v.get().get(), 1
410 inline constexpr const T &get() const { return mValue; } function in class:android::Flagged
413 inline T &get() { return mValue; } function in class:android::Flagged
493 inline constexpr T &get() const { return *this; } function in class:android::Flagged
496 inline T &get() { return *this; } function in class:android::Flagged
[all...]
/frameworks/av/media/libstagefright/include/media/stagefright/foundation/
H A DFlagged.h29 * accessed via get(). This template is meant to be inherited by other utility/wrapper classes
47 * a.get() = 15;
49 * EXPECT_EQ(a.get(), 15);
74 * EXPECT_EQ(b.get().flags(), kSafe);
75 * EXPECT_EQ(b.get().get(), 1);
77 * b.get().setFlags(overflow ? kUnsafe : kSafe);
92 * EXPECT_EQ(v.get().flags(), kUnsafe); // !kUnsafeV overrides kSafe
93 * EXPECT_EQ(v.get().get(), 1
410 inline constexpr const T &get() const { return mValue; } function in class:android::Flagged
413 inline T &get() { return mValue; } function in class:android::Flagged
493 inline constexpr T &get() const { return *this; } function in class:android::Flagged
496 inline T &get() { return *this; } function in class:android::Flagged
[all...]
/frameworks/base/core/java/android/database/
H A DMatrixCursor.java64 private Object get(int column) { method in class:MatrixCursor
164 localData[start + i] = columnValues.get(i);
254 Object value = get(column);
261 Object value = get(column);
269 Object value = get(column);
277 Object value = get(column);
285 Object value = get(column);
293 Object value = get(column);
301 Object value = get(column);
307 return DatabaseUtils.getTypeOfObject(get(colum
[all...]

Completed in 438 milliseconds

1234567891011>>