Home
last modified time | relevance | path

Searched refs:use (Results 1 – 25 of 2191) sorted by relevance

12345678910>>...88

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/
DNotificationMemoryLogger.kt101 usageData.forEach { (_, use) -> in <lambda>() method
105 use.uid, in <lambda>()
106 use.style, in <lambda>()
107 use.count, in <lambda>()
108 use.countWithInflatedViews, in <lambda>()
109 toKb(use.smallIconObject), in <lambda>()
110 use.smallIconBitmapCount, in <lambda>()
111 toKb(use.largeIconObject), in <lambda>()
112 use.largeIconBitmapCount, in <lambda>()
113 toKb(use.bigPictureObject), in <lambda>()
[all …]
DNotificationMemoryDumper.kt151 .flatMap { use -> in <lambda>() method
152 use.viewUsage.map { view -> in <lambda>()
154 use.packageName, in <lambda>()
163 use.notificationKey.replace('|', '│') in <lambda>()
/frameworks/base/core/proto/android/media/
Daudioattributes.proto5 * you may not use this file except in compliance with the License.
38 // Content type value to use when the content type is unknown, or other than
41 // Content type value to use when the content type is speech.
43 // Content type value to use when the content type is music.
45 // Content type value to use when the content type is a soundtrack,
48 // Content type value to use when the content type is a sound used to
56 // Usage value to use when the usage is unknown.
58 // Usage value to use when the usage is media, such as music, or movie
61 // Usage value to use when the usage is voice communications, such as
64 // Usage value to use when the usage is in-call signalling, such as with a
[all …]
/frameworks/av/services/mediametrics/
DAndroid.bp41 // "modernize-use-auto", // found in MediaMetricsService.h, debatable - auto can obscure type
42 "modernize-use-bool-literals",
43 "modernize-use-default-member-init",
44 "modernize-use-emplace",
45 "modernize-use-equals-default",
46 "modernize-use-equals-delete",
47 // "modernize-use-nodiscard", // found in TimeMachine.h
48 "modernize-use-noexcept",
49 "modernize-use-nullptr",
50 "modernize-use-override",
[all …]
/frameworks/base/media/jni/soundpool/
DAndroid.bp48 // "modernize-use-auto", // found in StreamManager.h, debatable - auto can obscure type
49 "modernize-use-bool-literals",
50 "modernize-use-default-member-init",
51 "modernize-use-emplace",
52 "modernize-use-equals-default",
53 "modernize-use-equals-delete",
54 // "modernize-use-nodiscard", // found in SteamManager.h
55 "modernize-use-noexcept",
56 "modernize-use-nullptr",
57 "modernize-use-override",
[all …]
/frameworks/av/media/libaaudio/src/
DAndroid.bp38 // "modernize-use-auto", // found in AAudioAudio.cpp
39 "modernize-use-bool-literals",
40 "modernize-use-default-member-init",
41 "modernize-use-emplace",
42 "modernize-use-equals-default",
43 "modernize-use-equals-delete",
44 // "modernize-use-nodiscard", // found in aidl generated files
45 "modernize-use-noexcept",
46 "modernize-use-nullptr",
47 // "modernize-use-override", // found in aidl generated files
[all …]
/frameworks/rs/script_api/include/
Drs_graphics.rsh5 * you may not use this file except in compliance with the License.
39 * DEPRECATED. Do not use.
66 * DEPRECATED. Do not use.
92 * DEPRECATED. Do not use.
113 * DEPRECATED. Do not use.
140 * DEPRECATED. Do not use.
165 * DEPRECATED. Do not use.
183 * DEPRECATED. Do not use.
201 * DEPRECATED. Do not use.
219 * DEPRECATED. Do not use.
[all …]
/frameworks/base/packages/SystemUI/docs/
Ddialogs.md7 In order to have uniform styling in dialogs, use [SystemUIDialog][1] with its default theme.
8 If not possible, use [AlertDialog][2] with the SystemUI theme `R.style.Theme_SystemUI_Dialog`.
23 * `setTitle`: this will use `R.style.TextAppearance_Dialog_Title`.
24 * `setMessage`: this will use `R.style.TextAppearance_Dialog_Body_Message`.
25 * `SystemUIDialog.set<Positive|Negative|Neutral>Button` or `AlertDialog.setButton`: this will use
30 If needed to use the same style for all three buttons, the style attributes
42 When showing a dialog triggered by clicking on a `View`, you should use [DialogLaunchAnimator][6] to
57 Here's a short code snippet with an example on how to use the guidelines.
Dbroadcasts.md7 ## Why use the dispatcher?
16 ## Should I use the dispatcher?
33 … (not declared in `AndroidManifest`) that satisfies the constraints above, use the dispatcher to r…
43 Sticky broadcasts are `@Deprecated` since API 24 and the general recommendation is to use regular b…
47 * Do not use the dispatcher to obtain the last broadcast (by passing a null `BroadcastReceiver`). `…
50 ## How do I use the dispatcher?
52 Acquire the dispatcher by using `@Inject` to obtain a `BroadcastDispatcher`. Then, use the followin…
64 * @param executor An executor to dispatch [BroadcastReceiver.onReceive]. Pass null to use an
67 * Pass `null` to use the user of the context (system user in SystemUI).
68 * @param flags Flags to use when registering the receiver. [Context.RECEIVER_EXPORTED] by
/frameworks/base/cmds/idmap2/
DAndroid.bp4 // you may not use this file except in compliance with the License.
30 "-modernize-use-trailing-return-type",
42 "-modernize-use-default-member-init",
43 "-modernize-use-equals-default",
44 "-modernize-use-nodiscard",
45 "-modernize-use-override",
46 "-modernize-use-trailing-return-type",
47 "-modernize-use-using",
/frameworks/base/packages/StatementService/src/com/android/statementservice/network/retriever/
DStatementParser.kt47 StringReader(statementList).use { stringReader -> in <lambda>()
48 JsonReader(stringReader).use { reader -> in <lambda>()
70 StringReader(statementString).use { stringReader -> in <lambda>()
71 JsonReader(stringReader).use { reader -> in <lambda>()
/frameworks/compile/libbcc/tests/debuginfo/
DREADME10 Host tests use clang to build bytecode (bc) files, which are then executed
16 Target tests are similar, but instead of using clang, they use ant and
39 By default, llvm-lit will use the clang and bcc driver built in the android
40 output directory. If you wish to use different versions of these tools,
52 To execute all the tests from this directory, use the llvm-lit tool:
/frameworks/base/core/tests/mockingcoretests/
DREADME4 * you may not use this file except in compliance with the License.
18 The Android platform core tests that require additional mocking capabilities and use Extended
20 regular Mockito library, so tests that use it have to be verified and adapted. For that reason a
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/docs/
Dthreading.md22 We currently have multiple threads in use in the Shell library depending on the configuration by
42 - `ShellSplashScreenThread` (only for use with splashscreens)
51 To get the SysUI main thread, you can use the `@Main` annotation.
77 - In such cases inject `@ShellMainThread Handler` or use view.getHandler() which should be OK
79 - **Never use Looper.getMainLooper()**
83 - You can use a `TestShellExecutor` to control the processing of messages
/frameworks/base/data/keyboards/
DVendor_054c_Product_05c4.idc4 # you may not use this file except in compliance with the License.
25 # The power in mA used by this sensor while in use
34 # The power in mA used by this sensor while in use
DVendor_054c_Product_09cc.idc4 # you may not use this file except in compliance with the License.
25 # The power in mA used by this sensor while in use
34 # The power in mA used by this sensor while in use
/frameworks/compile/mclinker/include/mcld/LD/
DDiagAttribute.inc50 "conflicting way to use R9 in input %0.",
51 "conflicting way to use R9 in input %0.")
54 "RW static data addressing (SB-relative) conflicts the use of R9 "
56 "RW static data addressing (SB-relative) conflicts the use of R9 "
/frameworks/proto_logging/stats/enums/media/
Denums.proto5 * you may not use this file except in compliance with the License.
42 // We use ERROR_UNKNOWN = 0 as the default value should new error values
45 // We use NO_ERROR to be visually distinct from an ERROR enumeration,
/frameworks/opt/telephony/proto/src/
Dpersist_atoms.proto5 * you may not use this file except in compliance with the License.
190 // NOTE: StatsLog functions use int in place of enum
226 // Internal use only
254 // Internal use only
275 // Internal use only
322 // Internal use only
334 // Internal use only
348 // Internal use only
367 // Internal use only
371 // deprecated - please use NetworkRequestsV2 instead
[all …]
/frameworks/base/apct-tests/perftests/packagemanager/src/android/os/
DPackageParsingPerfTest.kt109 params.cacheDirToParser(null).use { parser -> in <lambda>()
120 params.cacheDirToParser(testFolder.newFolder()).use { parser -> in <lambda>()
132 params.cacheDirToParser(null).use { parser -> in <lambda>()
142 params.cacheDirToParser(testFolder.newFolder()).use { parser -> in <lambda>()
252 return FileOutputStream(cacheFile).use { fos -> fos.write(cacheEntry) } in <lambda>()
/frameworks/libs/modules-utils/
DREADME.md3 Libraries and utilities intended for use by module and framework code.
5 Since modules use the code in this project, it must adhere to mainline
/frameworks/base/tools/dump-coverage/
DREADME.md13 adb shell 'mkdir /data/data/com.android.deskclock/folder-to-use'
19 …system/lib/libdumpcoverage.so=dump:/data/data/com.android.deskclock/folder-to-use/coverage-file.ec'
31 adb pull /data/data/com.android.deskclock/folder-to-use/coverage-file.ec ~/path-on-your-computer
/frameworks/av/services/audiopolicy/engineconfigurable/tools/
DAndroid.bp4 // you may not use this file except in compliance with the License.
60 // The commented inputs must be provided to use this genrule_defaults
110 // The commented inputs must be provided to use this genrule_defaults
141 // The commented inputs must be provided to use this genrule_defaults
/frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/examples/CarEmu/
DAndroid.bp5 * you may not use this file except in compliance with the License.
17 // Import this namespace in order to use AOSP Car Emulator configuration example
88 // This is for Settings generation, must use socket port, so userdebug version is required
/frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/examples/Car/
DAndroid.bp5 * you may not use this file except in compliance with the License.
17 // Import this namespace in order to use AOSP Automotive configuration example
87 // This is for Settings generation, must use socket port, so userdebug version is required

12345678910>>...88