/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/unistd/ |
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));
|
/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...] |
/cts/suite/audio_quality/lib/src/audio/ |
RemoteAudio.cpp | 108 CommandHandler* handler = NULL; local 110 handler = reinterpret_cast<CommandHandler*>(mDownloadHandler.get()); 112 handler = reinterpret_cast<CommandHandler*>(mPlaybackHandler.get()); 114 handler = reinterpret_cast<CommandHandler*>(mRecordingHandler.get()); 115 param = &(handler->getParam()); 118 if (handler != NULL) { 119 LOGD("handler present. Notify client"); 120 android::Mutex::Autolock lock(handler->mStateLock); 121 if (handler->mNotifyOnReply) { 122 handler->mNotifyOnReply = false 157 CommandHandler* handler = reinterpret_cast<CommandHandler*>(commandHandler.get()); local 173 CommandHandler* handler = reinterpret_cast<CommandHandler*>(commandHandler.get()); local 190 CommandHandler* handler = reinterpret_cast<CommandHandler*>(mDownloadHandler.get()); local 225 CommandHandler* handler = reinterpret_cast<CommandHandler*>(mPlaybackHandler.get()); local 270 CommandHandler* handler = reinterpret_cast<CommandHandler*>(mRecordingHandler.get()); local [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/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...] |
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/ |
Consumers.java | 19 import android.os.Handler; 38 public static <A> void consumeAsync(Handler handler, 40 if (handler == null) { 43 handler.post(new Runnable() { 51 public static <A extends QuietlyCloseable> void consumeCloseableAsync(Handler handler, 53 if (handler == null) { 56 handler.post(new Runnable() { 65 final Handler handler, final Consumer<A> consumer) [all...] |
/libcore/luni/src/test/java/libcore/java/util/logging/ |
OldFileHandlerTest.java | 32 import java.util.logging.Handler; 46 FileHandler handler; field in class:OldFileHandlerTest 76 handler = new FileHandler(); 81 if (null != handler) { 82 handler.close(); 96 "iso-8859-1", handler.getEncoding()); 97 assertNotNull("Filter is null", handler.getFilter()); 98 assertNotNull("Formatter is null", handler.getFormatter()); 99 assertEquals("is non equal to actual value", Level.FINE, handler 101 assertNotNull("ErrorManager is null", handler.getErrorManager()) [all...] |
/external/apache-http/src/org/apache/http/impl/cookie/ |
AbstractCookieSpec.java | 53 * Stores attribute name -> attribute handler mappings 66 final String name, final CookieAttributeHandler handler) { 70 if (handler == null) { 71 throw new IllegalArgumentException("Attribute handler may not be null"); 73 this.attribHandlerMap.put(name, handler); 77 * Finds an attribute handler {@link CookieAttributeHandler} for the 78 * given attribute. Returns <tt>null</tt> if no attribute handler is 82 * @return an attribute handler or <tt>null</tt> 89 * Gets attribute handler {@link CookieAttributeHandler} for the 93 * @throws IllegalStateException if handler not found for th 97 CookieAttributeHandler handler = findAttribHandler(name); local [all...] |