Searched refs:contexts (Results 1 - 25 of 40) sorted by relevance

12

/openjdk10/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wsdl/framework/
H A DWSDLLocation.java41 int max = contexts.length;
45 System.arraycopy(contexts, 0, newContexts, 0, max);
46 contexts = newContexts;
48 currentContext = contexts[idPos];
50 contexts[idPos] = currentContext = new LocationContext();
57 currentContext = contexts[idPos];
62 contexts = new LocationContext[32];
64 contexts[idPos] = currentContext = new LocationContext();
75 private LocationContext[] contexts; field in class:WSDLLocation
/openjdk10/jaxws/src/java.xml.ws/share/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...]
/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dg1CollectedHeap_ext.cpp33 bool G1CollectedHeap::copy_allocation_context_stats(const jint* contexts, argument
/openjdk10/jaxws/src/java.xml.bind/share/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];
/openjdk10/jaxws/src/java.xml.ws/share/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
254 if (contextPosition == contexts.length)
257 contexts[contextPosition++] = namespacePosition;
261 int[] newContexts = new int[contexts.length * 3 / 2 + 1];
262 System.arraycopy(contexts, 0, newContexts, 0, contexts.length);
263 contexts = newContexts;
274 namespacePosition = contexts[
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/org/xml/sax/helpers/
H A DNamespaceSupport.java180 contexts = new Context[32];
183 contexts[contextPos] = currentContext = new Context();
226 int max = contexts.length;
233 System.arraycopy(contexts, 0, newContexts, 0, max);
235 contexts = newContexts;
239 currentContext = contexts[contextPos];
241 contexts[contextPos] = currentContext = new Context();
246 currentContext.setParent(contexts[contextPos - 1]);
266 contexts[contextPos].clear();
271 currentContext = contexts[contextPo
538 private Context contexts[]; field in class:NamespaceSupport
[all...]
/openjdk10/jaxws/src/java.xml.bind/share/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...]
/openjdk10/corba/src/java.corba/share/classes/org/omg/CORBA/
H A DRequest.java143 public abstract ContextList contexts(); method in class:Request
H A DLocalObject.java220 * @param contexts a {@code ContextList} object containing a list of
235 ContextList contexts) {
230 _create_request(Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exceptions, ContextList contexts) argument
/openjdk10/corba/src/java.corba/share/classes/com/sun/org/omg/CORBA/
H A DOperationDescription.java43 public String contexts[] = null; field in class:OperationDescription
59 contexts = _contexts;
/openjdk10/jdk/src/java.desktop/share/classes/java/beans/
H A DThreadGroupContext.java44 private static final WeakIdentityMap<ThreadGroupContext> contexts = new WeakIdentityMap<ThreadGroupContext>() { field in class:ThreadGroupContext
57 return contexts.get(Thread.currentThread().getThreadGroup());
/openjdk10/corba/src/java.corba/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);
/openjdk10/nashorn/test/src/jdk/nashorn/internal/runtime/test/
H A DLexicalBindingTest.java59 final ScriptContext[] contexts = new ScriptContext[NUMBER_OF_CONTEXTS];
65 final ScriptContext context = contexts[i] = new SimpleScriptContext();
72 final ScriptContext context = contexts[i];
85 final ScriptContext[] contexts = new ScriptContext[NUMBER_OF_CONTEXTS];
91 final ScriptContext context = contexts[i] = new SimpleScriptContext();
98 final ScriptContext context = contexts[i];
/openjdk10/corba/src/java.corba/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
/openjdk10/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/
H A DMethodEntry.java140 public Vector contexts () method in class:MethodEntry
143 } // contexts
/openjdk10/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DMethodGen.java285 if (m.contexts ().size () > 0)
390 if (m.contexts ().size () > 0)
415 if (m.contexts ().size () > 0)
537 if (m.contexts ().size () > 0)
542 for (int cnt = 0; cnt < m.contexts ().size (); cnt++)
545 "$contextList.add (\"" + m.contexts (). elementAt (cnt) + "\");");
679 if (m.contexts ().size () > 0)
801 if (m.contexts ().size () > 0)
953 if (m.contexts ().size () != 0)
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/runtime/output/
H A DFastInfosetStreamWriterOutput.java59 * A weak map of JAXB contexts to optimized tables for attributes, elements and
63 * contexts are only created once per schema or JAXB beans (which is the recommended
64 * practice as the creation JAXB contexts are expensive, they are thread safe and
203 * Holder of JAXB contexts -> tables.
209 final Map<JAXBContext, TablesPerJAXBContext> contexts = field in class:FastInfosetStreamWriterOutput.AppData
211 final Collection<TablesPerJAXBContext> collectionOfContexts = contexts.values();
238 final TablesPerJAXBContext tablesPerContext = appData.contexts.get(context);
248 appData.contexts.put(context, tables);
/openjdk10/jdk/test/com/sun/corba/se/impl/io/
H A DCustomOutputStream.java185 org.omg.CORBA.ContextList contexts) {
184 write_Context(org.omg.CORBA.Context ctx, org.omg.CORBA.ContextList contexts) argument
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/protocol/
H A DCorbaClientRequestDispatcherImpl.java291 // service contexts may be added by PI because
482 // Now that we have the service contexts processed and the
525 ServiceContexts contexts =
527 if (contexts != null) {
530 contexts.get(UEInfoServiceContext.SERVICE_CONTEXT_ID);
764 ServiceContexts contexts = messageMediator.getRequestServiceContexts();
766 addCodeSetServiceContext(c, contexts, giopVersion);
772 contexts.put(MaxStreamFormatVersionServiceContext.singleton);
777 contexts.put( ovsc ) ;
787 contexts
[all...]
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
H A DCorbaMessageMediatorImpl.java534 // NOTE: The request service contexts may indicate the max.
2009 // REVISIT: ignore service contexts during framework transition.
2011 // Then they would be set again here and a duplicate contexts
2033 ServiceContexts contexts = null;
2036 contexts = new ServiceContexts( (ORB)messageMediator.getBroker() );
2038 contexts.put( uei ) ;
2039 return createSystemExceptionResponse(messageMediator, sys, contexts);
2101 // the response since service contexts are written to the
2109 // NOTE: From here on, it is too late to add more service contexts.
2302 CorbaMessageMediator messageMediator, ServiceContexts contexts)
2301 getServiceContextsForReply( CorbaMessageMediator messageMediator, ServiceContexts contexts) argument
[all...]
/openjdk10/jdk/src/jdk.httpserver/share/classes/sun/net/httpserver/
H A DServerImpl.java51 private ContextList contexts; field in class:ServerImpl
97 contexts = new ContextList();
230 contexts.add (context);
240 contexts.add (context);
249 contexts.remove (protocol, path);
257 contexts.remove ((HttpContextImpl)context);
589 ctx = contexts.findContext (protocol, uri.getPath());
/openjdk10/jdk/test/java/math/BigDecimal/
H A DZeroScalingTests.java51 static MathContext contexts[] = { field in class:ZeroScalingTests
98 for (MathContext mc: contexts) {
200 for (MathContext mc: contexts) {
/openjdk10/corba/src/java.corba/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

Completed in 379 milliseconds

12