Searched refs:handlers (Results 26 - 43 of 43) sorted by relevance

12

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DHandlerChainsModel.java108 List<HandlerType> handlers = hChain.getHandlers();
145 handlers.add(handler);
169 * handlers and roles.
465 List<HandlerType> handlers; field in class:HandlerChainsModel.HandlerChainType
519 if (handlers == null) {
520 handlers = new ArrayList<HandlerType>();
522 return this.handlers;
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DBCELFactory.java346 CodeExceptionGen[] handlers = _mg.getExceptionHandlers();
348 for(int i=0; i < handlers.length; i++) {
349 CodeExceptionGen h = handlers[i];
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Compilation.cpp279 // Call stubs + two deopt handlers (regular and MH) + exception handler
324 bailout("linear scan can't handle exception handlers");
442 XHandlers* handlers = info->exception_handlers(); local
449 for (int i = 0; i < handlers->length(); i++) {
450 XHandler* handler = handlers->handler_at(i);
455 // two different handlers are declared to dispatch to the same
475 assert(i == handlers->length() - 1, "catch all must be last handler");
542 // Note: we do not have program counters for these exception handlers yet
H A Dc1_LIRAssembler.cpp179 XHandlers* handlers = info_list->at(i)->exception_handlers(); local
181 for (int j = 0; j < handlers->length(); j++) {
182 XHandler* handler = handlers->handler_at(j);
H A Dc1_GraphBuilder.cpp183 // Draws edges from a block to its exception handlers
702 // subroutine, including those for exception handlers in the scope
704 // handlers may contain ret instructions in some cases).
826 // clone all the exception handlers from the scope
827 XHandlers* handlers = new XHandlers(scope()->xhandlers()); local
828 const int n = handlers->length();
835 XHandler* h = handlers->handler_at(i);
839 _jsr_xhandlers = handlers;
1874 // do not have exception handlers in the containing method, and are
2147 // set up exception handlers fo
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/property/
H A DAttributeProperty.java99 public void buildChildElementUnmarshallers(UnmarshallerChain chainElem, QNameMap<ChildLoader> handlers) { argument
H A DSingleElementLeafProperty.java123 public void buildChildElementUnmarshallers(UnmarshallerChain chain, QNameMap<ChildLoader> handlers) { argument
134 handlers.put(tagName, new ChildLoader(l, null));
H A DSingleElementNodeProperty.java153 public void buildChildElementUnmarshallers(UnmarshallerChain chain, QNameMap<ChildLoader> handlers) { argument
165 handlers.put( e.getTagName(), new ChildLoader(l,acc));
H A DSingleMapNodeProperty.java127 public void buildChildElementUnmarshallers(UnmarshallerChain chain, QNameMap<ChildLoader> handlers) { argument
130 handlers.put(tagName,new ChildLoader(itemsLoader,null));
/openjdk7/jdk/src/share/classes/java/net/
H A DURL.java141 * for protocol handlers. The value of this property (if any) should
144 * all protocol handlers will be in a class called <protocolname>.Handler,
277 * <p>Protocol handlers for the following protocols are guaranteed
282 * Protocol handlers for additional protocols may also be
976 * made through the specified proxy; Protocol handlers that do not
1110 handlers.clear();
1116 * A table of protocol handlers.
1118 static Hashtable handlers = new Hashtable(); field in class:URL
1134 // package name of the JDK implementation protocol handlers
1143 URLStreamHandler handler = (URLStreamHandler)handlers
[all...]
H A DURLConnection.java1239 private static Hashtable handlers = new Hashtable(); field in class:URLConnection
1253 handler = (ContentHandler) handlers.get(contentType);
1268 handlers.put(contentType, handler);
1367 * content handlers. Tries to get the java.content.handler.pkgs property
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DLogger.java179 private final CopyOnWriteArrayList<Handler> handlers = field in class:Logger
488 * by default it inherits its effective level and handlers
512 * by default it inherits its effective level and handlers
605 // our parents' handlers, all the way up the tree.
703 * which is forwarded to all registered output handlers.
809 * which is forwarded to all registered output handlers.
952 * which is forwarded to all registered output handlers.
1100 * which is forwarded to all registered output handlers. The
1304 * that essentially act as default handlers for all loggers.
1314 handlers
[all...]
/openjdk7/hotspot/src/share/vm/compiler/
H A DmethodLiveness.cpp387 ciExceptionHandlerStream handlers(method());
388 for (; !handlers.is_done(); handlers.next()) {
389 ciExceptionHandler* handler = handlers.handler();
406 // Skip the rest of the exception handlers -- they can never be
433 // possible exception of exception handlers, which are all created
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DCommunicatorServer.java1122 final ClientHandler[] handlers =
1124 for (ClientHandler h : handlers) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DElementBeanInfoImpl.java168 public void buildChildElementUnmarshallers(UnmarshallerChain chain, QNameMap<ChildLoader> handlers) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/jaxws/
H A DPolicyWSDLParserExtension.java601 final Collection<PolicyRecordHandler> handlers, final PolicySourceModelContext modelContext) throws PolicyException{
602 final Collection<String> result = new ArrayList<String>(handlers.size());
604 for (PolicyRecordHandler handler : handlers) {
698 // messageSet holds the handlers for all wsdl:message elements. There
924 // Add handlers for wsdl:message elements
600 getPolicyURIs( final Collection<PolicyRecordHandler> handlers, final PolicySourceModelContext modelContext) argument
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DClassWriter.java643 Element handlers = code.findAllElements("Handler");
644 u2(handlers.size());
645 for (Element handler : handlers.elements()) {
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DSourceClass.java2002 Statement handlers[] = { handler };
2003 body = new TryStatement(w, body, handlers);

Completed in 84 milliseconds

12