Home
last modified time | relevance | path

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

/external/guice/core/test/com/google/inject/
DMethodInterceptionTest.java144 Interceptable interceptable = injector.getInstance(Interceptable.class); in testGetThis() local
145 interceptable.foo(); in testGetThis()
146 assertSame(interceptable, lastTarget.get()); in testGetThis()
227 Interceptable interceptable = injector.getInstance(Interceptable.class); in testInterceptedMethodThrows() local
229 interceptable.explode(); in testInterceptedMethodThrows()
254 Interceptable interceptable = injector.getInstance(Interceptable.class); in testNotInterceptedMethodsInInterceptedClassDontAddFrames() local
255 assertNull(interceptable.lastElements); in testNotInterceptedMethodsInInterceptedClassDontAddFrames()
256 interceptable.foo(); in testNotInterceptedMethodsInInterceptedClassDontAddFrames()
258 for (int i = 0; i < interceptable.lastElements.length; i++) { in testNotInterceptedMethodsInInterceptedClassDontAddFrames()
259 if (interceptable.lastElements[i].toString().contains("cglib")) { in testNotInterceptedMethodsInInterceptedClassDontAddFrames()
[all …]
/external/grpc-grpc/src/ruby/lib/grpc/generic/
Dclient_stub.rb162 call: c.interceptable,
239 call: c.interceptable,
331 call: c.interceptable,
453 call: c.interceptable,
Dactive_call.rb163 def interceptable method in GRPC.ActiveCall
/external/python/jinja/src/jinja2/
Dcompiler.py1479 def binop(operator, interceptable=True): # noqa: B902 argument
1499 def uaop(operator, interceptable=True): # noqa: B902 argument
1522 visit_And = binop("and", interceptable=False)
1523 visit_Or = binop("or", interceptable=False)
1526 visit_Not = uaop("not ", interceptable=False)
/external/libchrome/third_party/jinja2/
Dcompiler.py1471 def binop(operator, interceptable=True): argument
1488 def uaop(operator, interceptable=True): argument
1508 visit_And = binop('and', interceptable=False)
1509 visit_Or = binop('or', interceptable=False)
1512 visit_Not = uaop('not ', interceptable=False)
/external/grpc-grpc/src/ruby/spec/generic/
Dactive_call_spec.rb90 v = @client_call.interceptable