/aosp14/frameworks/base/core/tests/coretests/src/android/util/ |
H A D | EventLogTest.java | 45 Object[] objects = ((Object[]) event.withNewData( in testWithNewData() local 47 assertEquals(4, objects.length); in testWithNewData() 48 assertTrue(objects[0].equals(111)); in testWithNewData() 49 assertTrue(objects[1].equals(2.22f)); in testWithNewData() 50 assertTrue(objects[2].equals(333L)); in testWithNewData() 51 assertTrue(objects[3].equals("444")); in testWithNewData()
|
/aosp14/frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/ |
H A D | AppearAnimationUtils.java | 62 startAnimation2d(objects, finishListener, this); in startAnimation2d() 65 public void startAnimation(View[] objects, final Runnable finishListener) { in startAnimation() argument 66 startAnimation(objects, finishListener, this); in startAnimation() 69 public <T> void startAnimation2d(T[][] objects, final Runnable finishListener, in startAnimation2d() argument 71 AppearAnimationProperties properties = getDelays(objects); in startAnimation2d() 72 startAnimations(properties, objects, finishListener, creator); in startAnimation2d() 75 public <T> void startAnimation(T[] objects, final Runnable finishListener, in startAnimation() argument 77 AppearAnimationProperties properties = getDelays(objects); in startAnimation() 78 startAnimations(properties, objects, finishListener, creator); in startAnimation() 98 creator.createAnimation(objects[row], delay, mDuration, in startAnimations() [all …]
|
/aosp14/frameworks/base/core/java/android/widget/ |
H A D | ArrayAdapter.java | 164 public ArrayAdapter(@NonNull Context context, @LayoutRes int resource, @NonNull T[] objects) { in ArrayAdapter() argument 165 this(context, resource, 0, Arrays.asList(objects)); in ArrayAdapter() 179 @IdRes int textViewResourceId, @NonNull T[] objects) { in ArrayAdapter() argument 180 this(context, resource, textViewResourceId, Arrays.asList(objects)); in ArrayAdapter() 192 @NonNull List<T> objects) { in ArrayAdapter() argument 193 this(context, resource, 0, objects); in ArrayAdapter() 206 @IdRes int textViewResourceId, @NonNull List<T> objects) { in ArrayAdapter() argument 207 this(context, resource, textViewResourceId, objects, false); in ArrayAdapter() 211 @IdRes int textViewResourceId, @NonNull List<T> objects, boolean objsFromResources) { in ArrayAdapter() argument 215 mObjects = objects; in ArrayAdapter()
|
/aosp14/frameworks/base/core/java/android/metrics/ |
H A D | MetricsReader.java | 86 Object[] objects; in read() local 88 objects = (Object[]) data; in read() 91 objects = new Object[1]; in read() 92 objects[0] = data; in read() 94 final LogMaker log = new LogMaker(objects) in read()
|
/aosp14/frameworks/base/services/core/java/com/android/server/timezonedetector/ |
H A D | OrdinalGenerator.java | 53 int[] ordinals(List<T> objects) { in ordinals() argument 54 int[] ordinals = new int[objects.size()]; in ordinals() 56 ordinals[i] = ordinal(objects.get(i)); in ordinals()
|
/aosp14/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/ |
H A D | ListViewAddRemoveNoTransition.java | 84 List<String> objects) { in StableArrayAdapter() argument 85 super(context, textViewResourceId, objects); in StableArrayAdapter() 86 for (int i = 0; i < objects.size(); ++i) { in StableArrayAdapter() 87 mIdMap.put(objects.get(i), i); in StableArrayAdapter()
|
H A D | ListViewAddRemove.java | 149 List<String> objects) { in StableArrayAdapter() argument 150 super(context, textViewResourceId, objects); in StableArrayAdapter() 151 for (int i = 0; i < objects.size(); ++i) { in StableArrayAdapter() 152 mIdMap.put(objects.get(i), i); in StableArrayAdapter()
|
/aosp14/frameworks/base/config/ |
H A D | README.md | 8 * dirty-image-objects: List of objects in the boot image which are known to 9 become dirty. This helps binning objects in the image file.
|
H A D | OWNERS | 5 per-file dirty-image-objects = ishcheikin@google.com, ngeoffray@google.com, vmarko@google.com
|
H A D | dirty-image-objects | 18 # Dirty-image-objects file for boot image. 23 # The image writer will bin these objects together in the image. 27 # --boot-image=/system/framework/boot.art --dump-dirty-objects
|
/aosp14/frameworks/base/core/java/android/util/ |
H A D | EventLog.java | 255 Object[] objects = (Object[]) object; in encodeObject() local 256 if (objects.length > 255) { in encodeObject() 259 byte[][] bytes = new byte[objects.length][]; in encodeObject() 261 for (int i = 0; i < objects.length; i++) { in encodeObject() 262 bytes[i] = encodeObject(objects[i]); in encodeObject() 268 .put((byte) objects.length); in encodeObject() 269 for (int i = 0; i < objects.length; i++) { in encodeObject()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/screenrecord/ |
H A D | ScreenRecordingAdapter.java | 41 List<ScreenRecordingAudioSource> objects) { in ScreenRecordingAdapter() argument 42 super(context, resource, objects); in ScreenRecordingAdapter()
|
/aosp14/frameworks/base/core/tests/coretests/src/android/widget/ |
H A D | ListViewTest.java | 132 public Adapter(Context context, int resource, List<T> objects) { in Adapter() argument 133 super(context, resource, objects); in Adapter()
|
/aosp14/frameworks/base/core/tests/coretests/src/android/widget/focus/ |
H A D | ListWithMailMessages.java | 119 List<MailMessage> objects) { in MyAdapter() argument 120 super(context, resource, objects); in MyAdapter()
|
/aosp14/frameworks/base/keystore/java/android/security/ |
H A D | Credentials.java | 170 public static byte[] convertToPem(Certificate... objects) in convertToPem() argument 175 for (Certificate o : objects) { in convertToPem()
|
/aosp14/frameworks/base/core/proto/android/app/ |
H A D | time_zone_detector.proto | 78 // several objects (i.e. so the same time zone ID is always mapped to the same 79 // ordinal), this allows comparisons between those objects. For example, we can
|
/aosp14/frameworks/base/ |
H A D | Android.mk | 22 $(eval $(call declare-1p-copy-files,frameworks/base,dirty-image-objects))
|
/aosp14/system/core/storaged/ |
H A D | EventLogTags.logtags | 27 # 1: Number of objects
|
/aosp14/frameworks/base/core/proto/android/util/ |
H A D | event_log_tags.proto | 55 OBJECTS = 1; // Number of objects
|
/aosp14/frameworks/base/core/java/android/view/ |
H A D | EventLogTags.logtags | 30 # 1: Number of objects
|
/aosp14/frameworks/base/packages/SystemUI/ |
H A D | README.md | 43 since these objects may be started before the device has finished booting. 144 Tracks large objects in sysui to see if there are leaks.
|
/aosp14/frameworks/base/core/java/android/text/ |
H A D | DynamicLayout.java | 656 Directions[] objects = new Directions[1]; in reflow() local 675 objects[0] = reflowed.getLineDirections(i); in reflow() 690 mObjects.insertAt(startline + i, objects); in reflow()
|
/aosp14/frameworks/base/packages/SystemUI/docs/ |
H A D | status-bar-data-pipeline.md | 43 define `Model` objects at this layer so that clients do not have to rely on 48 Here is where we define the business logic and transform the data layer objects
|
/aosp14/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/windowdecor/ |
H A D | WindowDecorationTests.java | 532 private MockObjectSupplier(List<T> objects, Supplier<T> defaultSupplier) { in MockObjectSupplier() argument 533 mObjects = objects; in MockObjectSupplier()
|
/aosp14/frameworks/base/cmds/uinput/ |
H A D | README.md | 64 objects:
|