Home
last modified time | relevance | path

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

12345678910>>...49

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/
H A DNotificationMemoryLogger.kt105 use.uid,
106 use.style,
107 use.count,
123 use.seenCount
161 val use = regex
171 use.count++
175 use.countWithInflatedViews++
180 use.smallIconBitmapCount++
185 use.largeIconBitmapCount++
190 use.bigPictureBitmapCount++
[all …]
H A DNotificationMemoryDumper.kt151 .flatMap { use ->
152 use.viewUsage.map { view ->
154 use.packageName,
163 use.notificationKey.replace('|', '│')
/aosp14/frameworks/base/core/proto/android/media/
H A Daudioattributes.proto5 * you may not use this file except in compliance with the License.
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.
61 // Usage value to use when the usage is voice communications, such as
72 // Usage value to use when the usage is telephony ringtone.
74 // Usage value to use when the usage is a request to enter/end a
94 // Usage value to use when the usage is for game audio.
[all …]
/aosp14/frameworks/base/media/jni/soundpool/
H A DAndroid.bp49 "modernize-use-bool-literals",
50 "modernize-use-default-member-init",
51 "modernize-use-emplace",
52 "modernize-use-equals-default",
53 "modernize-use-equals-delete",
55 "modernize-use-noexcept",
56 "modernize-use-nullptr",
57 "modernize-use-override",
59 "modernize-use-transparent-functors",
60 "modernize-use-uncaught-exceptions",
[all …]
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/input/
H A DKeyboardLayoutManagerTests.kt204 NewSettingsApiFlag(false).use {
220 NewSettingsApiFlag(true).use {
236 NewSettingsApiFlag(false).use {
271 NewSettingsApiFlag(true).use {
288 NewSettingsApiFlag(false).use {
316 NewSettingsApiFlag(true).use {
385 NewSettingsApiFlag(true).use {
441 NewSettingsApiFlag(true).use {
476 NewSettingsApiFlag(true).use {
508 NewSettingsApiFlag(true).use {
[all …]
H A DKeyboardBacklightControllerTests.kt165 ).use {
183 ).use {
201 ).use {
227 ).use {
260 ).use {
296 ).use {
349 ).use {
385 ).use {
479 ).use {
506 ).use {
[all …]
/aosp14/frameworks/base/packages/SystemUI/docs/
H A 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.
H A 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
H A Dphysics-animation-layout.md4 …operties to animate, which animations to chain together, and the default physics parameters to use.
29use for animations of the given property. This allows the controller to configure stiffness and bo…
32 …ler’s configuration properties to build the animations, the controller can use them to actually ru…
34 In either case, the controller can use `super.animationForChild` to retrieve a `PhysicsPropertyAnim…
43 ...as well as shortcut methods to reduce the amount of boilerplate code needed for common use cases:
64 This would use the physics animations constructed by the layout to spring the view to *(100, 200)* …
69 …functionality to reduce the amount of boilerplate required for typical physics animation use cases.
72use different end actions for each property. For example, if we're animating a view to the bottom …
/aosp14/frameworks/base/cmds/idmap2/
H A DAndroid.bp4 // you may not use this file except in compliance with the License.
31 "-modernize-use-trailing-return-type",
44 "-modernize-use-default-member-init",
45 "-modernize-use-equals-default",
46 "-modernize-use-emplace",
47 "-modernize-use-nodiscard",
48 "-modernize-use-override",
49 "-modernize-use-trailing-return-type",
50 "-modernize-use-using",
/aosp14/frameworks/base/packages/StatementService/src/com/android/statementservice/network/retriever/
H A DStatementParser.kt47 StringReader(statementList).use { stringReader ->
48 JsonReader(stringReader).use { reader ->
70 StringReader(statementString).use { stringReader ->
71 JsonReader(stringReader).use { reader ->
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/docs/
H A 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
H A Ddebugging.md11 **TLDR**&nbsp; Don’t use Logs or Slogs except for error cases, Protologs are much more flexible,
12 easy to add and easy to use
32 For logging in Kotlin, use the [KtProtoLog](frameworks/base/libs/WindowManager/Shell/src/com/androi…
46 use the tool.
/aosp14/frameworks/base/core/tests/mockingcoretests/
H A 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
/aosp14/frameworks/base/services/permission/java/com/android/server/permission/access/util/
H A DAtomicFileExtensions.kt29 openRead().use(block)
38 startWrite().use {
/aosp14/frameworks/base/data/keyboards/
H A 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
H A 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
/aosp14/frameworks/base/apct-tests/perftests/packagemanager/src/android/os/
H A DPackageParsingPerfTest.kt109 params.cacheDirToParser(null).use { parser ->
120 params.cacheDirToParser(testFolder.newFolder()).use { parser ->
132 params.cacheDirToParser(null).use { parser ->
142 params.cacheDirToParser(testFolder.newFolder()).use { parser ->
252 return FileOutputStream(cacheFile).use { fos -> fos.write(cacheEntry) }
/aosp14/frameworks/base/core/tests/PackageInstallerSessions/src/android/content/pm/
H A DPackageSessionTests.kt271 .use { input ->
273 .use { output -> input.copyTo(output) }
336 .use { input ->
338 .use { output -> input.copyTo(output) }
380 .use { input ->
382 .use { output -> input.copyTo(output) }
/aosp14/frameworks/base/tools/dump-coverage/
H A 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
/aosp14/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/
H A DAndroid.bp4 // you may not use this file except in compliance with the License.
27 // comment it out for now since we need use some hidden APIs
/aosp14/frameworks/base/core/tests/benchmarks/
H A DREADME2 These benchmarks use the Caliper benchmark framework, and can be
18 # Run vogar in benchmark mode, telling it to use app_process (not dalvikvm which is default)
/aosp14/frameworks/base/core/proto/android/
H A Dtypedef.proto5 * you may not use this file except in compliance with the License.
28 // numbers between 50000 and 99999 are reserved for internal use within individual organizations
/aosp14/system/core/libstats/bootstrap/
H A DAndroid.bp5 // you may not use this file except in compliance with the License.
20 // All other clients should use libstatssocket, provided by the statsd apex.
/aosp14/system/core/fs_mgr/
H A DREADME.overlayfs.md11 Limited memory systems use read-only types of file systems or dynamic
57 The decisions whether to use traditional direct file-system remount,
67 It is also possible for an A/B device to use the system_<other> partition
68 for backing storage. eg: if booting off system_a+vendor_a, use system_b.
108 File a bug if a use case needs to be covered.
121 /data/overlay/ at this time. Acquiring space to use for

12345678910>>...49