Home
last modified time | relevance | path

Searched refs:objects (Results 1 – 25 of 78) sorted by relevance

1234

/frameworks/base/core/tests/coretests/src/android/util/
DEventLogTest.java45 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()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/
DAppearAnimationUtils.java61 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/java/android/widget/
DArrayAdapter.java164 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/
DOrdinalGenerator.java53 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/
DMetricsReader.java86 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/
DListViewAddRemoveNoTransition.java84 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()
DListViewAddRemove.java149 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/
DREADME.md8 * 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.
DOWNERS5 per-file dirty-image-objects = calin@google.com, ngeoffray@google.com, vmarko@google.com
/frameworks/base/core/java/android/util/
DEventLog.java255 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()
/frameworks/wilhelm/src/
DAndroid.bp143 "objects/C3DGroup.cpp",
144 "objects/CAudioPlayer.cpp",
145 "objects/CAudioRecorder.cpp",
146 "objects/CEngine.cpp",
147 "objects/COutputMix.cpp",
148 "objects/CMediaPlayer.cpp",
DREADME.txt14 objects/ OpenSL ES and OpenMAX AL objects aka classes
/frameworks/native/opengl/specs/
DEGL_ANDROID_native_fence_sync.txt39 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/
Degl_display.cpp107 objects.insert(object); in addObject()
112 objects.erase(object); in removeObject()
117 if (objects.find(object) != objects.end()) { in getObject()
442 size_t count = objects.size(); in terminate()
444 for (auto o : objects) { in terminate()
449 objects.clear(); in terminate()
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenrecord/
DScreenRecordingAdapter.java48 List<ScreenRecordingAudioSource> objects) { in ScreenRecordingAdapter() argument
49 super(context, resource, objects); in ScreenRecordingAdapter()
/frameworks/base/core/tests/coretests/src/android/widget/focus/
DListWithMailMessages.java119 List<MailMessage> objects) { in MyAdapter() argument
120 super(context, resource, objects); in MyAdapter()
/frameworks/base/core/tests/coretests/src/android/widget/
DListViewTest.java132 public Adapter(Context context, int resource, List<T> objects) { in Adapter() argument
133 super(context, resource, objects); in Adapter()
/frameworks/native/libs/binder/
DParcel.cpp424 const binder_size_t *objects = parcel->mObjects; in appendFrom() local
448 size_t off = objects[i]; in appendFrom()
481 binder_size_t *objects = in appendFrom() local
483 if (objects == (binder_size_t*)nullptr) { in appendFrom()
486 mObjects = objects; in appendFrom()
493 size_t off = objects[i] - offset + startPos; in appendFrom()
1438 binder_size_t* objects = (binder_size_t*)realloc(mObjects, newSize*sizeof(binder_size_t)); in writeObject() local
1439 if (objects == nullptr) return NO_MEMORY; in writeObject()
1440 mObjects = objects; in writeObject()
2232 const binder_size_t* objects, size_t objectsCount, release_func relFunc) in ipcSetDataReference() argument
[all …]
/frameworks/base/keystore/java/android/security/
DCredentials.java170 public static byte[] convertToPem(Certificate... objects) in convertToPem() argument
175 for (Certificate o : objects) { in convertToPem()
/frameworks/rs/script_api/
Drs_object_info.spec21 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/
DScriptC_reduce_general_result.java.expect133 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/compile/mclinker/include/mcld/LD/
DDiagCommonKinds.inc34 "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/base/core/proto/android/app/
Dtime_zone_detector.proto53 // several objects (i.e. so the same time zone ID is always mapped to the same
54 // ordinal), this allows comparisons between those objects. For example, we can
/frameworks/compile/slang/lit-tests/P_ref_count/
Dref_count.rscript35 rsDebug("good objects", 0);
/frameworks/base/
DAndroid.mk22 $(eval $(call declare-1p-copy-files,frameworks/base,dirty-image-objects))

1234