Searched defs:get (Results 226 - 250 of 416) sorted by relevance

1234567891011>>

/frameworks/base/rs/java/android/renderscript/
H A DDouble4.java358 public double get(int i) { method in class:Double4
H A DFloat4.java335 * get vector length
353 * get the vector field value by index
358 public float get(int i) { method in class:Float4
H A DInt2.java297 * get vector length
376 * get the vector field value by index
381 public int get(int i) { method in class:Int2
H A DInt3.java320 * get vector length
404 * get the vector field value by index
409 public int get(int i) { method in class:Int3
H A DInt4.java343 * get vector length
432 * get the vector field value by index
437 public int get(int i) { method in class:Int4
H A DLong2.java297 * get vector length
376 * get the vector field value by index
381 public long get(int i) { method in class:Long2
H A DLong3.java320 * get vector length
404 * get the vector field value by index
409 public long get(int i) { method in class:Long3
H A DLong4.java343 * get vector length
432 * get the vector field value by index
437 public long get(int i) { method in class:Long4
H A DShort2.java300 * get vector length
379 * get the vector field value by index
384 public short get(int i) { method in class:Short2
H A DShort3.java320 * get vector length
404 * get the vector field value by index
409 public short get(int i) { method in class:Short3
H A DShort4.java343 * get vector length
432 * get the vector field value by index
437 public short get(int i) { method in class:Short4
/frameworks/base/services/autofill/java/com/android/server/autofill/
H A DFieldClassificationStrategy.java168 final Command queuedCommand = mQueuedCommands.get(i);
257 return parser.get(res, resourceId);
295 T get(Resources res, int resId); method in interface:FieldClassificationStrategy.MetadataParser
/frameworks/base/services/core/java/com/android/server/accounts/
H A DTokenCache.java137 Evictor tokenEvictor = mTokenEvictors.get(v.token);
145 Evictor accountEvictor = mAccountEvictors.get(k.account);
157 Evictor evictor = mTokenEvictors.get(new Pair<>(accountType, token));
165 Evictor evictor = mAccountEvictors.get(account);
219 public String get(Account account, String tokenType, String packageName, byte[] sigDigest) { method in class:TokenCache
221 Value v = mCachedTokens.get(k);
/frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/ui/automation/
H A DFrameTimingStats.java79 public long get(@Index int index) { method in class:FrameTimingStats
/frameworks/base/tests/utils/testutils/java/com/android/internal/util/test/
H A DBroadcastInterceptingContext.java87 public Intent get() throws InterruptedException, ExecutionException { method in class:BroadcastInterceptingContext.BroadcastInterceptor
89 return get(5, TimeUnit.SECONDS);
104 final Intent intent = get(timeout, unit);
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pDeviceList.java88 mDevices.get(device.deviceAddress).status = device.status;
94 WifiP2pDevice d = mDevices.get(device.deviceAddress);
112 WifiP2pDevice d = mDevices.get(deviceAddress);
121 WifiP2pDevice d = mDevices.get(deviceAddress);
132 public WifiP2pDevice get(String deviceAddress) { method in class:WifiP2pDeviceList
134 return mDevices.get(deviceAddress);
171 WifiP2pDevice device = mDevices.get(deviceAddress);
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
H A DSparseWeakArray.java72 public E get(long key) { method in class:SparseWeakArray
73 return get(key, null);
80 public E get(long key, E valueIfKeyNotFound) { method in class:SparseWeakArray
83 if (i < 0 || mValues[i] == DELETED || mValues[i].get() == null) {
86 return (E) mValues[i].get();
132 if (val != DELETED && val.get() != null) {
159 if (i < mSize && (mValues[i] == DELETED || mValues[i].get() == null)) {
213 return (E) mValues[index].get();
256 if (mValues[i].get() == value)
298 if (mValues[i].get()
[all...]
/frameworks/minikin/include/minikin/
H A DAndroidLineBreakerHelper.h42 return std::max(0.0f, width - get(mIndents, lineNo));
57 float getLeftPaddingAt(size_t lineNo) const override { return get(mLeftPaddings, lineNo); }
59 float getRightPaddingAt(size_t lineNo) const override { return get(mRightPaddings, lineNo); }
62 float get(const std::vector<float>& vec, size_t lineNo) const { function in class:minikin::android::AndroidLineWidth
/frameworks/native/libs/binder/
H A DValue.cpp93 template<typename T> bool get(T* out) const;
132 template<typename T> bool Value::ContentBase::get(T* out) const function in class:android::binder::Value::ContentBase
245 bool Value::get ## TYPENAME(T* out) const \
248 ? mContent->get(out) \
/frameworks/native/opengl/libs/EGL/
H A Degl_cache.cpp47 egl_cache_t::get()->setCacheFilename(filename);
55 egl_cache_t::get()->setBlob(key, keySize, value, valueSize);
60 return egl_cache_t::get()->getBlob(key, keySize, value, valueSize);
75 egl_cache_t* egl_cache_t::get() { function in class:android::egl_cache_t
100 "but unable to get eglSetBlobCacheFuncsANDROID");
164 return bc->get(key, keySize, value, valueSize);
178 return mBlobCache.get();
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
H A DMatrix.java77 public double get(int i, int j) { method in class:Matrix
211 s += this.get(i, k) * that.get(k, j);
241 result.put(j, i, get(i, j));
273 scratch.put(i, j, get(i, j));
280 double vbest = Math.abs(scratch.get(ibest, ibest));
282 double v = Math.abs(scratch.get(ii, i));
290 double t = scratch.get(i, j);
291 scratch.put(i, j, scratch.get(ibest, j));
295 double d = scratch.get(
[all...]
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/
H A DItemAdapter.java60 return mViewTypes.get(layoutRes);
141 return mPositionMap.get(id);
148 public int get(int id) { method in class:ItemAdapter.ViewTypes
149 return mPositionMap.get(id);
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/
H A DPartner.java58 * Convenience to get a drawable from partner overlay, or if not available, the drawable from
69 * Convenience to get a string from partner overlay, or if not available, the string from the
80 * Convenience method to get color from partner overlay, or if not available, the color from
89 * Convenience method to get a CharSequence from partner overlay, or if not available, the text
103 * resources from the original context is returned. Clients can then get the resource by
108 final Partner partner = Partner.get(context);
139 public static synchronized Partner get(Context context) { method in class:Partner
/frameworks/rs/
H A DrsObjectBase.h108 mRef = ref.get();
153 inline T * get() const { function in class:android::renderscript::ObjectBaseRef
/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DMatrix3f.java67 public float get(int x, int y) { method in class:Matrix3f
216 float rhs_ij = rhs.get(i,j);
217 ri0 += lhs.get(j,0) * rhs_ij;
218 ri1 += lhs.get(j,1) * rhs_ij;
219 ri2 += lhs.get(j,2) * rhs_ij;

Completed in 337 milliseconds

1234567891011>>