Searched defs:interceptor (Results 1 - 23 of 23) sorted by relevance

/external/guice/jdk8-tests/test/com/google/inject/jdk8/
H A DDefaultMethodInterceptionTest.java46 // the interceptor's a lambda too
47 private final MethodInterceptor interceptor = invocation -> { field in class:DefaultMethodInterceptionTest
83 interceptor);
99 interceptor);
127 interceptor);
162 interceptor);
194 bindInterceptor(Matchers.subclassesOf(Baz.class), Matchers.any(), interceptor);
211 bindInterceptor(Matchers.subclassesOf(BazImpl.class), Matchers.any(), interceptor);
/external/apache-http/src/org/apache/http/protocol/
H A DBasicHttpProcessor.java149 * @param interceptor the interceptor to add
152 void addInterceptor(final HttpRequestInterceptor interceptor) { argument
153 addRequestInterceptor(interceptor);
157 void addInterceptor(final HttpRequestInterceptor interceptor, argument
159 addRequestInterceptor(interceptor, index);
202 * @param interceptor the interceptor to add
205 void addInterceptor(final HttpResponseInterceptor interceptor) { argument
206 addResponseInterceptor(interceptor);
209 addInterceptor(final HttpResponseInterceptor interceptor, int index) argument
[all...]
/external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
H A DMockMethodInterceptor.java103 @FieldValue("mockitoInterceptor") MockMethodInterceptor interceptor,
107 if (interceptor == null) {
110 return interceptor.doIntercept(
121 @FieldValue("mockitoInterceptor") MockMethodInterceptor interceptor,
125 if (interceptor == null) {
128 return interceptor.doIntercept(
102 interceptSuperCallable(@his Object mock, @FieldValue(�) MockMethodInterceptor interceptor, @Origin Method invokedMethod, @AllArguments Object[] arguments, @SuperCall(serializableProxy = true) Callable<?> superCall) argument
120 interceptAbstract(@his Object mock, @FieldValue(�) MockMethodInterceptor interceptor, @StubValue Object stubValue, @Origin Method invokedMethod, @AllArguments Object[] arguments) argument
/external/v8/src/
H A Dkeys.cc470 Handle<InterceptorInfo> interceptor,
473 PropertyCallbackArguments args(isolate, interceptor->data(), *receiver,
476 if (!interceptor->enumerator()->IsUndefined(isolate)) {
477 Callback enum_fun = v8::ToCData<Callback>(interceptor->enumerator());
478 const char* log_tag = type == kIndexed ? "interceptor-indexed-enum"
479 : "interceptor-named-enum";
500 Handle<InterceptorInfo> interceptor(type == kIndexed
505 !interceptor->all_can_read()) {
509 receiver, object, interceptor, accumulator);
636 // Add the property keys from the interceptor
468 CollectInterceptorKeysInternal(Handle<JSReceiver> receiver, Handle<JSObject> object, Handle<InterceptorInfo> interceptor, KeyAccumulator* accumulator) argument
[all...]
H A Dlookup.cc909 Object* interceptor = IsElement() ? access_check_info->indexed_interceptor() local
911 if (interceptor) {
912 return handle(InterceptorInfo::cast(interceptor), isolate_);
H A Dobjects.cc1588 LookupIterator* it, Handle<InterceptorInfo> interceptor, bool* done) {
1592 // interceptor calls.
1595 if (interceptor->getter()->IsUndefined(isolate)) {
1606 PropertyCallbackArguments args(isolate, interceptor->data(), *receiver,
1612 v8::ToCData<v8::IndexedPropertyGetterCallback>(interceptor->getter());
1618 if (name->IsSymbol() && !interceptor->can_intercept_symbols()) {
1624 interceptor->getter());
1636 LookupIterator* it, Handle<InterceptorInfo> interceptor) {
1639 // callbacks or interceptor calls.
1645 !interceptor
1587 GetPropertyWithInterceptorInternal( LookupIterator* it, Handle<InterceptorInfo> interceptor, bool* done) argument
1635 GetPropertyAttributesWithInterceptorInternal( LookupIterator* it, Handle<InterceptorInfo> interceptor) argument
1699 SetPropertyWithInterceptorInternal( LookupIterator* it, Handle<InterceptorInfo> interceptor, Object::ShouldThrow should_throw, Handle<Object> value) argument
1745 DefinePropertyWithInterceptorInternal( LookupIterator* it, Handle<InterceptorInfo> interceptor, Object::ShouldThrow should_throw, PropertyDescriptor& desc) argument
1816 Handle<InterceptorInfo> interceptor = local
1857 Handle<InterceptorInfo> interceptor = local
1899 Handle<InterceptorInfo> interceptor = local
6945 Handle<InterceptorInfo> interceptor = it->GetInterceptor(); local
[all...]
/external/guice/extensions/struts2/lib/
H A Dstruts2-core-2.2.1.jar ... struts2/interceptor/ org/apache/struts2/interceptor/validation/ org/apache/struts2/interceptor/debugging/ template/ template/xhtml/ template/simple/ template/css_xhtml/ template/archive ...
H A Dxwork-core-2.2.1.jar ... public abstract void addPreResultListener (com.opensymphony.xwork2.interceptor.PreResultListener) public abstract java.lang.String invoke ...
/external/guice/extensions/persist/lib/
H A Dxwork-2.0.4.jar ... xwork2/inject/ com/opensymphony/xwork2/inject/util/ com/opensymphony/xwork2/interceptor/ com/opensymphony/xwork2/interceptor/annotations/ com/opensymphony/xwork2/mock/ com ...
H A Dhibernate-entitymanager.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/hibernate/ org/hibernate/ejb/ ...
H A Dhibernate3.jar ... java.lang.Object implements org.hibernate.Interceptor java.io.Serializable { public static final org. ...
/external/v8/src/ic/
H A Dic.cc1121 // Perform a lookup behind the interceptor. Copy the LookupIterator
1455 // Perform a lookup behind the interceptor. Copy the LookupIterator since
3064 * Attempts to load a property with an interceptor (which must be present),
3067 * Returns |Heap::no_interceptor_result_sentinel()| if interceptor doesn't
3085 InterceptorInfo* interceptor = holder->GetNamedInterceptor(); local
3086 PropertyCallbackArguments arguments(isolate, interceptor->data(), *receiver,
3091 interceptor->getter());
3102 * Loads a property with an interceptor performing post interceptor
3103 * lookup if interceptor faile
3120 InterceptorInfo* interceptor = holder->GetNamedInterceptor(); local
3175 InterceptorInfo* interceptor = receiver->GetNamedInterceptor(); local
3211 InterceptorInfo* interceptor = receiver->GetIndexedInterceptor(); local
[all...]
/external/robolectric/v1/lib/main/
H A Dhttpcore-4.0.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/protocol/ ...
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v1/lib/test/
H A Dmockito-core-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/kotlinc/lib/
H A Dkotlin-runtime.jarMETA-INF/ META-INF/MANIFEST.MF kotlin/ kotlin/kotlin.kotlin_builtins kotlin/collections/ kotlin/collections/collections ...
H A Dkotlin-stdlib.jarMETA-INF/ META-INF/MANIFEST.MF kotlin/ kotlin/kotlin.kotlin_builtins kotlin/collections/ kotlin/collections/collections ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 415 milliseconds