/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/clocks/ |
D | VPoint.kt | 96 operator fun times(pt: VPoint) = VPointF(x * pt.x, y * pt.y) in component1() method 98 operator fun times(pt: VPointF) = VPointF(x * pt.x, y * pt.y) in component1() method 100 operator fun times(value: Int) = VPointF(x * value, y * value) in component1() method 102 operator fun times(value: Float) = VPointF(x * value, y * value) in component1() method 127 operator fun Int.times(value: VPointF) = VPointF(this * value.x, this * value.y) in component1() method 129 operator fun Float.times(value: VPointF) = VPointF(this * value.x, this * value.y) in component1() method 181 operator fun times(pt: VPoint) = VPoint(x * pt.x, y * pt.y) in toPoint() method 183 operator fun times(pt: VPointF) = VPointF(x * pt.x, y * pt.y) in toPoint() method 185 operator fun times(value: Int) = VPoint(x * value, y * value) in toPoint() method 187 operator fun times(value: Float) = VPointF(x * value, y * value) in toPoint() method [all …]
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/qs/ |
D | TouchAnimatorTest.java | 216 private void verifyOnAnimationAtStart(int times) { in verifyOnAnimationAtStart() 220 private void verifyOnAnimationAtEnd(int times) { in verifyOnAnimationAtEnd() 224 private void verifyOnAnimationStarted(int times) { in verifyOnAnimationStarted()
|
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/pip/tv/ |
D | TvPipMenuControllerTest.java | 356 private void assertSwitchedToMoveMode(int times) { in assertSwitchedToMoveMode() 367 private void showAndAssertAllActionsMenu(boolean focusChange, int times) { in showAndAssertAllActionsMenu() 376 private void assertSwitchedToAllActionsMode(int times) { in assertSwitchedToAllActionsMode() 401 private void assertMenuClosed(int times) { in assertMenuClosed()
|
/frameworks/base/core/tests/coretests/src/com/android/internal/os/ |
D | KernelCpuUidActiveTimeReaderTest.java | 105 final long[][] times = increaseTime(new long[mUids.length][mCpus]); in testReadDelta() local 234 private void setCpusAndData(long[][] times) throws IOException { in setCpusAndData() 256 private String uidLines(int[] uids, long[][] times) { in uidLines() 285 private long getActiveTime(long[] times) { in getActiveTime()
|
D | KernelCpuUidClusterTimeReaderTest.java | 236 private void setCoresAndData(long[][] times) throws IOException { in setCoresAndData() 258 private long[] clusterTime(long[] times) { in clusterTime() 264 private String uidLines(int[] uids, long[][] times) { in uidLines() 316 public void onUidCpuTime(int uid, long[] times) { in onUidCpuTime()
|
D | KernelCpuUidFreqTimeReaderTest.java | 111 final long[][] times = increaseTime(new long[mUids.length][freqs.length]); in testReadDelta() local 249 private void setFreqsAndData(long[] freqs, long[][] times) throws IOException { in setFreqsAndData() 288 private String uidLines(int[] uids, long[][] times) { in uidLines() 340 public void onUidCpuTime(int uid, long[] times) { in onUidCpuTime()
|
D | KernelCpuUidUserSysTimeReaderTest.java | 250 private String uidLines(int[] uids, long[][] times) { in uidLines() 302 public void onUidCpuTime(int uid, long[] times) { in onUidCpuTime()
|
/frameworks/native/services/surfaceflinger/tests/unittests/ |
D | RefreshRateStatsTest.cpp | 67 auto times = mRefreshRateStats->getTotalTimes(); in TEST_F() local 114 auto times = mRefreshRateStats->getTotalTimes(); in TEST_F() local
|
D | VSyncDispatchRealtimeTest.cpp | 191 cbs.with_callback_times([](auto times) { EXPECT_THAT(times.size(), Eq(mIterations)); }); in TEST_F() 212 cb_receiver.with_callback_times([](auto times) { EXPECT_THAT(times.size(), Eq(mIterations)); }); in TEST_F() 234 cb_receiver.with_callback_times([](auto times) { EXPECT_THAT(times.size(), Eq(mIterations)); }); in TEST_F()
|
/frameworks/native/libs/cputimeinstate/ |
D | testtimeinstate.cpp | 61 auto times = getTotalCpuFreqTimes(); in TEST_F() local 67 auto times = getUidCpuFreqTimes(0); in TEST_F() local 133 auto times = getUidCpuFreqTimes(0); in TEST_F() local 369 auto times = kv.second; in TEST_F() local 392 auto times = kv.second; in TEST_F() local 489 auto times = kv.second; in TEST_F() local 501 auto times = getUidsCpuFreqTimes(); in TEST_F() local 529 auto times = getUidCpuFreqTimes(uid); in TEST_F() local 567 auto times = getUidCpuFreqTimes(0); in TEST_F() local 670 auto times = getUidsCpuFreqTimes(); in TEST_F() local
|
/frameworks/base/core/java/android/gesture/ |
D | GestureStroke.java | 52 final long[] times = new long[count]; in GestureStroke() local 87 private GestureStroke(RectF bbx, float len, float[] pts, long[] times) { in GestureStroke() 202 final long[] times = timestamps; in serialize() local
|
/frameworks/base/apct-tests/perftests/core/src/android/os/ |
D | ISomeService.aidl | 4 void readDisk(int times); in readDisk()
|
/frameworks/rs/toolkit/test/ |
D | BufferUtils.kt | 47 operator fun times(other: Int4) = Int4(x * other.x, y * other.y, z * other.z, w * other.w) in plus() method in com.example.testapp.Int4 48 operator fun times(n: Int) = Int4(x * n, y * n, z * n, w * n) in plus() method in com.example.testapp.Int4 70 operator fun times(other: Float4) = Float4(x * other.x, y * other.y, z * other.z, w * other.w) in plus() method in com.example.testapp.Float4 71 operator fun times(f: Float) = Float4(x * f, y * f, z * f, w * f) in plus() method in com.example.testapp.Float4 124 operator fun times(other: Rgba) = Rgba(r * other.r, g * other.g, b * other.b, a * other.a) shr 8 in plus() method in com.example.testapp.Rgba 125 operator fun times(scalar: Int) = Rgba(r * scalar, g * scalar, b * scalar, a * scalar) shr 8 in plus() method in com.example.testapp.Rgba 424 operator fun FloatArray.times(other: FloatArray) = FloatArray(size) { this[it] * other[it] } in <lambda>() method 425 operator fun FloatArray.times(other: Float) = FloatArray(size) { this[it] * other } in <lambda>() method
|
/frameworks/base/core/proto/android/os/ |
D | cpufreq.proto | 42 repeated TimeInState times = 2; field
|
/frameworks/base/services/core/jni/ |
D | com_android_server_power_stats_CpuPowerStatsCollector.cpp | 113 static int flatten(JNIEnv *env, const std::vector<std::vector<uint64_t>> ×, in flatten() 134 static int combineByBracket(JNIEnv *env, const std::vector<std::vector<uint64_t>> ×, in combineByBracket()
|
/frameworks/libs/systemui/toruslib/torus-math/src/main/java/com/google/android/torus/math/ |
D | Vector2.kt | 168 operator fun times(value: Float): Vector2 { in times() method in com.google.android.torus.math.Vector2 172 operator fun times(vector: Vector2): Vector2 { in times() method in com.google.android.torus.math.Vector2
|
D | Vector3.kt | 195 operator fun times(value: Float): Vector3 { in times() method in com.google.android.torus.math.Vector3 199 operator fun times(vector: Vector3): Vector3 { in times() method in com.google.android.torus.math.Vector3
|
/frameworks/base/media/java/android/media/ |
D | VolumeShaper.java | 534 final float[] times = new float[length / 2]; in fromParcelable() local 680 @NonNull float[] times, in Configuration() 767 private static @Nullable String checkCurveForErrors( in checkCurveForErrors() 809 private static void checkCurveForErrorsAndThrowException( in checkCurveForErrorsAndThrowException() 1010 public @NonNull Builder setCurve(@NonNull float[] times, @NonNull float[] volumes) { in setCurve()
|
/frameworks/base/tools/preload/ |
D | LoadedClass.java | 90 int[] times = new int[size]; in calculateMedian() local
|
/frameworks/native/opengl/libs/EGL/ |
D | MultifileBlobCache.cpp | 467 struct timespec times[2]; in get() local 502 struct timespec times[2]; in get() local 1007 struct timespec times[2]; in processTask() local
|
/frameworks/base/services/core/java/com/android/server/display/utils/ |
D | RollingBuffer.java | 162 long[] times = new long[size]; in expandBuffer() local
|
/frameworks/base/packages/EasterEgg/src/com/android/egg/landroid/ |
D | ComposeTools.kt | 40 operator fun Easing.times(next: Easing) = { x: Float -> next.transform(transform(x)) } in times() method
|
/frameworks/native/opengl/tests/fillrate/ |
D | fillrate.cpp | 130 nsecs_t times[32]; in main() local
|
/frameworks/native/services/inputflinger/tests/ |
D | TimerProvider_test.cpp | 45 std::vector<stime_t>* times = static_cast<std::vector<stime_t>*>(data); in pushTimeOntoVector() local 116 std::vector<stime_t>* times = static_cast<std::vector<stime_t>*>(callbackData); in TEST_F() local
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/ |
D | Point.java | 68 public Point times(float s) { in times() method in Point
|