/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/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/core/java/android/metrics/ |
D | MetricsReader.java | 88 Object[] objects; in read() local 90 objects = (Object[]) data; in read() 93 objects = new Object[1]; in read() 94 objects[0] = data; in read() 96 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/wilhelm/src/ |
D | Android.bp | 135 "objects/C3DGroup.cpp", 136 "objects/CAudioPlayer.cpp", 137 "objects/CAudioRecorder.cpp", 138 "objects/CEngine.cpp", 139 "objects/COutputMix.cpp", 140 "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 | 109 objects.insert(object); in addObject() 114 objects.erase(object); in removeObject() 119 if (objects.find(object) != objects.end()) { in getObject() 489 size_t count = objects.size(); in terminate() 491 for (auto o : objects) { in terminate() 496 objects.clear(); in terminate()
|
/frameworks/native/libs/binder/ |
D | Parcel.cpp | 384 const binder_size_t *objects = parcel->mObjects; in appendFrom() local 408 size_t off = objects[i]; in appendFrom() 441 binder_size_t *objects = in appendFrom() local 443 if (objects == (binder_size_t*)nullptr) { in appendFrom() 446 mObjects = objects; in appendFrom() 453 size_t off = objects[i] - offset + startPos; in appendFrom() 1394 binder_size_t* objects = (binder_size_t*)realloc(mObjects, newSize*sizeof(binder_size_t)); in writeObject() local 1395 if (objects == nullptr) return NO_MEMORY; in writeObject() 1396 mObjects = objects; in writeObject() 2495 const binder_size_t* objects, size_t objectsCount, release_func relFunc, void* relCookie) in ipcSetDataReference() argument [all …]
|
/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/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/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/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/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | KeyguardUserSwitcher.java | 160 View[] objects = new View[count]; in startAppearAnimation() local 162 objects[i] = mUserSwitcher.getChildAt(i); in startAppearAnimation() 166 mAppearAnimationUtils.startAnimation(objects, new Runnable() { in startAppearAnimation()
|
/frameworks/base/keystore/java/android/security/ |
D | Credentials.java | 135 public static byte[] convertToPem(Certificate... objects) in convertToPem() argument 140 for (Certificate o : objects) { in convertToPem()
|
/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);
|
/frameworks/compile/slang/tests/P_reduce_general_examples_halter/ |
D | ScriptC_reduce_general_examples_halter.java.expect | 64 mTempIns = null; // make Java objects eligible for garbage collection 100 mTempIns = null; // make Java objects eligible for garbage collection
|
/frameworks/base/packages/SystemUI/docs/ |
D | dagger.md | 76 For objects which extend SystemUI and require injection, you can define an 182 an inflater that supports injected objects, call InjectionInflationController#injectable, 184 objects when needed.
|
/frameworks/base/config/ |
D | hiddenapi-greylist-packages.txt | 38 org.apache.xpath.objects
|
/frameworks/compile/slang/tests/P_reduce_general_examples_explicit/ |
D | ScriptC_reduce_general_examples_explicit.java.expect | 73 mTempIns = null; // make Java objects eligible for garbage collection 109 mTempIns = null; // make Java objects eligible for garbage collection 145 mTempIns = null; // make Java objects eligible for garbage collection
|
/frameworks/native/include/binder/ |
D | IPCThreadState.h | 168 const binder_size_t* objects, size_t objectsSize,
|
/frameworks/native/libs/binder/include/binder/ |
D | IPCThreadState.h | 168 const binder_size_t* objects, size_t objectsSize,
|
/frameworks/base/core/proto/android/util/ |
D | event_log_tags.proto | 55 OBJECTS = 1; // Number of objects
|