Searched defs:objects (Results 1 - 21 of 21) sorted by relevance

/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DListViewAddRemove.java148 List<String> objects) {
149 super(context, textViewResourceId, objects);
150 for (int i = 0; i < objects.size(); ++i) {
151 mIdMap.put(objects.get(i), i);
147 StableArrayAdapter(Context context, int textViewResourceId, List<String> objects) argument
H A DListViewAddRemoveNoTransition.java84 List<String> objects) {
85 super(context, textViewResourceId, objects);
86 for (int i = 0; i < objects.size(); ++i) {
87 mIdMap.put(objects.get(i), i);
83 StableArrayAdapter(Context context, int textViewResourceId, List<String> objects) argument
/frameworks/base/core/tests/coretests/src/android/widget/
H A DListViewTest.java133 public Adapter(Context context, int resource, List<T> objects) { argument
134 super(context, resource, objects);
/frameworks/base/core/tests/coretests/src/android/widget/focus/
H A DListWithMailMessages.java118 List<MailMessage> objects) {
119 super(context, resource, objects);
117 MyAdapter(Context context, int resource, List<MailMessage> objects) argument
/frameworks/base/tests/CoreTests/android/core/
H A DHeapTest.java49 private static void makeRefs(Object objects[], SoftReference<Object> refs[]) { argument
50 for (int i = 0; i < objects.length; i++) {
51 objects[i] = (Object) new byte[8 * 1024];
52 refs[i] = new SoftReference<Object>(objects[i]);
71 private static void clearRefs(Object objects[], int skip) { argument
72 for (int i = 0; i < objects.length; i += skip) {
73 objects[i] = null;
77 private static void clearRefs(Object objects[]) { argument
78 clearRefs(objects, 1);
81 private static <T> void checkRefs(T objects[], SoftReferenc argument
177 makeRefs(Object objects[], WeakReference<Object> refs[]) argument
184 checkRefs(T objects[], WeakReference<T> refs[]) argument
229 makeRefs(Object objects[], PhantomReference<Object> refs[], ReferenceQueue<Object> queue) argument
237 checkRefs(T objects[], PhantomReference<T> refs[], ReferenceQueue<T> queue) argument
359 makeRefs(FinalizableObject objects[], WeakReference<FinalizableObject> refs[]) argument
[all...]
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DYearPickerView.java105 public YearAdapter(Context context, int resource, List<String> objects) { argument
106 super(context, resource, objects);
/frameworks/base/core/java/android/widget/
H A DArrayAdapter.java41 * objects. By default this class expects that the provided resource id references
47 * the array. You can add lists or arrays of custom objects. Override the toString() method
48 * of your objects to determine what text will be displayed for the item in the list.
80 * Contains the list of objects that represent the data of this ArrayAdapter.
136 * @param objects The objects to represent in the ListView.
138 public ArrayAdapter(@NonNull Context context, @LayoutRes int resource, @NonNull T[] objects) { argument
139 this(context, resource, 0, Arrays.asList(objects));
149 * @param objects The objects t
151 ArrayAdapter(@onNull Context context, @LayoutRes int resource, @IdRes int textViewResourceId, @NonNull T[] objects) argument
164 ArrayAdapter(@onNull Context context, @LayoutRes int resource, @NonNull List<T> objects) argument
178 ArrayAdapter(@onNull Context context, @LayoutRes int resource, @IdRes int textViewResourceId, @NonNull List<T> objects) argument
[all...]
/frameworks/base/keystore/java/android/security/
H A DCredentials.java128 * Convert objects to a PEM format which is used for
131 public static byte[] convertToPem(Certificate... objects) argument
136 for (Certificate o : objects) {
143 * Convert objects from PEM format, which is used for
/frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
H A DMtpDocumentsProviderTest.java805 MtpObjectInfo[] objects) throws FileNotFoundException {
806 final int[] handles = new int[objects.length];
808 for (final MtpObjectInfo info : objects) {
800 setupDocuments( int deviceId, int storageId, int parentHandle, String parentDocumentId, MtpObjectInfo[] objects) argument
/frameworks/base/packages/Osu/src/com/android/hotspot2/utils/
H A DHTTPRequest.java166 private static byte[] hash(Object... objects) throws GeneralSecurityException { argument
171 for (Object object : objects) {
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/
H A DAppearAnimationUtils.java64 public void startAnimation2d(View[][] objects, final Runnable finishListener) { argument
65 startAnimation2d(objects, finishListener, this);
68 public void startAnimation(View[] objects, final Runnable finishListener) { argument
69 startAnimation(objects, finishListener, this);
72 public <T> void startAnimation2d(T[][] objects, final Runnable finishListener, argument
74 AppearAnimationProperties properties = getDelays(objects);
75 startAnimations(properties, objects, finishListener, creator);
78 public <T> void startAnimation(T[] objects, final Runnable finishListener, argument
80 AppearAnimationProperties properties = getDelays(objects);
81 startAnimations(properties, objects, finishListene
84 startAnimations(AppearAnimationProperties properties, T[] objects, final Runnable finishListener, AppearAnimationCreator<T> creator) argument
107 startAnimations(AppearAnimationProperties properties, T[][] objects, final Runnable finishListener, AppearAnimationCreator<T> creator) argument
[all...]
/frameworks/native/opengl/libs/EGL/
H A Degl_display.h137 SortedVector<egl_object_t*> objects; member in class:android::egl_display_t
187 // An egl_display_ptr is a kind of smart pointer for egl_display_t objects.
/frameworks/base/core/java/android/preference/
H A DPreferenceActivity.java270 public HeaderAdapter(Context context, List<Header> objects, int layoutResId, argument
272 super(context, 0, objects);
/frameworks/base/core/java/com/android/internal/app/
H A DAlertController.java1155 CharSequence[] objects) {
1156 super(context, resource, textViewResourceId, objects);
1154 CheckedItemAdapter(Context context, int resource, int textViewResourceId, CharSequence[] objects) argument
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAlertController.java994 CharSequence[] objects) {
995 super(context, resource, textViewResourceId, objects);
993 CheckedItemAdapter(Context context, int resource, int textViewResourceId, CharSequence[] objects) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/egg/
H A DMLand.java65 public static void L(String s, Object ... objects) { argument
67 Log.d(TAG, objects.length == 0 ? s : String.format(s, objects));
665 // 1. Move all objects and update bounds
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/store/
H A DSetterStore.java1116 private static int mergedHashCode(Object... objects) { argument
1117 return Arrays.hashCode(objects);
/frameworks/native/libs/binder/
H A DParcel.cpp498 const binder_size_t *objects = parcel->mObjects; local
520 // Count objects in range
522 size_t off = objects[i];
548 // grow objects
552 binder_size_t *objects =
554 if (objects == (binder_size_t*)0) {
557 mObjects = objects;
561 // append and acquire objects
564 size_t off = objects[i] - offset + startPos;
657 const binder_size_t* Parcel::objects() cons function in class:android::Parcel
2194 ipcSetDataReference(const uint8_t* data, size_t dataSize, const binder_size_t* objects, size_t objectsCount, release_func relFunc, void* relCookie) argument
2254 binder_size_t* const objects = mObjects; local
2268 binder_size_t* const objects = mObjects; local
2410 binder_size_t* objects = NULL; local
2466 binder_size_t* objects = local
[all...]
/frameworks/support/v7/mediarouter/src/android/support/v7/app/
H A DMediaRouteControllerDialog.java1169 public VolumeGroupAdapter(Context context, List<MediaRouter.RouteInfo> objects) { argument
1170 super(context, 0, objects);
1333 * Bitmap objects first, and then compares URIs only if bitmap is unchanged with
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java713 * objects.
852 * Set of IntentSenderRecord objects that are currently active.
1122 * Current configuration information. HistoryRecord objects are given
6164 // Stopping user, remove all objects for the user.
14851 ArrayList<Integer> objects; field in class:ActivityManagerService.ItemMatcher
14871 if (objects == null) {
14872 objects = new ArrayList<Integer>();
14874 objects.add(objectId);
14909 if (objects != null) {
14910 for (int i=0; i<objects
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 910 milliseconds