Searched defs:get (Results 126 - 150 of 234) sorted by relevance

12345678910

/frameworks/base/rs/java/android/renderscript/
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/core/java/com/android/server/job/controllers/
H A DBatteryController.java58 public static BatteryController get(JobSchedulerService taskManagerService) { method in class:BatteryController
187 // If we get this action, the battery is discharging => it isn't plugged in so
H A DIdleController.java53 public static IdleController get(JobSchedulerService service) { method in class:IdleController
195 final JobStatus js = mTrackedTasks.get(i);
/frameworks/base/tools/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/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/ex/camera2/public/src/com/android/ex/camera2/blocking/
H A DBlockingSessionCallback.java137 return mSessionFuture.get(timeoutMs, TimeUnit.MILLISECONDS);
140 String.format("Failed to get session after %s milliseconds", timeoutMs), e);
208 public CameraCaptureSession get() { method in class:BlockingSessionCallback.SessionFuture
214 public CameraCaptureSession get(long timeout, TimeUnit unit) throws TimeoutException { method in class:BlockingSessionCallback.SessionFuture
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DObjectAdapter.java77 mObservers.get(i).onChanged();
83 mObservers.get(i).onItemRangeChanged(positionStart, itemCount);
89 mObservers.get(i).onItemRangeInserted(positionStart, itemCount);
95 mObservers.get(i).onItemRangeRemoved(positionStart, itemCount);
242 public abstract Object get(int position); method in class:ObjectAdapter
/frameworks/support/v4/java/android/support/v4/util/
H A DLongSparseArray.java95 public E get(long key) { method in class:LongSparseArray
96 return get(key, null);
104 public E get(long key, E valueIfKeyNotFound) { method in class:LongSparseArray
H A DLruCache.java77 public final V get(K key) { method in class:LruCache
84 mapValue = map.get(key);
293 * Returns the number of times {@link #get} returned a value that was
301 * Returns the number of times {@link #get} returned null or required a new
H A DSparseArrayCompat.java75 public E get(int key) { method in class:SparseArrayCompat
76 return get(key, null);
84 public E get(int key, E valueIfKeyNotFound) { method in class:SparseArrayCompat
/frameworks/support/v8/renderscript/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;
/frameworks/base/core/java/android/content/res/
H A DStringBlock.java62 public CharSequence get(int idx) { method in class:StringBlock
70 CharSequence res = mSparseStrings.get(idx);
410 // Should not get called, at least not by StaticLayout.
/frameworks/base/core/java/android/hardware/camera2/
H A DCameraManager.java43 * <p>You can get an instance of this class by calling
125 CameraManagerGlobal.get().registerAvailabilityCallback(callback, handler);
137 CameraManagerGlobal.get().unregisterAvailabilityCallback(callback);
171 * otherwise get them from the legacy shim instead.
174 ICameraService cameraService = CameraManagerGlobal.get().getCameraService();
255 ICameraService cameraService = CameraManagerGlobal.get().getCameraService();
319 * <p>Use {@link #getCameraIdList} to get the list of available camera
438 ICameraService cameraService = CameraManagerGlobal.get().getCameraService();
465 throw new AssertionError("Expected to get non-empty characteristics");
524 ICameraService cameraService = CameraManagerGlobal.get()
595 public static CameraManagerGlobal get() { method in class:CameraManager.CameraManagerGlobal
[all...]
/frameworks/base/core/java/android/nfc/tech/
H A DMifareClassic.java32 * <p>Acquire a {@link MifareClassic} object using {@link #get}.
135 public static MifareClassic get(Tag tag) { method in class:MifareClassic
148 NfcA a = NfcA.get(tag); // MIFARE Classic is always based on NFC a
H A DNdef.java34 * <p>Acquire a {@link Ndef} object using {@link #get}.
145 public static Ndef get(Tag tag) { method in class:Ndef
/frameworks/base/core/java/android/os/
H A DWorkSource.java90 public int get(int index) { method in class:WorkSource
/frameworks/base/core/java/android/util/
H A DArrayMap.java380 public V get(Object key) { method in class:ArrayMap
672 Object theirs = map.get(key);

Completed in 404 milliseconds

12345678910