OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:barMethod
(Results
1 - 3
of
3
) sorted by null
/external/guice/core/test/com/google/inject/spi/
InjectionPointTest.java
85
Method
barMethod
= getClass().getMethod("bar", String.class);
86
InjectionPoint injectionPoint = new InjectionPoint(typeLiteral,
barMethod
, false);
87
assertSame(
barMethod
, injectionPoint.getMember());
90
assertEqualsBothWays(injectionPoint, new InjectionPoint(typeLiteral,
barMethod
, false));
96
assertEquals(
barMethod
, dependency.getInjectionPoint().getMember());
102
getOnlyElement(new InjectionPoint(typeLiteral,
barMethod
, false).getDependencies()));
/external/protobuf/java/src/test/java/com/google/protobuf/
DescriptorsTest.java
341
MethodDescriptor
barMethod
= service.getMethods().get(1);
342
assertEquals("Bar",
barMethod
.getName());
344
barMethod
.getInputType());
346
barMethod
.getOutputType());
347
assertEquals(
barMethod
, service.findMethodByName("Bar"));
/external/guice/core/test/com/google/inject/
MethodInterceptionTest.java
163
Method
barMethod
= Interceptable.class.getMethod("bar");
167
barMethod
, ImmutableList.of(returnNullInterceptor)),
Completed in 169 milliseconds