Home
last modified time | relevance | path

Searched refs:interceptable (Results 1 – 2 of 2) sorted by relevance

/external/guice/core/test/com/google/inject/
DMethodInterceptionTest.java123 Interceptable interceptable = injector.getInstance(Interceptable.class); in testGetThis() local
124 interceptable.foo(); in testGetThis()
125 assertSame(interceptable, lastTarget.get()); in testGetThis()
187 Interceptable interceptable = injector.getInstance(Interceptable.class); in testInterceptedMethodThrows() local
189 interceptable.explode(); in testInterceptedMethodThrows()
211 Interceptable interceptable = injector.getInstance(Interceptable.class); in testNotInterceptedMethodsInInterceptedClassDontAddFrames() local
212 assertNull(interceptable.lastElements); in testNotInterceptedMethodsInInterceptedClassDontAddFrames()
213 interceptable.foo(); in testNotInterceptedMethodsInInterceptedClassDontAddFrames()
215 for (int i = 0; i < interceptable.lastElements.length; i++) { in testNotInterceptedMethodsInInterceptedClassDontAddFrames()
216 if (interceptable.lastElements[i].toString().contains("cglib")) { in testNotInterceptedMethodsInInterceptedClassDontAddFrames()
[all …]
/external/opencv3/3rdparty/jinja2/
Dcompiler.py1421 def binop(operator, interceptable=True): argument
1437 def uaop(operator, interceptable=True): argument
1456 visit_And = binop('and', interceptable=False)
1457 visit_Or = binop('or', interceptable=False)
1460 visit_Not = uaop('not ', interceptable=False)