Home
last modified time | relevance | path

Searched refs:barMethod (Results 1 – 4 of 4) sorted by relevance

/external/clang/test/CodeGenObjC/
D2010-02-15-Dbg-MethodStart.m5 -(int) barMethod; method
9 -(int) barMethod { method
/external/guice/core/test/com/google/inject/spi/
DInjectionPointTest.java85 Method barMethod = getClass().getMethod("bar", String.class); in testMethodInjectionPoint() local
86 InjectionPoint injectionPoint = new InjectionPoint(typeLiteral, barMethod, false); in testMethodInjectionPoint()
87 assertSame(barMethod, injectionPoint.getMember()); in testMethodInjectionPoint()
90 assertEqualsBothWays(injectionPoint, new InjectionPoint(typeLiteral, barMethod, false)); in testMethodInjectionPoint()
96 assertEquals(barMethod, dependency.getInjectionPoint().getMember()); in testMethodInjectionPoint()
102 getOnlyElement(new InjectionPoint(typeLiteral, barMethod, false).getDependencies())); in testMethodInjectionPoint()
/external/protobuf/java/core/src/test/java/com/google/protobuf/
DDescriptorsTest.java348 MethodDescriptor barMethod = service.getMethods().get(1); in testServiceDescriptor() local
349 assertEquals("Bar", barMethod.getName()); in testServiceDescriptor()
351 barMethod.getInputType()); in testServiceDescriptor()
353 barMethod.getOutputType()); in testServiceDescriptor()
354 assertEquals(barMethod, service.findMethodByName("Bar")); in testServiceDescriptor()
/external/guice/core/test/com/google/inject/
DMethodInterceptionTest.java163 Method barMethod = Interceptable.class.getMethod("bar"); in testSpiAccessToInterceptors() local
167 barMethod, ImmutableList.of(returnNullInterceptor)), in testSpiAccessToInterceptors()