Searched defs:contexts (Results 1 - 25 of 27) sorted by relevance

12

/openjdk7/jdk/test/java/math/BigDecimal/
H A DZeroScalingTests.java49 static MathContext contexts[] = { field in class:ZeroScalingTests
96 for (MathContext mc: contexts) {
198 for (MathContext mc: contexts) {
/openjdk7/jdk/src/share/classes/java/beans/
H A DThreadGroupContext.java44 private static final WeakIdentityMap<ThreadGroupContext> contexts = new WeakIdentityMap<>(); field in class:ThreadGroupContext
54 synchronized (contexts) {
55 ThreadGroupContext context = contexts.get(group);
58 contexts.put(group, context);
/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/
H A DOperationDescription.java43 public String contexts[] = null; field in class:OperationDescription
59 contexts = _contexts;
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DRequest.java143 public abstract ContextList contexts(); method in class:Request
H A DLocalObject.java216 * @param contexts a <code>ContextList</code> object containing a list of
231 ContextList contexts) {
226 _create_request(Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exceptions, ContextList contexts) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/framework/
H A DWSDLLocation.java41 int max = contexts.length;
45 System.arraycopy(contexts, 0, newContexts, 0, max);
47 contexts = newContexts;
49 currentContext = contexts[idPos];
51 contexts[idPos] = currentContext = new LocationContext();
54 currentContext.setParent(contexts[idPos - 1]);
62 currentContext = contexts[idPos];
67 contexts = new LocationContext[32];
69 contexts[idPos] = currentContext = new LocationContext();
80 private LocationContext[] contexts; field in class:WSDLLocation
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/naming/pcosnaming/
H A DServantManagerImpl.java68 private Hashtable contexts; field in class:ServantManagerImpl
82 contexts = new Hashtable();
93 Servant servant = (Servant) contexts.get(objKey);
111 NamingContextImpl context = (NamingContextImpl) contexts.get(objKey);
134 contexts.put(objKey, context);
159 contexts.remove( objKey );
164 contexts.put(objKey, context);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/
H A DCorbaServerRequestDispatcherImpl.java172 // Now that we have the service contexts processed and the
258 ServiceContexts contexts = new ServiceContexts(orb);
262 contexts.put( usc ) ;
268 contexts);
536 // but sending 2 service contexts, that is not normal as per
788 CorbaMessageMediator request, ServiceContexts contexts)
795 ServiceContext sc = contexts.get(
787 processCodeSetContext( CorbaMessageMediator request, ServiceContexts contexts) argument
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DMethodEntry.java140 public Vector contexts () method in class:MethodEntry
143 } // contexts
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/
H A DNamespaceContextImplementation.java46 private int[] contexts = new int[DEFAULT_SIZE]; field in class:NamespaceContextImplementation
210 if (contextPosition == contexts.length)
213 contexts[contextPosition++] = currentContext = namespacePosition;
217 int[] newContexts = new int[contexts.length * 3 / 2 + 1];
218 System.arraycopy(contexts, 0, newContexts, 0, contexts.length);
219 contexts = newContexts;
224 namespacePosition = currentContext = contexts[--contextPosition];
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/stax/
H A DNamespaceContexHelper.java38 * Namespace contexts are pushed on and popped off the namespace context stack.
72 // The namespace contexts
73 private int[] contexts = new int[DEFAULT_SIZE]; field in class:NamespaceContexHelper
257 if (contextPosition == contexts.length)
260 contexts[contextPosition++] = currentContext = namespacePosition;
264 int[] newContexts = new int[contexts.length * 3 / 2 + 1];
265 System.arraycopy(contexts, 0, newContexts, 0, contexts.length);
266 contexts = newContexts;
277 namespacePosition = currentContext = contexts[
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DRequestImpl.java178 public ContextList contexts() method in class:RequestImpl
/openjdk7/corba/src/share/classes/org/omg/CORBA/portable/
H A DObjectImpl.java228 * @param contexts a list of the properties that are needed to
229 * resolve the contexts in <i>ctx</i>; the strings in
230 * <i>contexts</i> are used as arguments to the method
243 ContextList contexts) {
250 contexts);
238 _create_request(Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exceptions, ContextList contexts) argument
H A DOutputStream.java265 * Only those Context values specified in the contexts
268 * @param contexts a <code>ContextList</code> object containing the list of contexts
274 org.omg.CORBA.ContextList contexts) {
273 write_Context(org.omg.CORBA.Context ctx, org.omg.CORBA.ContextList contexts) argument
/openjdk7/jaxp/src/org/xml/sax/helpers/
H A DNamespaceSupport.java177 contexts = new Context[32];
180 contexts[contextPos] = currentContext = new Context();
223 int max = contexts.length;
230 System.arraycopy(contexts, 0, newContexts, 0, max);
232 contexts = newContexts;
236 currentContext = contexts[contextPos];
238 contexts[contextPos] = currentContext = new Context();
243 currentContext.setParent(contexts[contextPos - 1]);
263 contexts[contextPos].clear();
268 currentContext = contexts[contextPo
535 private Context contexts[]; field in class:NamespaceSupport
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/output/
H A DFastInfosetStreamWriterOutput.java58 * A weak map of JAXB contexts to optimized tables for attributes, elements and
62 * contexts are only created once per schema or JAXB beans (which is the recommended
63 * practice as the creation JAXB contexts are expensive, they are thread safe and
202 * Holder of JAXB contexts -> tables.
208 final Map<JAXBContext, TablesPerJAXBContext> contexts = field in class:FastInfosetStreamWriterOutput.AppData
210 final Collection<TablesPerJAXBContext> collectionOfContexts = contexts.values();
237 final TablesPerJAXBContext tablesPerContext = appData.contexts.get(context);
247 appData.contexts.put(context, tables);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/
H A DNamespaceSupport.java177 contexts = new Context[32];
180 contexts[contextPos] = currentContext = new Context();
223 int max = contexts.length;
230 System.arraycopy(contexts, 0, newContexts, 0, max);
232 contexts = newContexts;
236 currentContext = contexts[contextPos];
238 contexts[contextPos] = currentContext = new Context();
243 currentContext.setParent(contexts[contextPos - 1]);
263 contexts[contextPos].clear();
268 currentContext = contexts[contextPo
535 private Context contexts[]; field in class:NamespaceSupport
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DNamespaceSupport.java122 contexts = new Context[that.contexts.length];
128 for (int i = 0; i < that.contexts.length; i++) {
129 Context thatContext = that.contexts[i];
132 contexts[i] = null;
137 contexts[i] = thisContext;
157 contexts = new Context[32];
159 contexts[contextPos] = currentContext = new Context();
178 int max = contexts.length;
184 System.arraycopy(contexts,
448 private Context contexts[]; field in class:NamespaceSupport
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DCDROutputStreamBase.java103 org.omg.CORBA.ContextList contexts) {
102 write_Context(org.omg.CORBA.Context ctx, org.omg.CORBA.ContextList contexts) argument
H A DCDROutputStream.java236 org.omg.CORBA.ContextList contexts) {
237 impl.write_Context(ctx, contexts);
235 write_Context(org.omg.CORBA.Context ctx, org.omg.CORBA.ContextList contexts) argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/interceptors/
H A DClientRequestInfoImpl.java239 /*contexts*/ { true , false, true , true , true },
460 * Allows interceptors to add service contexts to the request.
462 * There is no declaration of the order of the service contexts. They
578 public String[] contexts (){ method in class:ClientRequestInfoImpl
586 // Get the list of contexts from DII request data, If there are
587 // no contexts then this method will return null.
588 ContextList ctxList = request.contexts( );
620 // Get the list of contexts from DII request data, If there are
621 // no contexts then this method will return null.
632 // get all the contexts
[all...]
H A DRequestInfoImpl.java286 * This method returns the list of contexts for the DII operation.
290 abstract public String[] contexts (); method in class:RequestInfoImpl
H A DServerRequestInfoImpl.java218 /*contexts*/ { false, true , true , true , true },
427 * Allows Interceptors to add service contexts to the request.
458 // service contexts until we get to the ending point.
460 // It is added when we do have a handle on the service contexts object.
563 public String[] contexts (){ method in class:ServerRequestInfoImpl
566 // We do not support this because our ORB does not send contexts.
716 // to the reply service contexts, so we can execute all queued
741 // the interceptor raises an exception the queued service contexts
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DLogManager.java200 // the global manager's default contexts here.
209 // global manager's default contexts.
386 private List<LoggerContext> contexts() { method in class:LogManager
1116 for (LoggerContext cx : contexts()) {
1456 for (LoggerContext cx : contexts()) {
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DServerImpl.java51 private ContextList contexts; field in class:ServerImpl
96 contexts = new ContextList();
217 contexts.add (context);
227 contexts.add (context);
236 contexts.remove (protocol, path);
244 contexts.remove ((HttpContextImpl)context);
577 ctx = contexts.findContext (protocol, uri.getPath());

Completed in 55 milliseconds

12