Home
last modified time | relevance | path

Searched refs:staticMethod (Results 1 – 11 of 11) sorted by relevance

/external/guice/core/test/com/google/inject/
DRequestInjectionTest.java46 HasInjections.staticMethod = null; in setUp()
63 assertNull(HasInjections.staticMethod); in testInjectMembers()
77 assertEquals("test", HasInjections.staticMethod); in testInjectStatics()
96 assertEquals("test", HasInjections.staticMethod); in testInjectMembersAndStatics()
177 static String staticMethod; field in RequestInjectionTest.HasInjections
180 @Inject static void setStaticMethod(@ForMethod String staticMethod) { in setStaticMethod() argument
181 HasInjections.staticMethod = staticMethod; in setStaticMethod()
/external/r8/src/main/java/com/android/tools/r8/graph/
DDexProgramClass.java149 public void addStaticMethod(DexEncodedMethod staticMethod) { in addStaticMethod() argument
150 assert staticMethod.accessFlags.isStatic(); in addStaticMethod()
151 assert !staticMethod.accessFlags.isPrivate(); in addStaticMethod()
152 assert !staticMethod.accessFlags.isConstructor(); in addStaticMethod()
154 directMethods[directMethods.length - 1] = staticMethod; in addStaticMethod()
/external/guice/core/test/com/google/inject/spi/
DToolStageInjectorTest.java131 @SuppressWarnings("unused") @Inject static void staticMethod(Map map) {} in staticMethod() method in ToolStageInjectorTest.Bar
140 @SuppressWarnings("unused") @Inject static void staticMethod(SM sm) { Tooled.sm = sm; } in staticMethod() method in ToolStageInjectorTest.Foo
153 … @Toolable @SuppressWarnings("unused") @Inject static void staticMethod(SM sm) { Tooled.sm = sm; } in staticMethod() method in ToolStageInjectorTest.Tooled
DInjectionPointTest.java184 Method staticMethod = HasInjections.class.getMethod("staticMethod", String.class); in testAddForStaticMethodsAndFields() local
190 new InjectionPoint(TypeLiteral.get(HasInjections.class), staticMethod, false), in testAddForStaticMethodsAndFields()
196 @Inject public static void staticMethod(@Named("a") String a) {} in staticMethod() method in InjectionPointTest.HasInjections
/external/r8/src/test/examples/shaking2/
DSuperClass.java9 public static void staticMethod() { in staticMethod() method in SuperClass
DShaking.java43 SuperClass.staticMethod(); in main()
/external/r8/src/main/java/com/android/tools/r8/ir/desugar/
DLambdaClass.java433 InstanceLambdaImplTarget(DexMethod staticMethod) { in InstanceLambdaImplTarget() argument
434 super(staticMethod, Invoke.Type.STATIC); in InstanceLambdaImplTarget()
/external/clang/test/SemaTemplate/
Dms-lookup-template-base-classes.cpp526 Undef::staticMethod(); // expected-error {{use of undeclared identifier 'Undef'}} in f()
/external/guava/guava-tests/test/com/google/common/reflect/
DInvokableTest.java601 static void staticMethod() {} in staticMethod() method in InvokableTest.Prepender
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DDexMakerTest.java155 MethodId<?, Integer> staticMethod in testInvokeStatic() local
157 code.invokeStatic(staticMethod, localResult, localA); in testInvokeStatic()
186 public static int staticMethod(int a) { in staticMethod() method in DexMakerTest
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/stock/
DProxyBuilderTest.java544 public static void staticMethod() {} in staticMethod() method in ProxyBuilderTest