Home
last modified time | relevance | path

Searched refs:consider (Results 1 – 25 of 1534) sorted by relevance

12345678910>>...62

/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/transformations/ast/body/
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 …]
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 …]
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()
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()
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 …]
DEnumDeclarationTransformationsTest.java40 protected EnumDeclaration consider(String code) { in consider() method in EnumDeclarationTransformationsTest
49 EnumDeclaration cid = consider("enum A { E1, E2 }"); in settingName()
60 EnumDeclaration ed = consider("enum A { E1, E2 }"); in addingModifiers()
67 EnumDeclaration ed = consider("public enum A { E1, E2 }"); in removingModifiers()
74 EnumDeclaration ed = consider("public enum A { E1, E2 }"); in replacingModifiers()
81 EnumDeclaration ed = consider("enum A {" + EOL + in addingConstants()
DInitializerDeclarationTransformationsTest.java35 protected InitializerDeclaration consider(String code) { in consider() method in InitializerDeclarationTransformationsTest
48 InitializerDeclaration it = consider("{ /*some comment*/ }"); in instanceToStatic()
55 InitializerDeclaration it = consider("static { /*some comment*/ }"); in staticToInstance()
DStatementTransformationsTest.java41 Statement consider(String code) { in consider() method in StatementTransformationsTest
49 Statement stmt = consider("if (a) {} else {}"); in ifStmtTransformation()
56 Statement stmt = consider("switch (a) { case 1: a; a; }"); in switchEntryCsmHasTrailingUnindent()
DEnumConstantDeclarationTransformationsTest.java33 protected EnumConstantDeclaration consider(String code) { in consider() method in EnumConstantDeclarationTransformationsTest
42 EnumConstantDeclaration ecd = consider("A"); in settingName()
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/transformations/ast/
DArrayCreationLevelTransformationsTest.java41 protected ArrayCreationLevel consider(String code) { in consider() method in ArrayCreationLevelTransformationsTest
51 ArrayCreationLevel it = consider("[]"); in addingDimension()
58 ArrayCreationLevel it = consider("[10]"); in removingDimension()
65 ArrayCreationLevel it = consider("[10]"); in replacingDimension()
74 ArrayCreationLevel it = consider("[]"); in addingAnnotation()
81 ArrayCreationLevel it = consider("@myAnno []"); in removingAnnotation()
88 ArrayCreationLevel it = consider("@myAnno []"); in replacingAnnotation()
/external/rust/crates/pin-project/tests/ui/pin_project/
Dvisibility.stderr7 = note: consider declaring type or module `DProj` with `pub`
15 = note: consider declaring type or module `DProjRef` with `pub`
23 = note: consider declaring type or module `RProj` with `pub`
31 = note: consider declaring type or module `RProjOwn` with `pub`
39 = note: consider declaring type or module `RProjRef` with `pub`
/external/llvm-project/clang/test/Analysis/
Dautoreleasewritechecker_test.m98 … parameter inside autorelease pool that may exit before method returns; consider writing first to …
111 … parameter inside autorelease pool that may exit before method returns; consider writing first to …
152 … parameter inside autorelease pool that may exit before method returns; consider writing first to …
158 … parameter inside autorelease pool that may exit before method returns; consider writing first to …
159 … parameter inside autorelease pool that may exit before method returns; consider writing first to …
172 … to autoreleasing out parameter inside locally-scoped autorelease pool; consider writing first to …
205 … to autoreleasing out parameter inside locally-scoped autorelease pool; consider writing first to …
213 … to autoreleasing out parameter inside locally-scoped autorelease pool; consider writing first to …
214 … to autoreleasing out parameter inside locally-scoped autorelease pool; consider writing first to …
231 …arameter inside autorelease pool that may exit before function returns; consider writing first to …
[all …]
/external/llvm-project/clang/test/Analysis/Checkers/
DRunLoopAutoreleaseLeakChecker.m32 …se pool followed by the launch of main run loop may never get released; consider moving them to a …
51 …release pool followed by the launch of xpc_main may never get released; consider moving them to a …
59 …se pool followed by the launch of main run loop may never get released; consider moving them to a …
84 …se pool followed by the launch of main run loop may never get released; consider moving them to a …
94 … resort followed by the launch of main run loop may never get released; consider moving them to a …
125 … last resort followed by the launch of xpc_main may never get released; consider moving them to a …
159 … resort followed by the launch of main run loop may never get released; consider moving them to a …
/external/rust/crates/proc-macro-hack/
DAndroid.bp15 // Please consider splitting the single license below into multiple licenses,
19 // For unused files, consider creating a 'fileGroup' with "//visibility:private"
26 // Please consider removing redundant or irrelevant files from 'license_text:'.
/external/rust/crates/unicode-segmentation/
DAndroid.bp15 // Please consider splitting the single license below into multiple licenses,
19 // For unused files, consider creating a 'fileGroup' with "//visibility:private"
26 // Please consider removing redundant or irrelevant files from 'license_text:'.
/external/rust/crates/paste/
DAndroid.bp14 // Please consider splitting the single license below into multiple licenses,
18 // For unused files, consider creating a 'fileGroup' with "//visibility:private"
25 // Please consider removing redundant or irrelevant files from 'license_text:'.
/external/libogg/
DAndroid.bp11 // Please consider splitting the single license below into multiple licenses,
15 // For unused files, consider creating a 'fileGroup' with "//visibility:private"
22 // Please consider removing redundant or irrelevant files from 'license_text:'.
/external/rust/crates/async-task/
DAndroid.bp13 // Please consider splitting the single license below into multiple licenses,
17 // For unused files, consider creating a 'fileGroup' with "//visibility:private"
24 // Please consider removing redundant or irrelevant files from 'license_text:'.
/external/ImageMagick/
DAndroid.bp11 // Please consider splitting the single license below into multiple licenses,
15 // For unused files, consider creating a 'fileGroup' with "//visibility:private"
22 // Please consider removing redundant or irrelevant files from 'license_text:'.
/external/rust/crates/lazycell/
DAndroid.bp13 // Please consider splitting the single license below into multiple licenses,
17 // For unused files, consider creating a 'fileGroup' with "//visibility:private"
24 // Please consider removing redundant or irrelevant files from 'license_text:'.
/external/rust/crates/glob/
DAndroid.bp13 // Please consider splitting the single license below into multiple licenses,
17 // For unused files, consider creating a 'fileGroup' with "//visibility:private"
24 // Please consider removing redundant or irrelevant files from 'license_text:'.
/external/rust/crates/termcolor/
DAndroid.bp13 // Please consider splitting the single license below into multiple licenses,
17 // For unused files, consider creating a 'fileGroup' with "//visibility:private"
24 // Please consider removing redundant or irrelevant files from 'license_text:'.
/external/apache-commons-compress/
DAndroid.bp11 // Please consider splitting the single license below into multiple licenses,
15 // For unused files, consider creating a 'fileGroup' with "//visibility:private"
22 // Please consider removing redundant or irrelevant files from 'license_text:'.
/external/rust/crates/cexpr/
DAndroid.bp13 // Please consider splitting the single license below into multiple licenses,
17 // For unused files, consider creating a 'fileGroup' with "//visibility:private"
24 // Please consider removing redundant or irrelevant files from 'license_text:'.
/external/rust/crates/half/
DAndroid.bp14 // Please consider splitting the single license below into multiple licenses,
18 // For unused files, consider creating a 'fileGroup' with "//visibility:private"
25 // Please consider removing redundant or irrelevant files from 'license_text:'.

12345678910>>...62