/frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/ |
D | AppearAnimationUtils.java | 61 public void startAnimation2d(View[][] objects, final Runnable finishListener) { in startAnimation2d() argument 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() [all …]
|
/frameworks/base/core/tests/utiltests/src/android/util/ |
D | EventLogTest.java | 64 Object[] objects = ((Object[]) event.withNewData( in testWithNewData() local 66 assertEquals(4, objects.length); in testWithNewData() 67 assertTrue(objects[0].equals(111)); in testWithNewData() 68 assertTrue(objects[1].equals(2.22f)); in testWithNewData() 69 assertTrue(objects[2].equals(333L)); in testWithNewData() 70 assertTrue(objects[3].equals("444")); in testWithNewData()
|
/frameworks/base/services/foldables/devicestateprovider/tests/src/com/android/server/policy/ |
D | BookStylePreferredScreenCalculatorTest.java | 60 arguments.forEach(objects -> { in transitionAllStates_noCrashes() 61 final HingeAngle hingeAngle = (HingeAngle) objects.get(0); in transitionAllStates_noCrashes() 62 final boolean likelyTent = (boolean) objects.get(1); in transitionAllStates_noCrashes() 63 final boolean likelyReverseWedge = (boolean) objects.get(2); in transitionAllStates_noCrashes()
|
/frameworks/base/core/java/android/widget/ |
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()
|
/frameworks/base/services/core/java/com/android/server/timezonedetector/ |
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()
|
/frameworks/base/core/java/android/metrics/ |
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()
|
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/ |
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()
|
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()
|
/frameworks/base/config/ |
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.
|
D | Android.bp | 45 name: "dirty-image-objects", 46 src: "dirty-image-objects", 47 filename: "dirty-image-objects",
|
D | OWNERS | 5 per-file dirty-image-objects = ishcheikin@google.com, ngeoffray@google.com, vmarko@google.com
|
/frameworks/base/core/java/android/util/ |
D | EventLog.java | 258 Object[] objects = (Object[]) object; in encodeObject() local 259 if (objects.length > 255) { in encodeObject() 262 byte[][] bytes = new byte[objects.length][]; in encodeObject() 264 for (int i = 0; i < objects.length; i++) { in encodeObject() 265 bytes[i] = encodeObject(objects[i]); in encodeObject() 271 .put((byte) objects.length); in encodeObject() 272 for (int i = 0; i < objects.length; i++) { in encodeObject()
|
/frameworks/wilhelm/src/ |
D | Android.bp | 143 "objects/C3DGroup.cpp", 144 "objects/CAudioPlayer.cpp", 145 "objects/CAudioRecorder.cpp", 146 "objects/CEngine.cpp", 147 "objects/COutputMix.cpp", 148 "objects/CMediaPlayer.cpp",
|
D | README.txt | 14 objects/ OpenSL ES and OpenMAX AL objects aka classes
|
/frameworks/native/opengl/specs/ |
D | EGL_ANDROID_native_fence_sync.txt | 39 This extension enables the creation of EGL fence sync objects that are 41 using a file descriptor. These EGL fence sync objects have nearly 48 objects must have a signal status like that of an EGLSyncKHR object that 227 1. Should EGLSyncKHR objects that wrap native fence objects use the 232 We don't want to require all EGL fence sync objects to wrap native fence 233 objects, so we need some way to tell the EGL implementation at sync object 237 that might be added for fence sync objects, but there may be things that 238 get added that don't make sense in the context of native fence objects. 260 behavior of EGL native fence sync objects, so it is left as an attribute 266 - Reworded the extension to refer to "native fence" objects rather than [all …]
|
/frameworks/native/opengl/libs/EGL/ |
D | egl_display.cpp | 102 objects.insert(object); in addObject() 107 objects.erase(object); in removeObject() 112 if (objects.find(object) != objects.end()) { in getObject() 452 size_t count = objects.size(); in terminate() 454 for (auto o : objects) { in terminate() 459 objects.clear(); in terminate()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenrecord/ |
D | ScreenRecordingAdapter.java | 41 List<ScreenRecordingAudioSource> objects) { in ScreenRecordingAdapter() argument 42 super(context, resource, objects); in ScreenRecordingAdapter()
|
/frameworks/base/core/tests/coretests/src/android/widget/ |
D | ListViewTest.java | 132 public Adapter(Context context, int resource, List<T> objects) { in Adapter() argument 133 super(context, resource, objects); in Adapter()
|
/frameworks/base/core/tests/coretests/src/android/widget/focus/ |
D | ListWithMailMessages.java | 119 List<MailMessage> objects) { in MyAdapter() argument 120 super(context, resource, objects); in MyAdapter()
|
/frameworks/base/keystore/java/android/security/ |
D | Credentials.java | 170 public static byte[] convertToPem(Certificate... objects) in convertToPem() argument 175 for (Certificate o : objects) { in convertToPem()
|
/frameworks/rs/script_api/ |
D | rs_object_info.spec | 21 or Sampler object. These objects are created from Java. You can't create them from a 64 Samplers objects define how Allocations can be read as structure within a kernel.
|
/frameworks/compile/slang/tests/P_reduce_general_result/ |
D | ScriptC_reduce_general_result.java.expect | 133 mTempIns = null; // make Java objects eligible for garbage collection 169 mTempIns = null; // make Java objects eligible for garbage collection 210 mTempIns = null; // make Java objects eligible for garbage collection 251 mTempIns = null; // make Java objects eligible for garbage collection 287 mTempIns = null; // make Java objects eligible for garbage collection 328 mTempIns = null; // make Java objects eligible for garbage collection 369 mTempIns = null; // make Java objects eligible for garbage collection 405 mTempIns = null; // make Java objects eligible for garbage collection 446 mTempIns = null; // make Java objects eligible for garbage collection 487 mTempIns = null; // make Java objects eligible for garbage collection [all …]
|
/frameworks/native/libs/binder/ |
D | Parcel.cpp | 560 const binder_size_t* objects = otherKernelFields->mObjects; in appendFrom() local 565 size_t off = objects[i]; in appendFrom() 584 binder_size_t* objects = (binder_size_t*)realloc(kernelFields->mObjects, in appendFrom() local 586 if (objects == (binder_size_t*)nullptr) { in appendFrom() 589 kernelFields->mObjects = objects; in appendFrom() 596 size_t off = objects[i] - offset + startPos; in appendFrom() 1825 binder_size_t* objects = in writeObject() local 1827 if (objects == nullptr) return NO_MEMORY; in writeObject() 1828 kernelFields->mObjects = objects; in writeObject() 2725 void Parcel::ipcSetDataReference(const uint8_t* data, size_t dataSize, const binder_size_t* objects, in ipcSetDataReference() argument [all …]
|
/frameworks/compile/mclinker/include/mcld/LD/ |
D | DiagCommonKinds.inc | 34 "cannot link shared objects with -static option.\nShared object `%0': %1", 35 "cannot link shared objects with -static option.\nShared object `%0': %1") 99 "objects", 101 "objects")
|
/frameworks/compile/slang/lit-tests/P_ref_count/ |
D | ref_count.rscript | 35 rsDebug("good objects", 0);
|