HomeSort by relevance Sort by last modified time
    Searched full:interceptor (Results 101 - 125 of 208) sorted by null

1 2 3 45 6 7 8 9

  /external/chromium_org/v8/src/mips/
stub-cache-mips.cc 137 // Bail out if the receiver has a named interceptor or requires access checks.
746 Handle<InterceptorInfo> interceptor(holder_obj->GetNamedInterceptor());
747 ASSERT(!masm->isolate()->heap()->InNewSpace(*interceptor));
749 __ li(scratch, Operand(interceptor));
    [all...]
  /external/chromium_org/content/child/npapi/
webplugin_delegate_impl.h 373 // TrackPopupMenu interceptor. Parameters are the same as the Win32 function
379 // SetCursor interceptor for windowless plugins.
382 // RegEnumKeyExW interceptor.
  /external/v8/test/cctest/
test-decls.cc 75 // Get the holder for the interceptor. Default to the instance template
202 // Test global declaration of a property the interceptor doesn't know
526 // Sanity check to make sure that the holder of the interceptor
test-api.cc 5100 v8::Handle<v8::Object> interceptor = templ->NewInstance(); local
    [all...]
  /external/smack/src/org/jivesoftware/smack/
XMPPConnection.java 511 * Registers a packet interceptor with this connection. The interceptor will be
514 * will be delivered to the interceptor.
516 * @param packetInterceptor the packet interceptor to notify of packets about to be sent.
526 * Removes a packet interceptor.
528 * @param packetInterceptor the packet interceptor to remove.
    [all...]
  /external/v8/src/ia32/
stub-cache-ia32.cc 161 // Bail out if the receiver has a named interceptor or requires access checks.
401 Handle<InterceptorInfo> interceptor(holder_obj->GetNamedInterceptor());
402 ASSERT(!masm->isolate()->heap()->InNewSpace(*interceptor));
404 __ mov(scratch, Immediate(interceptor));
601 // Check that the maps from receiver to interceptor's holder
602 // haven't changed and thus we can invoke interceptor.
610 // Invoke an interceptor and if it provides a value,
616 // Interceptor returned nothing for this property. Try to use cached
619 // Check that the maps from interceptor's holder to constant function's
    [all...]
  /external/v8/src/x64/
stub-cache-x64.cc 130 // Bail out if the receiver has a named interceptor or requires access checks.
375 Handle<InterceptorInfo> interceptor(holder_obj->GetNamedInterceptor());
376 ASSERT(!masm->isolate()->heap()->InNewSpace(*interceptor));
377 __ Move(kScratchRegister, interceptor);
585 // Check that the maps from receiver to interceptor's holder
586 // haven't changed and thus we can invoke interceptor.
594 // Invoke an interceptor and if it provides a value,
600 // Interceptor returned nothing for this property. Try to use cached
603 // Check that the maps from interceptor's holder to constant function's
    [all...]
  /external/v8/src/
property.h 171 case INTERCEPTOR:
251 details_ = PropertyDetails(NONE, INTERCEPTOR);
stub-cache.cc 198 Code::Flags flags = Code::ComputeMonomorphicFlags(Code::LOAD_IC, INTERCEPTOR);
281 Code::ComputeMonomorphicFlags(Code::KEYED_LOAD_IC, INTERCEPTOR);
503 Code::STORE_IC, INTERCEPTOR, strict_mode);
638 Code::ComputeMonomorphicFlags(kind, INTERCEPTOR, extra_state,
    [all...]
property-details.h 63 INTERCEPTOR = 5, // only in lookup results, not in descriptors
  /external/chromium_org/v8/src/ia32/
stub-cache-ia32.cc 157 // Bail out if the receiver has a named interceptor or requires access checks.
393 Handle<InterceptorInfo> interceptor(holder_obj->GetNamedInterceptor());
394 ASSERT(!masm->isolate()->heap()->InNewSpace(*interceptor));
396 __ mov(scratch, Immediate(interceptor));
720 // Check that the maps from receiver to interceptor's holder
721 // haven't changed and thus we can invoke interceptor.
730 // Invoke an interceptor and if it provides a value,
736 // Interceptor returned nothing for this property. Try to use cached
739 // Check that the maps from interceptor's holder to constant function's
    [all...]
  /external/chromium_org/v8/src/x64/
stub-cache-x64.cc 127 // Bail out if the receiver has a named interceptor or requires access checks.
368 Handle<InterceptorInfo> interceptor(holder_obj->GetNamedInterceptor());
369 ASSERT(!masm->isolate()->heap()->InNewSpace(*interceptor));
370 __ Move(kScratchRegister, interceptor);
713 // Check that the maps from receiver to interceptor's holder
714 // haven't changed and thus we can invoke interceptor.
723 // Invoke an interceptor and if it provides a value,
729 // Interceptor returned nothing for this property. Try to use cached
732 // Check that the maps from interceptor's holder to constant function's
    [all...]
  /external/apache-http/src/org/apache/http/client/protocol/
ResponseProcessCookies.java 53 * Response interceptor that populates the current {@link CookieStore} with data
  /external/apache-http/src/org/apache/http/protocol/
RequestContent.java 46 * A request interceptor that decides about the transport encoding.
ResponseConnControl.java 47 * A response interceptor that suggests connection keep-alive to the client.
ResponseContent.java 46 * A response interceptor that sets up entity-related headers.
  /external/chromium/net/base/
mock_host_resolver.h 52 void Reset(HostResolverProc* interceptor);
  /external/chromium_org/chrome/browser/policy/cloud/
cloud_policy_manager_browsertest.cc 160 // The interceptor makes all requests fail by default; this will trigger
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common_syscalls.inc 13 // This file should be included into the tool's interceptor file,
  /external/smack/src/com/kenai/jbosh/
BOSHClient.java 644 * @param interceptor exchange interceptor
646 void setExchangeInterceptor(final ExchangeInterceptor interceptor) {
647 exchInterceptor.set(interceptor);
957 ExchangeInterceptor interceptor = exchInterceptor.get(); local
958 if (interceptor != null) {
959 HTTPExchange newExch = interceptor.interceptExchange(exch);
    [all...]
  /external/v8/src/arm/
stub-cache-arm.cc 150 // Bail out if the receiver has a named interceptor or requires access checks.
576 Handle<InterceptorInfo> interceptor(holder_obj->GetNamedInterceptor());
577 ASSERT(!masm->isolate()->heap()->InNewSpace(*interceptor));
579 __ mov(scratch, Operand(interceptor));
768 // Check that the maps from receiver to interceptor's holder
769 // haven't changed and thus we can invoke interceptor.
777 // Invoke an interceptor and if it provides a value,
783 // Interceptor returned nothing for this property. Try to use cached
786 // Check that the maps from interceptor's holder to constant function's
840 // Call a runtime function to load the interceptor property
    [all...]
  /external/chromium_org/v8/src/
stub-cache.cc 783 * Attempts to load a property with an interceptor (which must be present),
786 * Returns |Heap::no_interceptor_result_sentinel()| if interceptor doesn't
813 // Use the interceptor getter.
    [all...]
  /external/v8/src/mips/
stub-cache-mips.cc 141 // Bail out if the receiver has a named interceptor or requires access checks.
561 Handle<InterceptorInfo> interceptor(holder_obj->GetNamedInterceptor());
562 ASSERT(!masm->isolate()->heap()->InNewSpace(*interceptor));
564 __ li(scratch, Operand(interceptor));
758 // Check that the maps from receiver to interceptor's holder
759 // haven't changed and thus we can invoke interceptor.
767 // Invoke an interceptor and if it provides a value,
773 // Interceptor returned nothing for this property. Try to use cached
776 // Check that the maps from interceptor's holder to constant function's
830 // Call a runtime function to load the interceptor property
    [all...]
  /external/javassist/src/main/javassist/util/proxy/
ProxyFactory.java 255 * @throws RuntimeException if a default interceptor has been set for the factory
259 // we cannot allow caching to be used if the factory is configured to install a default interceptor
262 throw new RuntimeException("caching cannot be enabled if the factory default interceptor has been set");
503 // legacy behaviour : we only set the default interceptor static field if we are not using the cache
689 // legacy: we only add the static field for the default interceptor if caching is disabled
    [all...]
  /external/chromium_org/v8/test/cctest/
test-api.cc 7045 v8::Handle<v8::Object> interceptor = templ->NewInstance(); local
    [all...]

Completed in 1434 milliseconds

1 2 3 45 6 7 8 9