/aosp_15_r20/prebuilts/go/linux-x86/src/sync/atomic/ |
D | doc.go | 67 // Consider using the more ergonomic and less error-prone [Int32.Swap] instead. 71 // Consider using the more ergonomic and less error-prone [Int64.Swap] instead 76 // Consider using the more ergonomic and less error-prone [Uint32.Swap] instead. 80 // Consider using the more ergonomic and less error-prone [Uint64.Swap] instead 85 // Consider using the more ergonomic and less error-prone [Uintptr.Swap] instead. 89 // Consider using the more ergonomic and less error-prone [Pointer.Swap] instead. 93 // Consider using the more ergonomic and less error-prone [Int32.CompareAndSwap] instead. 97 // Consider using the more ergonomic and less error-prone [Int64.CompareAndSwap] instead 102 // Consider using the more ergonomic and less error-prone [Uint32.CompareAndSwap] instead. 106 // Consider using the more ergonomic and less error-prone [Uint64.CompareAndSwap] instead [all …]
|
/aosp_15_r20/frameworks/layoutlib/validator/resources/ |
H A D | strings.properties | 29 …tially_obscured = This item may be obscured by other on-screen content. Consider manually testing … 52 result_message_brief_image_contrast_not_sufficient = Consider increasing the contrast ratio between… 53 …or of <tt>%3$s</tt> and an estimated background color of <tt>%4$s</tt>. Consider increasing this r… 54 … color of <tt>%3$s</tt> and provided background color of <tt>%4$s</tt>. Consider increasing this r… 55 …or of <tt>%3$s</tt> and an estimated background color of <tt>%4$s</tt>. Consider increasing this r… 56 … color of <tt>%3$s</tt> and provided background color of <tt>%4$s</tt>. Consider increasing this r… 91 result_message_brief_text_contrast_not_sufficient = Consider increasing this item\'s text foregroun… 92 …on a text color of <tt>%2$s</tt> and background color of <tt>%3$s</tt>. Consider increasing this i… 93 …on a text color of <tt>%2$s</tt> and background color of <tt>%3$s</tt>. Consider using colors that… 94 …olor of <tt>%2$s</tt> and non-opaque background color of <tt>%3$s</tt>. Consider increasing this i… [all …]
|
/aosp_15_r20/external/accessibility-test-framework/src/main/resources/resources-en-rGB/ |
H A D | strings.xml | 28 …ntially_obscured">This item may be obscured by other on-screen content. Consider manually testing … 74 …<string name="result_message_brief_image_contrast_not_sufficient">Consider increasing the contrast… 76 …tt> and an estimated background colour of <tt>%4$s</tt>. Consider increasing this r… 78 …lt;/tt> and provided background colour of <tt>%4$s</tt>. Consider increasing this r… 80 …tt> and an estimated background colour of <tt>%4$s</tt>. Consider increasing this r… 82 …lt;/tt> and provided background colour of <tt>%4$s</tt>. Consider increasing this r… 160 …<string name="result_message_brief_text_contrast_not_sufficient">Consider increasing this item\'s … 162 …>%2$s</tt> and background colour of <tt>%3$s</tt>. Consider increasing this i… 164 …>%2$s</tt> and background colour of <tt>%3$s</tt>. Consider using colours tha… 166 …;/tt> and non-opaque background colour of <tt>%3$s</tt>. Consider increasing this i… [all …]
|
/aosp_15_r20/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/transformations/ast/body/ |
H A D | ClassOrInterfaceDeclarationTransformationsTest.java | 44 protected ClassOrInterfaceDeclaration consider(String code) { in consider() method in ClassOrInterfaceDeclarationTransformationsTest 53 ClassOrInterfaceDeclaration cid = consider("class A {}"); in settingName() 62 ClassOrInterfaceDeclaration cid = consider("class A {}"); in classToInterface() 69 ClassOrInterfaceDeclaration cid = consider("interface A {}"); in interfaceToClass() 78 ClassOrInterfaceDeclaration cid = consider("class A {}"); in addingTypeParameterWhenThereAreNone() 85 ClassOrInterfaceDeclaration cid = consider("class A<U> {}"); in addingTypeParameterAsFirstWhenThereAreSome() 92 ClassOrInterfaceDeclaration cid = consider("class A<U> {}"); in addingTypeParameterAsLastWhenThereAreSome() 101 ClassOrInterfaceDeclaration cid = consider("class A {}"); in addingExtendedTypes() 108 ClassOrInterfaceDeclaration cid = consider("public class A extends Foo {}"); in removingExtendedTypes() 115 ClassOrInterfaceDeclaration cid = consider("public class A extends Foo {}"); in replacingExtendedTypes() [all …]
|
H A D | AnnotationMemberDeclarationTransformationsTest.java | 43 protected AnnotationMemberDeclaration consider(String code) { in consider() method in AnnotationMemberDeclarationTransformationsTest 52 AnnotationMemberDeclaration md = consider("int foo();"); in changingName() 61 AnnotationMemberDeclaration md = consider("int foo();"); in changingType() 70 AnnotationMemberDeclaration md = consider("int foo();"); in addingModifiers() 77 AnnotationMemberDeclaration md = consider("public int foo();"); in removingModifiers() 84 AnnotationMemberDeclaration md = consider("public int foo();"); in replacingModifiers() 93 AnnotationMemberDeclaration md = consider("int foo();"); in addingDefaultValue() 100 AnnotationMemberDeclaration md = consider("int foo() default 10;"); in removingDefaultValue() 107 AnnotationMemberDeclaration md = consider("int foo() default 10;"); in replacingDefaultValue() 116 AnnotationMemberDeclaration it = consider("int foo();"); in addingAnnotation() [all …]
|
H A D | MethodDeclarationTransformationsTest.java | 55 protected MethodDeclaration consider(String code) { in consider() method in MethodDeclarationTransformationsTest 64 MethodDeclaration it = consider("void A(){}"); in settingName() 201 MethodDeclaration it = consider("void A(){}"); in addingModifiers() 208 MethodDeclaration it = consider("public void A(){}"); in removingModifiers() 215 MethodDeclaration it = consider("@Override public void A(){}"); in removingModifiersWithExistingAnnotationsShort() 222 MethodDeclaration it = consider("public static void a(){}"); in removingPublicModifierFromPublicStaticMethod() 249 MethodDeclaration it = consider("public void A(){}"); in replacingModifiers() 256 MethodDeclaration it = consider("@Override public void A(){}"); in replacingModifiersWithExistingAnnotationsShort() 285 MethodDeclaration it = consider("void foo(){}"); in addingParameters() 292 MethodDeclaration it = consider("public void foo(double d){}"); in removingOnlyParameter() [all …]
|
H A D | ConstructorDeclarationTransformationsTest.java | 44 protected ConstructorDeclaration consider(String code) { in consider() method in ConstructorDeclarationTransformationsTest 53 ConstructorDeclaration cd = consider("A(){}"); in settingName() 64 ConstructorDeclaration cd = consider("A(){}"); in addingModifiers() 71 ConstructorDeclaration cd = consider("public A(){}"); in removingModifiers() 78 ConstructorDeclaration cd = consider("public A(){}"); in replacingModifiers() 87 ConstructorDeclaration cd = consider("A(){}"); in addingParameters() 94 ConstructorDeclaration cd = consider("public A(double d){}"); in removingOnlyParameter() 101 ConstructorDeclaration cd = consider("public A(double d, float f){}"); in removingFirstParameterOfMany() 108 ConstructorDeclaration cd = consider("public A(double d, float f){}"); in removingLastParameterOfMany() 115 ConstructorDeclaration cd = consider("public A(float f){}"); in replacingOnlyParameter()
|
H A D | FieldDeclarationTransformationsTest.java | 39 protected FieldDeclaration consider(String code) { in consider() method in FieldDeclarationTransformationsTest 50 FieldDeclaration it = consider("int A;"); in addingModifiers() 57 FieldDeclaration it = consider("public int A;"); in removingModifiers() 64 FieldDeclaration it = consider("int A;"); in replacingModifiers() 71 FieldDeclaration it = consider("int a, b;"); in changingTypes() 81 FieldDeclaration it = consider("String a;"); in changingNonePrimitiveTypes() 88 FieldDeclaration it = consider( EOL + in removingAnnotations() 97 FieldDeclaration it = consider( EOL + in removingAnnotationsWithSpaces()
|
/aosp_15_r20/external/accessibility-test-framework/src/main/resources/resources/ |
H A D | strings.xml | 43 …ntially_obscured">This item may be obscured by other on-screen content. Consider manually testing … 122 …name="result_message_brief_image_contrast_not_sufficient">Consider increasing the contrast ratio b… 125 …le="#FFFFFF" id="background_color"><tt>%4$s</tt></xliff:g>. Consider increasing this r… 128 …le="#FFFFFF" id="background_color"><tt>%4$s</tt></xliff:g>. Consider increasing this r… 131 …le="#FFFFFF" id="background_color"><tt>%4$s</tt></xliff:g>. Consider increasing this r… 134 …le="#FFFFFF" id="background_color"><tt>%4$s</tt></xliff:g>. Consider increasing this r… 254 …name="result_message_brief_text_contrast_not_sufficient">Consider increasing this item\'s text for… 257 …le="#FFFFFF" id="background_color"><tt>%3$s</tt></xliff:g>. Consider increasing this i… 260 …le="#FFFFFF" id="background_color"><tt>%3$s</tt></xliff:g>. Consider using colors that… 263 …le="#FFFFFF" id="background_color"><tt>%3$s</tt></xliff:g>. Consider increasing this i… [all …]
|
/aosp_15_r20/external/google-cloud-java/java-retail/proto-google-cloud-retail-v2beta/src/main/java/com/google/cloud/retail/v2beta/ |
H A D | ColorInfo.java | 82 * "Mixed". Normally it is expected to have only 1 color family. May consider 106 * "Mixed". Normally it is expected to have only 1 color family. May consider 130 * "Mixed". Normally it is expected to have only 1 color family. May consider 155 * "Mixed". Normally it is expected to have only 1 color family. May consider 184 * it is expected to have only 1 color. May consider using single "Mixed" 207 * it is expected to have only 1 color. May consider using single "Mixed" 230 * it is expected to have only 1 color. May consider using single "Mixed" 254 * it is expected to have only 1 color. May consider using single "Mixed" 689 * "Mixed". Normally it is expected to have only 1 color family. May consider 713 * "Mixed". Normally it is expected to have only 1 color family. May consider [all …]
|
/aosp_15_r20/external/google-cloud-java/java-retail/proto-google-cloud-retail-v2/src/main/java/com/google/cloud/retail/v2/ |
H A D | ColorInfo.java | 82 * "Mixed". Normally it is expected to have only 1 color family. May consider 106 * "Mixed". Normally it is expected to have only 1 color family. May consider 130 * "Mixed". Normally it is expected to have only 1 color family. May consider 155 * "Mixed". Normally it is expected to have only 1 color family. May consider 184 * it is expected to have only 1 color. May consider using single "Mixed" 207 * it is expected to have only 1 color. May consider using single "Mixed" 230 * it is expected to have only 1 color. May consider using single "Mixed" 254 * it is expected to have only 1 color. May consider using single "Mixed" 687 * "Mixed". Normally it is expected to have only 1 color family. May consider 711 * "Mixed". Normally it is expected to have only 1 color family. May consider [all …]
|
/aosp_15_r20/external/google-cloud-java/java-retail/proto-google-cloud-retail-v2alpha/src/main/java/com/google/cloud/retail/v2alpha/ |
H A D | ColorInfo.java | 82 * "Mixed". Normally it is expected to have only 1 color family. May consider 106 * "Mixed". Normally it is expected to have only 1 color family. May consider 130 * "Mixed". Normally it is expected to have only 1 color family. May consider 155 * "Mixed". Normally it is expected to have only 1 color family. May consider 184 * it is expected to have only 1 color. May consider using single "Mixed" 207 * it is expected to have only 1 color. May consider using single "Mixed" 230 * it is expected to have only 1 color. May consider using single "Mixed" 254 * it is expected to have only 1 color. May consider using single "Mixed" 690 * "Mixed". Normally it is expected to have only 1 color family. May consider 714 * "Mixed". Normally it is expected to have only 1 color family. May consider [all …]
|
/aosp_15_r20/external/robolectric/robolectric/src/main/java/org/robolectric/ |
H A D | Robolectric.java | 84 * <p>Consider using {@link androidx.test.core.app.ActivityScenario} instead, which provides 97 * <p>Consider using {@link androidx.test.core.app.ActivityScenario} instead, which provides 114 * <p>Consider using {@link androidx.test.core.app.ActivityScenario} instead, which provides 147 * <p>FragmentController provides low-level APIs to control its lifecycle. Please consider using 162 * <p>FragmentController provides low-level APIs to control its lifecycle. Please consider using 179 * activity. Consider removing the dependency and use other {@link #buildFragment} method or 182 * <p>FragmentController provides low-level APIs to control its lifecycle. Please consider using 201 * <p>FragmentController provides low-level APIs to control its lifecycle. Please consider using 220 * <p>FragmentController provides low-level APIs to control its lifecycle. Please consider using 241 * activity. Consider removing the dependency and use other {@link #buildFragment} method or [all …]
|
/aosp_15_r20/external/google-cloud-java/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/attestation/ |
H A D | GenericSignedAttestation.java | 355 * should consider this attestation message verified if at least one 371 * should consider this attestation message verified if at least one 388 * should consider this attestation message verified if at least one 404 * should consider this attestation message verified if at least one 420 * should consider this attestation message verified if at least one 1029 * should consider this attestation message verified if at least one 1048 * should consider this attestation message verified if at least one 1067 * should consider this attestation message verified if at least one 1086 * should consider this attestation message verified if at least one 1111 * should consider this attestation message verified if at least one [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/async-trait/tests/ui/ |
D | consider-restricting.stderr | 2 --> tests/ui/consider-restricting.rs:16:49 8 --> tests/ui/consider-restricting.rs:16:41 12 …= note: required for the cast from `Pin<Box<{async block@$DIR/tests/ui/consider-restricting.rs:16:… 13 help: consider further restricting this bound 19 --> tests/ui/consider-restricting.rs:23:40 25 --> tests/ui/consider-restricting.rs:23:32 29 …= note: required for the cast from `Pin<Box<{async block@$DIR/tests/ui/consider-restricting.rs:23:… 30 help: consider further restricting this bound
|
/aosp_15_r20/frameworks/base/core/java/android/app/ |
H A D | ActionBar.java | 114 * toolbar action bars. Consider using other 127 * toolbar action bars. Consider using other 139 * toolbar action bars. Consider using other 347 * toolbar action bars. Consider using other 361 * toolbar action bars. Consider using other 374 * toolbar action bars. Consider using other 387 * toolbar action bars. Consider using other 590 * toolbar action bars. Consider using other 607 * toolbar action bars. Consider using other 634 * toolbar action bars. Consider using other [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/pin-project/tests/ui/unstable-features/ |
D | trivial_bounds-feature-gate.stderr | 7 = note: consider using the `pin!` macro 8 … consider using `Box::pin` if you need to access the pinned value outside of the current scope 18 = note: consider using the `pin!` macro 19 … consider using `Box::pin` if you need to access the pinned value outside of the current scope 34 = note: consider using the `pin!` macro 35 … consider using `Box::pin` if you need to access the pinned value outside of the current scope 50 = note: consider using the `pin!` macro 51 … consider using `Box::pin` if you need to access the pinned value outside of the current scope
|
/aosp_15_r20/frameworks/base/services/core/java/com/android/server/pm/ |
H A D | FreeStorageHelper.java | 96 // 2. Consider preloaded data (after 1w honeymoon, unless aggressive) in freeStorage() 103 // 3. Consider parsed APK data (aggressive only) in freeStorage() 109 // 4. Consider cached app data (above quotas) in freeStorage() 118 // 5. Consider shared libraries with refcount=0 and age>min cache period in freeStorage() 126 // 6. Consider dexopt output (aggressive only) in freeStorage() 129 // 7. Consider installed instant apps unused longer than min cache period in freeStorage() 141 // 8. Consider cached app data (below quotas) in freeStorage() 149 // 9. Consider DropBox entries in freeStorage() 152 // 10. Consider instant meta-data (uninstalled apps) older that min cache period in freeStorage()
|
/aosp_15_r20/prebuilts/runtime/mainline/runtime/sdk/linux_bionic/include/bionic/libc/include/ |
H A D | err.h | 51 * New code should consider error() in `<error.h>`. 61 * New code should consider error() in `<error.h>`. 71 * New code should consider error() in `<error.h>`. 81 * New code should consider error() in `<error.h>`. 89 * New code should consider error() in `<error.h>`. 97 * New code should consider error() in `<error.h>`. 105 * New code should consider error() in `<error.h>`. 113 * New code should consider error() in `<error.h>`.
|
/aosp_15_r20/prebuilts/vndk/v34/x86_64/include/generated-headers/bionic/libc/libc/android_vendor.34_x86_64_shared/gen/include/ |
D | err.h | 51 * New code should consider error() in `<error.h>`. 61 * New code should consider error() in `<error.h>`. 71 * New code should consider error() in `<error.h>`. 81 * New code should consider error() in `<error.h>`. 89 * New code should consider error() in `<error.h>`. 97 * New code should consider error() in `<error.h>`. 105 * New code should consider error() in `<error.h>`. 113 * New code should consider error() in `<error.h>`.
|
/aosp_15_r20/prebuilts/vndk/v34/arm64/include/generated-headers/bionic/libc/libc/android_vendor.34_arm64_armv8-a_shared/gen/include/ |
D | err.h | 51 * New code should consider error() in `<error.h>`. 61 * New code should consider error() in `<error.h>`. 71 * New code should consider error() in `<error.h>`. 81 * New code should consider error() in `<error.h>`. 89 * New code should consider error() in `<error.h>`. 97 * New code should consider error() in `<error.h>`. 105 * New code should consider error() in `<error.h>`. 113 * New code should consider error() in `<error.h>`.
|
/aosp_15_r20/prebuilts/vndk/v31/arm64/include/generated-headers/bionic/libc/libc/android_vendor.31_arm_armv8-a_shared/gen/include/ |
D | err.h | 51 * New code should consider error() in `<error.h>`. 61 * New code should consider error() in `<error.h>`. 71 * New code should consider error() in `<error.h>`. 81 * New code should consider error() in `<error.h>`. 89 * New code should consider error() in `<error.h>`. 97 * New code should consider error() in `<error.h>`. 105 * New code should consider error() in `<error.h>`. 113 * New code should consider error() in `<error.h>`.
|
/aosp_15_r20/prebuilts/vndk/v32/x86_64/include/generated-headers/bionic/libc/libc/android_vendor.32_x86_64_shared/gen/include/ |
D | err.h | 51 * New code should consider error() in `<error.h>`. 61 * New code should consider error() in `<error.h>`. 71 * New code should consider error() in `<error.h>`. 81 * New code should consider error() in `<error.h>`. 89 * New code should consider error() in `<error.h>`. 97 * New code should consider error() in `<error.h>`. 105 * New code should consider error() in `<error.h>`. 113 * New code should consider error() in `<error.h>`.
|
/aosp_15_r20/out/soong/ndk/sysroot/usr/include/ |
D | err.h | 52 * New code should consider error() in `<error.h>`. 62 * New code should consider error() in `<error.h>`. 72 * New code should consider error() in `<error.h>`. 82 * New code should consider error() in `<error.h>`. 90 * New code should consider error() in `<error.h>`. 98 * New code should consider error() in `<error.h>`. 106 * New code should consider error() in `<error.h>`. 114 * New code should consider error() in `<error.h>`.
|
/aosp_15_r20/bionic/libc/include/ |
H A D | err.h | 52 * New code should consider error() in `<error.h>`. 62 * New code should consider error() in `<error.h>`. 72 * New code should consider error() in `<error.h>`. 82 * New code should consider error() in `<error.h>`. 90 * New code should consider error() in `<error.h>`. 98 * New code should consider error() in `<error.h>`. 106 * New code should consider error() in `<error.h>`. 114 * New code should consider error() in `<error.h>`.
|