Searched defs:handler (Results 176 - 200 of 311) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/net/
H A DURL.java143 * for a protocol handler to load. The policy of this class is that
146 * handler. If none are found (or the property is not specified), the
151 private static final String protocolPathProp = "java.protocol.handler.pkgs";
214 transient URLStreamHandler handler; field in class:URL
240 * protocol, a <i>stream protocol handler</i> object, an instance of
244 * <code>URLStreamHandlerFactory</code> as the stream handler factory,
247 * stream protocol handler.
253 * java.protocol.handler.pkgs
267 * <li>If the previous step fails to find a protocol handler, then the
331 * number, <code>file</code>, and <code>handler</cod
367 URL(String protocol, String host, int port, String file, URLStreamHandler handler) argument
505 URL(URL context, String spec, URLStreamHandler handler) argument
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethodBlocks.cpp73 // Move an exception handler information if needed.
271 ciExceptionHandler* handler = str.handler(); local
272 ciBlock *eb = make_block_at(handler->handler_bci());
288 int ex_start = handler->start();
289 int ex_end = handler->limit();
296 // Extend old handler exception range to cover additional range.
315 ciExceptionHandler* handler = str.handler(); local
316 int ex_start = handler
[all...]
/openjdk7/hotspot/src/cpu/zero/vm/
H A Dframe_zero.cpp308 InterpreterRuntime::SignatureHandler *handler = local
311 intptr_t *params = istate->stack_base() - handler->argument_count();
327 for (int i = 0; i < handler->argument_count(); i++) {
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/serialization/
H A DXMLParser.java126 public void addChild(ElementHandler<?, ? super T> handler) { argument
127 assert handler != null;
128 hashtable.put(handler.getName(), handler);
229 ElementHandler handler = stack.pop();
230 if (handler != null) {
231 handler.endElement();
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCTrayIcon.java44 private DialogEventHandler handler; field in class:CTrayIcon
60 this.handler = null;
283 handler = new DialogEventHandler();
314 op.addPropertyChangeListener(handler);
340 dialog.addWindowListener(handler);
380 messageDialog.removeWindowListener(handler);
381 messageDialog.removePropertyChangeListener(handler);
385 handler = null;
/openjdk7/jdk/src/share/classes/com/sun/beans/decoder/
H A DDocumentHandler.java73 private ElementHandler handler; field in class:DocumentHandler
76 * Creates new instance of document handler.
133 * when handler catches recoverable exceptions.
146 * when handler catches recoverable exceptions.
155 * Returns the owner of this document handler.
157 * @return the owner of this document handler
164 * Sets the owner of this document handler.
166 * @param owner the owner of this document handler
173 * Returns the handler for the element with specified name.
176 * @return the corresponding element handler
192 setElementHandler(String name, Class<? extends ElementHandler> handler) argument
[all...]
/openjdk7/jaxp/src/org/xml/sax/helpers/
H A DXMLFilterImpl.java278 * Set the DTD event handler.
280 * @param handler the new DTD handler
282 public void setDTDHandler (DTDHandler handler) argument
284 dtdHandler = handler;
289 * Get the current DTD event handler.
291 * @return The current DTD handler, or null if none was set.
300 * Set the content event handler.
302 * @param handler the new content handler
304 setContentHandler(ContentHandler handler) argument
326 setErrorHandler(ErrorHandler handler) argument
[all...]
H A DXMLReaderAdapter.java170 * Register the DTD event handler.
172 * @param handler The new DTD event handler.
175 public void setDTDHandler (DTDHandler handler) argument
177 xmlReader.setDTDHandler(handler);
182 * Register the SAX1 document event handler.
184 * <p>Note that the SAX1 document handler has no Namespace
187 * @param handler The new SAX1 document event handler.
190 public void setDocumentHandler (DocumentHandler handler) argument
202 setErrorHandler(ErrorHandler handler) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/
H A DModelLoader.java175 // this error must have been reported to the user vis error handler
245 public void parse(InputSource source, ContentHandler handler, argument
248 handler = wrapBy( new ExtensionBindingChecker(XMLConstants.W3C_XML_SCHEMA_NS_URI,opt,errorReceiver), handler );
249 handler = wrapBy( new IncorrectNamespaceURIChecker(errorReceiver), handler );
250 handler = wrapBy( new CustomizationContextChecker(errorReceiver), handler );
251 // handler = wrapBy( new VersionChecker(controller), handler );
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DInputEntity.java391 * <P> the document handler's characters() method is called
555 * <P> The document handler's characters() or ignorableWhitespace()
705 * <P> the document handler's ignorableWhitespace() method
708 public boolean ignorableWhitespace(DTDEventListener handler) argument
719 handler.ignorableWhitespace(buf, first, start - first);
742 handler.ignorableWhitespace(buf, first,
744 handler.ignorableWhitespace(newline, 0, 1);
753 handler.ignorableWhitespace(buf, first, start - first);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/
H A DXMLStreamBuffer.java300 * If the <code>handler</code> is also an instance of other SAX-based
304 * @param handler
313 public final void writeTo(ContentHandler handler, boolean produceFragmentEvent) throws SAXException { argument
315 p.setContentHandler(handler);
317 p.setLexicalHandler((LexicalHandler)handler);
320 p.setDTDHandler((DTDHandler)handler);
323 p.setErrorHandler((ErrorHandler)handler);
332 public final void writeTo(ContentHandler handler) throws SAXException { argument
333 writeTo(handler,isFragment());
341 * If the <code>handler</cod
354 writeTo(ContentHandler handler, ErrorHandler errorHandler, boolean produceFragmentEvent) argument
369 writeTo(ContentHandler handler, ErrorHandler errorHandler) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/output/
H A DIndentingXMLFilter.java47 public IndentingXMLFilter(ContentHandler handler) { argument
48 setContentHandler(handler);
51 public IndentingXMLFilter(ContentHandler handler, LexicalHandler lexical) { argument
52 setContentHandler(handler);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DHandlerProcessor.java26 package com.sun.xml.internal.ws.handler;
31 import javax.xml.ws.handler.Handler;
32 import javax.xml.ws.handler.MessageContext;
45 com.sun.xml.internal.ws.util.Constants.LoggingDomain + ".handler");
66 * @param chain A list of handler objects, which can
79 * Gives index of the handler in the chain to know what handlers in the chain
87 * This is called when a handler returns false or throws a RuntimeException
128 logger.log(Level.FINER, "exception in handler chain", pe);
146 logger.log(Level.FINER, "exception in handler chain", re);
203 logger.log(Level.FINER, "exception in handler chai
[all...]
H A DHandlerTube.java26 package com.sun.xml.internal.ws.handler;
34 import javax.xml.ws.handler.MessageContext;
35 import javax.xml.ws.handler.Handler;
88 // This check is done to cover handler returning false in Oneway request
142 // or handler chain is empty
180 * Must be overridden by HandlerTube that drives other handler tubes for processing a message.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodVisitor.java138 * starts an exception handler block. The visited types must describe the
330 * @param dflt beginning of the default handler block.
331 * @param labels beginnings of the handler blocks. <tt>labels[i]</tt> is
332 * the beginning of the handler block for the <tt>min + i</tt> key.
339 * @param dflt beginning of the default handler block.
341 * @param labels beginnings of the handler blocks. <tt>labels[i]</tt> is
342 * the beginning of the handler block for the <tt>keys[i]</tt> key.
361 * @param start beginning of the exception handler's scope (inclusive).
362 * @param end end of the exception handler's scope (exclusive).
363 * @param handler beginnin
371 visitTryCatchBlock(Label start, Label end, Label handler, String type) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/helpers/
H A DAbstractMarshallerImpl.java69 /** handler that will be used to process errors and warnings during marshal */
119 public final void marshal( Object obj, org.xml.sax.ContentHandler handler )
122 checkNotNull( obj, "obj", handler, "handler" );
123 marshal( obj, new SAXResult(handler) );
399 public void setEventHandler(ValidationEventHandler handler) argument
402 if( handler == null ) {
405 eventHandler = handler;
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DWindowsAsynchronousServerSocketChannelImpl.java224 // invoke completion handler
271 // invoke handler (but not directly)
292 final CompletionHandler<AsynchronousSocketChannel,Object> handler)
296 if (handler == null)
298 Invoker.invokeIndirectly(this, handler, attachment, null, exc);
323 if (handler == null)
325 Invoker.invokeIndirectly(this, handler, attachment, null, ioe);
336 new PendingFuture<AsynchronousSocketChannel,Object>(this, handler, attachment);
291 implAccept(Object attachment, final CompletionHandler<AsynchronousSocketChannel,Object> handler) argument
/openjdk7/jdk/test/java/util/concurrent/ThreadPoolExecutor/
H A DThrowingTasks.java77 static final Thread.UncaughtExceptionHandler handler field in class:ThrowingTasks
92 t.setUncaughtExceptionHandler(handler);
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvminstr/
H A DJVM_MANAGEMENT_MIB_IMPL.java203 private final NotificationHandler handler; field in class:JVM_MANAGEMENT_MIB_IMPL
212 handler = new NotificationHandler();
214 emitter.addNotificationListener(handler, null, null);
271 emitter.removeNotificationListener(handler);
643 private int findInCache(SnmpTableHandler handler, argument
646 if (!(handler instanceof SnmpCachedData)) {
647 if (handler != null) {
649 handler.getClass().getName();
655 final SnmpCachedData data = (SnmpCachedData)handler;
667 private SnmpOid getJvmMemPoolEntryIndex(SnmpTableHandler handler, argument
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DURLClassPath.java90 /* The jar protocol handler to use when creating new URLs */
596 private URLStreamHandler handler; field in class:URLClassPath.JarLoader
612 handler = jarHandler;
892 return new JarLoader(url, handler,
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/jar/
H A DJarURLConnection.java79 public JarURLConnection(URL url, Handler handler) argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDAbstractTraverser.java90 XSDAbstractTraverser (XSDHandler handler, argument
92 fSchemaHandler = handler;
H A DXSDComplexTypeTraverser.java122 XSDComplexTypeTraverser (XSDHandler handler, argument
124 super(handler, gAttrCheck);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/dom2dtm/
H A DDOM2DTMdefaultNamespaceDeclarationNode.java142 * @param handler The handler to associate to that key, or
150 UserDataHandler handler) {
151 return getOwnerDocument().setUserData( key, data, handler);
148 setUserData(String key, Object data, UserDataHandler handler) argument
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DToHTMLSAXHandler.java42 * wrapped SAX handler. There is optimization done knowing that the ultimate
440 * SAX handler's startElement() method has been gathered.
489 * @param handler the wrapped SAX content handler
492 public ToHTMLSAXHandler(ContentHandler handler, String encoding) argument
494 super(handler,encoding);
498 * @param handler the wrapped SAX content handler
499 * @param lex the wrapped lexical handler
503 ContentHandler handler,
502 ToHTMLSAXHandler( ContentHandler handler, LexicalHandler lex, String encoding) argument
[all...]

Completed in 114 milliseconds

1234567891011>>