/aosp12/packages/modules/Wifi/framework/tests/src/android/net/wifi/aware/ |
H A D | TlvBufferUtilsTest.java | 53 tlv11.getArray(), equalTo(new byte[]{0, 1, 2, 2, 3, 0, 1, 2})); in testTlvBuild() 62 tlv01.getArray(), equalTo(new byte[] {1, 2, 3, 0, 1, 2 })); in testTlvBuild() 65 TlvBufferUtils.isValid(tlv11.getArray(), 1, 1), in testTlvBuild() 68 TlvBufferUtils.isValid(tlv01.getArray(), 0, 1), in testTlvBuild() 83 collector.checkThat("initial", tlv.getArray(), equalTo(new byte[]{0, 1, 2, 1, 1, 104})); in testTlvReuse() 87 collector.checkThat("re-alloc", tlv.getArray(), equalTo(new byte[]{5, 1, 7})); in testTlvReuse() 106 byte[] tlvData = tlv01.getArray(); in testTlvListOperations() 156 collector.checkThat("data", tlv.getArray(), in testRawPuts() 236 TlvBufferUtils.isValid(tlv22.getArray(), 2, 2), in testTlvIterate() 239 TlvBufferUtils.isValid(tlv02.getArray(), 0, 2), in testTlvIterate() [all …]
|
/aosp12/frameworks/base/rs/java/android/renderscript/ |
H A D | AllocationAdapter.java | 218 if (mAdaptedAllocation.getType().getArray(arrayNum) == 0) { in setArray() 221 if (mAdaptedAllocation.getType().getArray(arrayNum) <= arrayVal) { in setArray() 224 if (mWindow.getArray(arrayNum) == mAdaptedAllocation.getType().getArray(arrayNum)) { in setArray() 227 … if ((mWindow.getArray(arrayNum) + arrayVal) >= mAdaptedAllocation.getType().getArray(arrayNum)) { in setArray() 295 for (int i = 0; i < t.getArray(i); i++) { in createTyped() 296 if (t.getArray(i) > at.getArray(i)) { in createTyped()
|
H A D | Matrix2f.java | 56 public float[] getArray() { in getArray() method in Matrix2f 99 System.arraycopy(src.getArray(), 0, mMat, 0, mMat.length); in load()
|
H A D | Matrix3f.java | 56 public float[] getArray() { in getArray() method in Matrix3f 105 System.arraycopy(src.getArray(), 0, mMat, 0, mMat.length); in load()
|
H A D | Matrix4f.java | 58 public float[] getArray() { in getArray() method in Matrix4f 115 System.arraycopy(src.getArray(), 0, mMat, 0, mMat.length); in load()
|
/aosp12/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
H A D | ArchiveTest.java | 95 List<StatusBarNotification> actual = Arrays.asList(mArchive.getArray(mUm, SIZE, true)); in testRecordAndRead() 109 List<StatusBarNotification> actual = Arrays.asList(mArchive.getArray(mUm, SIZE, true)); in testCrossUser() 130 mArchive.getArray(mUm, (SIZE * 2), true)); in testRecordAndRead_overLimit() 150 List<StatusBarNotification> actual = Arrays.asList(mArchive.getArray(mUm, SIZE, true)); in testDoesNotRecordIfHistoryDisabled() 171 List<StatusBarNotification> actual = Arrays.asList(mArchive.getArray(mUm, SIZE, true)); in testRemovesEntriesWhenHistoryDisabled() 196 List<StatusBarNotification> actual = Arrays.asList(mArchive.getArray(mUm, SIZE, true)); in testRemoveChannelNotifications() 246 List<StatusBarNotification> actual = Arrays.asList(mArchive.getArray(mUm, SIZE, true)); in testRemoveChannelNotifications_concurrently()
|
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/pm/ |
H A D | InstallSessionHelper.java | 99 if (!existingIds.contains(mPromiseIconIds.getArray().get(i))) { in getPromiseIconIds() 100 idsToRemove.add(mPromiseIconIds.getArray().get(i)); in getPromiseIconIds() 104 mPromiseIconIds.getArray().removeValue(idsToRemove.get(i)); in getPromiseIconIds() 133 .putString(PROMISE_ICON_IDS, getPromiseIconIds().getArray().toConcatString()) in updatePromiseIconPrefs() 199 getPromiseIconIds().getArray().removeValue(sessionId); in removePromiseIconId()
|
/aosp12/art/test/530-checker-regression-reftyp-final/src/ |
H A D | Main.java | 39 Object[] array = $noinline$getArray(); in testReferenceTypePropagation() 60 public static Object[] $noinline$getArray() { in $noinline$getArray()
|
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/util/ |
H A D | Themes.java | 170 target.getArray()[4] = Color.red(dstColor) - Color.red(srcColor); in setColorChangeOnMatrix() 171 target.getArray()[9] = Color.green(dstColor) - Color.green(srcColor); in setColorChangeOnMatrix() 172 target.getArray()[14] = Color.blue(dstColor) - Color.blue(srcColor); in setColorChangeOnMatrix() 173 target.getArray()[19] = Color.alpha(dstColor) - Color.alpha(srcColor); in setColorChangeOnMatrix()
|
H A D | IntSet.java | 88 public IntArray getArray() { in getArray() method in IntSet
|
/aosp12/packages/apps/Car/tests/TestMediaApp/src/com/android/car/media/testmediaapp/loader/ |
H A D | TmaMediaItemReader.java | 24 import static com.android.car.media.testmediaapp.loader.TmaLoaderUtils.getArray; 96 JSONArray events = getArray(json, Keys.EVENTS); in fromJson() 107 JSONArray children = getArray(json, Keys.CHILDREN); in fromJson()
|
/aosp12/frameworks/rs/support/java/src/androidx/renderscript/ |
H A D | Matrix2f.java | 59 public float[] getArray() { in getArray() method in Matrix2f 102 System.arraycopy(src.getArray(), 0, mMat, 0, mMat.length); in load()
|
H A D | Matrix3f.java | 59 public float[] getArray() { in getArray() method in Matrix3f 108 System.arraycopy(src.getArray(), 0, mMat, 0, mMat.length); in load()
|
H A D | Matrix4f.java | 59 public float[] getArray() { in getArray() method in Matrix4f 116 System.arraycopy(src.getArray(), 0, mMat, 0, mMat.length); in load()
|
/aosp12/frameworks/base/core/java/android/view/ |
H A D | ViewTreeObserver.java | 1283 private ArrayList<T> getArray() { in getArray() method in ViewTreeObserver.CopyOnWriteArray 1312 return getArray().size(); in size() 1316 getArray().add(item); in add() 1320 getArray().addAll(array.mData); in addAll() 1324 getArray().remove(item); in remove() 1328 getArray().clear(); in clear()
|
/aosp12/frameworks/base/core/java/android/os/health/ |
H A D | HealthKeys.java | 127 mKeys[i] = keys[i].getArray(); in Constants() 205 int[] getArray() { in getArray() method in HealthKeys.SortedIntArray
|
/aosp12/art/test/530-checker-regression-reftyp-final/smali/ |
H A D | TestCase.smali | 37 invoke-static {v0}, LTestCase;->$inline$getArray(I)[Ljava/lang/Object; 45 .method public static $inline$getArray(I)[Ljava/lang/Object;
|
/aosp12/frameworks/rs/ |
H A D | rsType.cpp | 241 if (t->getArray(0) != params->array0) continue; in getTypeRef() 242 if (t->getArray(1) != params->array1) continue; in getTypeRef() 243 if (t->getArray(2) != params->array2) continue; in getTypeRef() 244 if (t->getArray(3) != params->array3) continue; in getTypeRef()
|
/aosp12/frameworks/av/media/img_utils/include/img_utils/ |
H A D | ByteArrayOutput.h | 73 virtual const uint8_t* getArray() const;
|
/aosp12/frameworks/av/media/img_utils/src/ |
H A D | ByteArrayOutput.cpp | 49 const uint8_t* ByteArrayOutput::getArray() const { in getArray() function in android::img_utils::ByteArrayOutput
|
/aosp12/frameworks/av/media/codec2/sfplugin/ |
H A D | CCodecBuffers.h | 70 virtual void getArray(Vector<sp<MediaCodecBuffer>> *) const {} in getArray() function 678 void getArray(Vector<sp<MediaCodecBuffer>> *array) const; 752 void getArray(Vector<sp<MediaCodecBuffer>> *array) const final; 962 void getArray(Vector<sp<MediaCodecBuffer>> *array) const final { in getArray() function 1018 void getArray(Vector<sp<MediaCodecBuffer>> *array) const final;
|
/aosp12/frameworks/native/libs/ui/ |
H A D | Region.cpp | 293 android::Rect const* thisRects = getArray(&thisRectCount); in hasSameRects() 295 android::Rect const* otherRects = other.getArray(&otherRectCount); in hasSameRects() 657 Rect const * const lhs_rects = lhs.getArray(&lhs_count); in boolean_operation() 660 Rect const * const rhs_rects = rhs.getArray(&rhs_count); in boolean_operation() 771 Rect const * const lhs_rects = lhs.getArray(&lhs_count); in boolean_operation() 904 Rect const* Region::getArray(size_t* count) const { in getArray() function in android::Region
|
/aosp12/frameworks/base/graphics/java/android/graphics/ |
H A D | ColorMatrixColorFilter.java | 127 return nativeColorMatrixFilter(mMatrix.getArray()); in createNativeInstance()
|
/aosp12/frameworks/base/libs/hwui/api/ |
H A D | current.txt | 8 method public final float[] getArray();
|
/aosp12/frameworks/base/core/java/com/android/internal/widget/ |
H A D | DisableImageView.java | 55 float[] mat = brightnessMatrix.getArray(); in DisableImageView()
|