/frameworks/native/include/ftl/details/ |
D | array_traits.h | 138 template <template <typename, std::size_t> class Array> 141 friend bool operator==(const Array<T, N>& lhs, const Array<U, M>& rhs) { 146 friend bool operator<(const Array<T, N>& lhs, const Array<U, M>& rhs) { 151 friend bool operator>(const Array<T, N>& lhs, const Array<U, M>& rhs) { 156 friend bool operator!=(const Array<T, N>& lhs, const Array<U, M>& rhs) { 161 friend bool operator>=(const Array<T, N>& lhs, const Array<U, M>& rhs) { 166 friend bool operator<=(const Array<T, N>& lhs, const Array<U, M>& rhs) {
|
/frameworks/base/core/java/android/view/ |
D | InsetsSourceControl.java | 265 public static class Array implements Parcelable { class in InsetsSourceControl 269 public Array() { in Array() method in InsetsSourceControl.Array 275 public Array(@NonNull Array other, boolean copyControls) { in Array() method in InsetsSourceControl.Array 279 public Array(@NonNull Parcel in) { in Array() method in InsetsSourceControl.Array 284 public void setTo(@NonNull Array other, boolean copyControls) { in setTo() 346 public static final @NonNull Creator<Array> CREATOR = new Creator<>() { 347 public Array createFromParcel(Parcel in) { 348 return new Array(in); 351 public Array[] newArray(int size) { 352 return new Array[size]; [all …]
|
D | WindowRelayoutResult.java | 56 public final InsetsSourceControl.Array activeControls; 70 new InsetsState(), new InsetsSourceControl.Array()); in WindowRelayoutResult() 87 @NonNull InsetsSourceControl.Array activeControls) { in WindowRelayoutResult()
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
D | FrameValues.java | 19 import java.lang.reflect.Array; 35 return Array.getLength(super.getValue()); in getCount() 54 Object[] array = (Object[])Array.newInstance(value.getClass(), 1); in getValues() 78 return Array.get(value, index); in getValueAtIndex() 128 Array.set(curValue, index, value); in setValueAtIndex()
|
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/ |
D | RemoteAnimationDelegate.kt | 22 apps: Array<out RemoteAnimationTarget>?, 23 wallpapers: Array<out RemoteAnimationTarget>?, 24 nonApps: Array<out RemoteAnimationTarget>?,
|
/frameworks/base/tools/aapt2/format/binary/ |
D | ResEntryWriter_test.cpp | 84 std::unique_ptr<Array> array1 = util::make_unique<Array>(); in TEST_F() 89 std::unique_ptr<Array> array2 = util::make_unique<Array>(); in TEST_F() 153 std::unique_ptr<Array> array1 = util::make_unique<Array>(); in TEST_F() 158 std::unique_ptr<Array> array2 = util::make_unique<Array>(); in TEST_F()
|
/frameworks/compile/slang/tests/P_reduce_general_inputs/ |
D | ScriptC_reduce_general_inputs.java.expect | 129 throw new RSIllegalArgumentException("Array \"in1\" is null!"); 136 throw new RSIllegalArgumentException("Array \"in2\" is null!"); 140 … throw new RSRuntimeException("Array length mismatch between parameters \"in1\" and \"in2\"!"); 193 throw new RSIllegalArgumentException("Array \"in1\" is null!"); 200 throw new RSIllegalArgumentException("Array \"in2\" is null!"); 204 … throw new RSRuntimeException("Array length mismatch between parameters \"in1\" and \"in2\"!"); 257 throw new RSIllegalArgumentException("Array \"in1\" is null!"); 264 throw new RSIllegalArgumentException("Array \"in2\" is null!"); 268 throw new RSIllegalArgumentException("Array \"in2\" is not a multiple of 2 in length!"); 272 … throw new RSRuntimeException("Array length mismatch between parameters \"in1\" and \"in2\"!"); [all …]
|
/frameworks/base/core/java/android/hardware/camera2/marshal/impl/ |
D | MarshalQueryableArray.java | 27 import java.lang.reflect.Array; 121 int length = Array.getLength(value); 150 array = Array.newInstance(mComponentClass, arraySize); 158 Array.set(array, i, elem); 172 array = copyListToArray(arrayList, Array.newInstance(mComponentClass, arraySize)); 191 int arrayLength = Array.getLength(value); 214 marshaler.marshal((TElem)Array.get(array, index), buffer); 225 Object elem = Array.get(array, index);
|
/frameworks/compile/slang/tests/P_reduce_general_input/ |
D | ScriptC_reduce_general_input.java.expect | 156 throw new RSIllegalArgumentException("Array \"in1\" is null!"); 189 throw new RSIllegalArgumentException("Array \"in1\" is null!"); 222 throw new RSIllegalArgumentException("Array \"in1\" is null!"); 255 throw new RSIllegalArgumentException("Array \"in1\" is null!"); 288 throw new RSIllegalArgumentException("Array \"in1\" is null!"); 321 throw new RSIllegalArgumentException("Array \"in1\" is null!"); 354 throw new RSIllegalArgumentException("Array \"in1\" is null!"); 387 throw new RSIllegalArgumentException("Array \"in1\" is null!"); 420 throw new RSIllegalArgumentException("Array \"in1\" is null!"); 453 throw new RSIllegalArgumentException("Array \"in1\" is null!"); [all …]
|
/frameworks/base/tools/hoststubgen/hoststubgen/src/com/android/hoststubgen/visitors/ |
D | ImplGeneratingAdapter.kt | 60 interfaces: Array<String> in <lambda>() 139 exceptions: Array<String>?, in <lambda>() 264 exceptions: Array<String>?, in <lambda>() 296 exceptions: Array<String>?, in <lambda>() 314 exceptions: Array<String>?, in <lambda>() 372 exceptions: Array<String>?, in <lambda>() 404 exceptions: Array<String>?, in <lambda>() 422 exceptions: Array<String>?, in <lambda>()
|
D | BodyReplacingMethodVisitor.kt | 36 exceptions: Array<String>?, 145 local: Array<out Any>?, in visitFrame() 147 stack: Array<out Any>? in visitFrame() 266 labels: Array<out Label>? in visitLookupSwitchInsn() 333 start: Array<out Label>?, in visitLocalVariableAnnotation() 334 end: Array<out Label>?, in visitLocalVariableAnnotation()
|
/frameworks/base/telephony/common/com/android/internal/telephony/util/ |
D | ArrayUtils.java | 21 import java.lang.reflect.Array; 62 result = (T[]) Array.newInstance(kind, end + 1); in appendElement() 66 result = (T[]) Array.newInstance(kind, 1); in appendElement() 101 final T[] all = (T[]) Array.newInstance(kind, totalLength); in concatElements() 120 return (T[]) Array.newInstance(kind, 0); in createEmptyArray()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/kotlin/ |
D | BooleanFlowOperators.kt | 40 fun Array<Flow<Boolean>>.all(): Flow<Boolean> = allOf(*this) in <lambda>() method 69 fun Array<Flow<Boolean>>.any(): Flow<Boolean> = anyOf(*this) in <lambda>() method 88 fun Array<Flow<Boolean>>.none(): Flow<Boolean> = noneOf(*this) in <lambda>() method
|
/frameworks/base/tools/codegen/src/com/android/codegen/ |
D | Main.kt | 110 fun main(args: Array<String>) { in feature() 131 private fun handleUpdateFlag(cliArgs: Array<String>, sourceLines: List<String>): Array<String> { in handleUpdateFlag()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/desktopmode/ |
D | DesktopModeShellCommandHandler.kt | 27 override fun onShellCommand(args: Array<String>, pw: PrintWriter): Boolean { in onShellCommand() 52 private fun runMoveToDesktop(args: Array<String>, pw: PrintWriter): Boolean { in runMoveToDesktop() 70 private fun runMoveToNextDisplay(args: Array<String>, pw: PrintWriter): Boolean { in runMoveToNextDisplay()
|
/frameworks/libs/systemui/weathereffects/src/com/google/android/wallpaper/weathereffects/provider/ |
D | WeatherEffectsContentProvider.kt | 54 projection: Array<out String>?, in <lambda>() 56 selectionArgs: Array<out String>?, in <lambda>() 70 override fun delete(uri: Uri, selection: String?, selectionArgs: Array<out String>?): Int = 0 in <lambda>() 76 selectionArgs: Array<out String>? in <lambda>()
|
/frameworks/base/ravenwood/runtime-helper-src/libcore-fake/dalvik/system/ |
D | VMRuntime.java | 22 import java.lang.reflect.Array; 43 return Array.newInstance(componentType, minLength); in newUnpaddedArray()
|
/frameworks/base/core/java/android/app/servertransaction/ |
D | WindowStateInsetsControlChangeItem.java | 45 public InsetsSourceControl.Array mActiveControls; 70 @NonNull InsetsState insetsState, @NonNull InsetsSourceControl.Array activeControls) { in obtain() 78 instance.mActiveControls = new InsetsSourceControl.Array( in obtain() 110 mActiveControls = in.readTypedObject(InsetsSourceControl.Array.CREATOR); in WindowStateInsetsControlChangeItem()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/inflation/ |
D | NotifUiAdjustment.kt | 83 first: Array<RemoteInput>?, in areDifferent() 84 second: Array<RemoteInput>? in areDifferent() 96 first: Array<CharSequence>?, in areDifferent() 97 second: Array<CharSequence>? in areDifferent()
|
/frameworks/base/services/core/java/com/android/server/security/rkp/ |
D | RemoteProvisioningShellCommand.java | 47 import co.nstant.in.cbor.model.Array; 220 Array info = new Array() in composeCertificateRequestV1() 225 Array mac = new Array() in composeCertificateRequestV1() 232 Array csr = new Array() in composeCertificateRequestV1()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/dump/ |
D | SystemUIConfigDumpable.kt | 40 override fun dump(pw: PrintWriter, args: Array<out String>) { in <lambda>() 53 val services: Array<String> = context.resources.getStringArray(resId) in <lambda>() 57 private fun dumpServiceList(pw: PrintWriter, type: String, services: Array<String>?) { in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/clipboardoverlay/ |
D | ClipboardTransitionExecutor.kt | 79 apps: Array<RemoteAnimationTarget>, in onAnimationStart() 80 wallpapers: Array<RemoteAnimationTarget>, in onAnimationStart() 81 nonApps: Array<RemoteAnimationTarget>, in onAnimationStart()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ |
D | WindowManagerOcclusionManager.kt | 109 apps: Array<RemoteAnimationTarget>, in <lambda>() 110 wallpapers: Array<RemoteAnimationTarget>, in <lambda>() 111 nonApps: Array<RemoteAnimationTarget>, in <lambda>() 160 apps: Array<RemoteAnimationTarget>, in <lambda>() 161 wallpapers: Array<RemoteAnimationTarget>, in <lambda>() 162 nonApps: Array<RemoteAnimationTarget>, in <lambda>()
|
/frameworks/compile/slang/tests/P_reduce_general_accumulator/ |
D | ScriptC_reduce_general_accumulator.java.expect | 88 throw new RSIllegalArgumentException("Array \"in1\" is null!"); 121 throw new RSIllegalArgumentException("Array \"in1\" is null!"); 154 throw new RSIllegalArgumentException("Array \"in1\" is null!"); 187 throw new RSIllegalArgumentException("Array \"in1\" is null!"); 220 throw new RSIllegalArgumentException("Array \"in1\" is null!"); 253 throw new RSIllegalArgumentException("Array \"in1\" is null!"); 286 throw new RSIllegalArgumentException("Array \"in1\" is null!"); 319 throw new RSIllegalArgumentException("Array \"in1\" is null!"); 352 throw new RSIllegalArgumentException("Array \"in1\" is null!"); 385 throw new RSIllegalArgumentException("Array \"in1\" is null!"); [all …]
|
/frameworks/base/core/jni/hwbinder/ |
D | EphemeralStorage.cpp | 87 JNIEnv *env, Type ## Array arrayObj) { \ 88 Type ## Array obj = (Type ## Array)env->NewGlobalRef(arrayObj); \ 117 (Type ## Array)item.mObj, \ in DEFINE_ALLOC_VECTOR_METHODS()
|