Home
last modified time | relevance | path

Searched full:consider (Results 1 – 25 of 12616) sorted by relevance

12345678910>>...505

/aosp_15_r20/prebuilts/go/linux-x86/src/sync/atomic/
Ddoc.go67 // 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 Dstrings.properties29 …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 Dstrings.xml28 …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&gt; and an estimated background colour of &lt;tt&gt;%4$s&lt;/tt&gt;. Consider increasing this r…
78 …lt;/tt&gt; and provided background colour of &lt;tt&gt;%4$s&lt;/tt&gt;. Consider increasing this r…
80 …tt&gt; and an estimated background colour of &lt;tt&gt;%4$s&lt;/tt&gt;. Consider increasing this r…
82 …lt;/tt&gt; and provided background colour of &lt;tt&gt;%4$s&lt;/tt&gt;. Consider increasing this r…
160 …<string name="result_message_brief_text_contrast_not_sufficient">Consider increasing this item\'s …
162 …&gt;%2$s&lt;/tt&gt; and background colour of &lt;tt&gt;%3$s&lt;/tt&gt;. Consider increasing this i…
164 …&gt;%2$s&lt;/tt&gt; and background colour of &lt;tt&gt;%3$s&lt;/tt&gt;. Consider using colours tha…
166 …;/tt&gt; and non-opaque background colour of &lt;tt&gt;%3$s&lt;/tt&gt;. 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 DClassOrInterfaceDeclarationTransformationsTest.java44 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 DAnnotationMemberDeclarationTransformationsTest.java43 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 DMethodDeclarationTransformationsTest.java55 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 DConstructorDeclarationTransformationsTest.java44 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 DFieldDeclarationTransformationsTest.java39 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 Dstrings.xml43 …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">&lt;tt&gt;%4$s&lt;/tt&gt;</xliff:g>. Consider increasing this r…
128 …le="#FFFFFF" id="background_color">&lt;tt&gt;%4$s&lt;/tt&gt;</xliff:g>. Consider increasing this r…
131 …le="#FFFFFF" id="background_color">&lt;tt&gt;%4$s&lt;/tt&gt;</xliff:g>. Consider increasing this r…
134 …le="#FFFFFF" id="background_color">&lt;tt&gt;%4$s&lt;/tt&gt;</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">&lt;tt&gt;%3$s&lt;/tt&gt;</xliff:g>. Consider increasing this i…
260 …le="#FFFFFF" id="background_color">&lt;tt&gt;%3$s&lt;/tt&gt;</xliff:g>. Consider using colors that…
263 …le="#FFFFFF" id="background_color">&lt;tt&gt;%3$s&lt;/tt&gt;</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 DColorInfo.java82 * "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 DColorInfo.java82 * "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 DColorInfo.java82 * "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 DRobolectric.java84 * <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 DGenericSignedAttestation.java355 * 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/
Dconsider-restricting.stderr2 --> 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 DActionBar.java114 * 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/
Dtrivial_bounds-feature-gate.stderr7 = note: consider using the `pin!` macro
8consider using `Box::pin` if you need to access the pinned value outside of the current scope
18 = note: consider using the `pin!` macro
19consider using `Box::pin` if you need to access the pinned value outside of the current scope
34 = note: consider using the `pin!` macro
35consider using `Box::pin` if you need to access the pinned value outside of the current scope
50 = note: consider using the `pin!` macro
51consider 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 DFreeStorageHelper.java96 // 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 Derr.h51 * 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/
Derr.h51 * 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/
Derr.h51 * 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/
Derr.h51 * 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/
Derr.h51 * 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/
Derr.h52 * 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 Derr.h52 * 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>`.

12345678910>>...505