HomeSort by relevance Sort by last modified time
    Searched refs:handler (Results 1 - 25 of 1397) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/bindings/cpp/
WebExceptionHandler.cpp 30 void webInstallExceptionHandler(WebExceptionHandler handler)
32 ASSERT(handler);
33 globalExceptionHandler() = handler;
39 if (WebExceptionHandler& handler = globalExceptionHandler())
40 (*handler)(ec);
  /external/chromium/chrome/browser/printing/cloud_print/
cloud_print_setup_handler.cc 7 CloudPrintSetupHandler::CloudPrintSetupHandler(Delegate* handler)
8 : handler_(handler) {}
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorStylesheetElement.java 46 * @param handler The calling StylesheetHandler/TemplatesBuilder.
60 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
64 super.startElement(handler, uri, localName, rawName, attributes);
67 int stylesheetType = handler.getStylesheetType();
74 stylesheet = getStylesheetRoot(handler);
83 Stylesheet parent = handler.getStylesheet();
101 stylesheet.setDOMBackPointer(handler.getOriginatingNode());
102 stylesheet.setLocaterInfo(handler.getLocator());
104 stylesheet.setPrefixes(handler.getNamespaceSupport());
105 handler.pushStylesheet(stylesheet)
    [all...]
ProcessorTemplate.java 38 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
45 StylesheetHandler handler, ElemTemplateElement elem)
49 super.appendAndPush(handler, elem);
50 elem.setDOMBackPointer(handler.getOriginatingNode());
51 handler.getStylesheet().setTemplate((ElemTemplate) elem);
ProcessorTemplateElem.java 42 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
49 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
53 super.startElement(handler, uri, localName, rawName, attributes);
56 // ElemTemplateElement parent = handler.getElemTemplateElement();
65 elem.setDOMBackPointer(handler.getOriginatingNode());
66 elem.setLocaterInfo(handler.getLocator());
67 elem.setPrefixes(handler.getNamespaceSupport());
71 handler.error(XSLTErrorResources.ER_FAILED_CREATING_ELEMTMPL, null, ie);//"Failed creating ElemTemplateElement instance!", ie);
75 handler.error(XSLTErrorResources.ER_FAILED_CREATING_ELEMTMPL, null, iae);//"Failed creating ElemTemplateElement instance!", iae);
78 setPropertiesFromAttributes(handler, rawName, attributes, elem)
    [all...]
ProcessorDecimalFormat.java 42 * @param handler The calling StylesheetHandler/TemplatesBuilder.
61 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
65 DecimalFormatProperties dfp = new DecimalFormatProperties(handler.nextUid());
67 dfp.setDOMBackPointer(handler.getOriginatingNode());
68 dfp.setLocaterInfo(handler.getLocator());
70 setPropertiesFromAttributes(handler, rawName, attributes, dfp);
71 handler.getStylesheet().setDecimalFormat(dfp);
73 handler.getStylesheet().appendChild(dfp);
ProcessorGlobalParamDecl.java 40 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
47 StylesheetHandler handler, ElemTemplateElement elem)
52 handler.pushElemTemplateElement(elem);
61 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
67 StylesheetHandler handler, String uri, String localName, String rawName)
71 ElemParam v = (ElemParam) handler.getElemTemplateElement();
73 handler.getStylesheet().appendChild(v);
74 handler.getStylesheet().setParam(v);
75 super.endElement(handler, uri, localName, rawName);
ProcessorGlobalVariableDecl.java 40 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
47 StylesheetHandler handler, ElemTemplateElement elem)
52 handler.pushElemTemplateElement(elem);
61 * @param handler non-null reference to current StylesheetHandler that is constructing the Templates.
67 StylesheetHandler handler, String uri, String localName, String rawName)
71 ElemVariable v = (ElemVariable) handler.getElemTemplateElement();
73 handler.getStylesheet().appendChild(v);
74 handler.getStylesheet().setVariable(v);
75 super.endElement(handler, uri, localName, rawName);
ProcessorAttributeSet.java 42 * @param handler The calling StylesheetHandler/TemplatesBuilder.
61 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
67 eat.setLocaterInfo(handler.getLocator());
70 eat.setPrefixes(handler.getNamespaceSupport());
77 eat.setDOMBackPointer(handler.getOriginatingNode());
78 setPropertiesFromAttributes(handler, rawName, attributes, eat);
79 handler.getStylesheet().setAttributeSet(eat);
81 // handler.pushElemTemplateElement(eat);
82 ElemTemplateElement parent = handler.getElemTemplateElement();
85 handler.pushElemTemplateElement(eat)
    [all...]
ProcessorNamespaceAlias.java 48 * @param handler The calling StylesheetHandler/TemplatesBuilder.
62 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
66 NamespaceAlias na = new NamespaceAlias(handler.nextUid());
68 setPropertiesFromAttributes(handler, rawName, attributes, na);
75 String stylesheetNS = handler.getNamespaceForPrefix(prefix);
82 resultNS = handler.getNamespaceForPrefix(prefix);
84 handler.error(XSLTErrorResources.ER_INVALID_NAMESPACE_URI_VALUE_FOR_RESULT_PREFIX_FOR_DEFAULT, null, null);
88 resultNS = handler.getNamespaceForPrefix(prefix);
90 handler.error(XSLTErrorResources.ER_INVALID_NAMESPACE_URI_VALUE_FOR_RESULT_PREFIX, new Object[] {prefix}, null);
94 handler.getStylesheet().setNamespaceAlias(na)
    [all...]
  /external/chromium/chrome/browser/tab_contents/
tab_contents_ssl_helper.h 25 scoped_refptr<SSLClientAuthHandler> handler);
27 scoped_refptr<SSLAddCertHandler> handler, int error_code);
29 scoped_refptr<SSLAddCertHandler> handler);
31 scoped_refptr<SSLAddCertHandler> handler);
33 scoped_refptr<SSLAddCertHandler> handler, int error_code);
35 scoped_refptr<SSLAddCertHandler> handler);
43 SSLAddCertData* GetAddCertData(SSLAddCertHandler* handler);
  /libcore/luni/src/main/java/javax/xml/transform/sax/
SAXResult.java 50 * @param handler Must be a non-null ContentHandler reference.
52 public SAXResult(ContentHandler handler) {
53 setHandler(handler);
59 * @param handler Must be a non-null ContentHandler reference.
61 public void setHandler(ContentHandler handler) {
62 this.handler = handler;
71 return handler;
78 * lexical handler is not set, an attempt should be made by the
82 * @param handler A non-null <code>LexicalHandler</code> fo
125 private ContentHandler handler; field in class:SAXResult
    [all...]
  /bionic/libc/bionic/
signal.c 32 _signal(int signum, __sighandler_t handler, int flags)
39 sa.sa_handler = handler;
49 __sighandler_t bsd_signal(int signum, __sighandler_t handler)
51 return _signal(signum, handler, SA_RESTART);
54 __sighandler_t sysv_signal(int signum, __sighandler_t handler)
56 return _signal(signum, handler, SA_RESETHAND);
  /external/chromium/chrome/browser/chromeos/login/
wizard_accessibility_handler_unittest.cc 16 void ChangeText(WizardAccessibilityHandler* handler,
24 handler->DescribeAccessibilityEvent(
33 WizardAccessibilityHandler handler; local
47 handler.DescribeAccessibilityEvent(
58 handler.DescribeAccessibilityEvent(
66 handler.DescribeAccessibilityEvent(
79 handler.DescribeAccessibilityEvent(
89 WizardAccessibilityHandler handler; local
95 handler.DescribeAccessibilityEvent(
104 ChangeText(&handler, &textbox_info, "h", 1, 1, &description)
    [all...]
  /external/valgrind/main/memcheck/tests/
signal2.stdout.exp 1 installing sig handler
  /frameworks/base/obex/javax/obex/
SessionNotifier.java 53 * the handler to handle the requests from the client. No authenticator is
82 * @param handler the request handler that will respond to OBEX requests
85 * @throws NullPointerException if <code>handler</code> is <code>null</code>
87 ObexSession acceptAndOpen(ServerRequestHandler handler) throws IOException;
91 * the handler to handle the requests from the client and the
119 * @param handler the request handler that will respond to OBEX requests
125 * @throws NullPointerException if <code>handler</code> is <code>null</code>
127 ObexSession acceptAndOpen(ServerRequestHandler handler, Authenticator auth) throws IOException
    [all...]
  /hardware/libhardware_legacy/include/hardware_legacy/
uevent.h 27 int uevent_add_native_handler(void (*handler)(void *data, const char *msg, int msg_len),
29 int uevent_remove_native_handler(void (*handler)(void *data, const char *msg, int msg_len));
  /system/core/libcutils/
dlmalloc_stubs.c 25 void dlmalloc_inspect_all(void(*handler)(void*, void *, size_t, void*),
  /external/mockito/src/org/mockito/internal/handler/
MockHandlerFactory.java 5 package org.mockito.internal.handler;
16 InternalMockHandler handler = new MockHandlerImpl(settings); local
17 InternalMockHandler nullResultGuardian = new NullResultGuardian(handler);
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
MemoryHandlerTest.java 28 import java.util.logging.Handler;
58 MemoryHandler handler; field in class:MemoryHandlerTest
60 Handler target = new MockHandler();
71 handler = new MemoryHandler();
102 Filter filter = handler.getFilter();
103 Formatter formatter = handler.getFormatter();
105 handler.close();
107 assertEquals(handler.getFilter(), filter);
108 assertEquals(handler.getFormatter(), formatter);
109 assertNull(handler.getEncoding())
    [all...]
  /external/chromium/net/http/
http_auth_handler_factory_unittest.cc 30 scoped_ptr<HttpAuthHandler>* handler) {
31 handler->reset();
56 scoped_ptr<HttpAuthHandler> handler; local
61 "Basic", HttpAuth::AUTH_SERVER, gurl, BoundNetLog(), &handler));
67 "Basic", HttpAuth::AUTH_SERVER, gurl, BoundNetLog(), &handler));
71 &handler));
77 "Basic", HttpAuth::AUTH_SERVER, gurl, BoundNetLog(), &handler));
81 &handler));
86 "basic", HttpAuth::AUTH_SERVER, gurl, BoundNetLog(), &handler));
92 "Basic", HttpAuth::AUTH_SERVER, gurl, BoundNetLog(), &handler));
109 scoped_ptr<HttpAuthHandler> handler; local
125 scoped_ptr<HttpAuthHandler> handler; local
136 scoped_ptr<HttpAuthHandler> handler; local
152 scoped_ptr<HttpAuthHandler> handler; local
168 scoped_ptr<HttpAuthHandler> handler; local
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMessenger.java 8 import android.os.Handler;
16 private Handler handler; field in class:ShadowMessenger
18 public void __constructor__(Handler handler) {
19 this.handler = handler;
24 message.setTarget(handler);
  /external/chromium/chrome/browser/custom_handlers/
protocol_handler_registry.cc 23 ProtocolHandler* handler) {
24 if (protocolHandlers_.find(handler->protocol()) == protocolHandlers_.end()) {
27 if (!policy->IsWebSafeScheme(handler->protocol())) {
28 policy->RegisterWebSafeScheme(handler->protocol());
30 net::URLRequest::RegisterProtocolFactory(handler->protocol(),
33 protocolHandlers_[handler->protocol()] = handler;
53 ProtocolHandler* handler = ProtocolHandler::CreateProtocolHandler(value); local
54 if (handler) {
55 RegisterProtocolHandler(handler);
92 ProtocolHandler* handler = GetHandlerFor(request->url().scheme()); local
    [all...]
  /external/chromium/chrome/browser/ssl/
ssl_policy.cc 44 void SSLPolicy::OnCertError(SSLCertErrorHandler* handler) {
47 backend_->QueryPolicy(handler->ssl_info().cert,
48 handler->request_url().host());
51 handler->ContinueRequest();
59 switch (handler->cert_error()) {
64 OnCertErrorInternal(handler, SSLBlockingPage::ERROR_OVERRIDABLE);
68 handler->ContinueRequest();
73 handler->ContinueRequest();
79 OnCertErrorInternal(handler, SSLBlockingPage::ERROR_FATAL);
83 handler->CancelRequest()
    [all...]
  /external/wpa_supplicant_8/src/utils/
eloop.h 77 * eloop_register_read_sock - Register handler for read events
79 * @handler: Callback function to be called when data is available for reading
84 * Register a read socket notifier for the given file descriptor. The handler
86 * socket. The handler function is responsible for clearing the event after
87 * having processed it in order to avoid eloop from calling the handler again
90 int eloop_register_read_sock(int sock, eloop_sock_handler handler,
94 * eloop_unregister_read_sock - Unregister handler for read events
103 * eloop_register_sock - Register handler for socket events
106 * @handler: Callback function to be called when the event is triggered
112 * handler function will be called whenever the that event is triggered for th
    [all...]

Completed in 1796 milliseconds

1 2 3 4 5 6 7 8 91011>>