Searched refs:context (Results 276 - 300 of 854) sorted by relevance

<<11121314151617181920>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/parser/
H A DAnnotationParser.java45 * @param context
61 AnnotationContext context,
60 getContentHandler( AnnotationContext context, String parentElementName, ErrorHandler errorHandler, EntityResolver entityResolver ) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DJavacTool.java148 Context context = new Context();
149 context.put(Locale.class, locale);
151 context.put(DiagnosticListener.class, diagnosticListener);
155 context.put(Log.outKey, pw);
156 return new JavacFileManager(context, true, charset);
167 Context context = new Context();
168 ClientCodeWrapper ccw = ClientCodeWrapper.instance(context);
188 context.put(DiagnosticListener.class, ccw.wrap(diagnosticListener));
191 context.put(Log.outKey, new PrintWriter(System.err, true));
193 context
207 processOptions(Context context, JavaFileManager fileManager, Iterable<String> options) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DFSInfo.java27 /** Get the FSInfo instance for this context.
28 * @param context the context
29 * @return the Paths instance for this context
31 public static FSInfo instance(Context context) { argument
32 FSInfo instance = context.get(FSInfo.class);
41 protected FSInfo(Context context) { argument
42 context.put(FSInfo.class, this);
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSurfaceManagerFactory.java85 * arbitrary SunVolatileImage. An optional context Object can be supplied
86 * as a way for the caller to pass pipeline-specific context data to
90 createVolatileManager(SunVolatileImage image, Object context); argument
/openjdk7/langtools/test/tools/javac/
H A DT6358166.java59 Context context = new Context();
60 fm.setContext(context);
63 compilerMain.setOptions(Options.instance(context));
67 JavaCompiler c = JavaCompiler.instance(context);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/handler/soap/
H A DSOAPMessageContext.java46 /** Gets the <code>SOAPMessage</code> from this message context. Modifications
51 * <code>SOAPMessage</code> is present in this message context
55 /** Sets the SOAPMessage in this message context
59 * of the <code>SOAPMessage</code> in this message context
66 * message context. Note that a SOAP message can contain multiple headers
70 * @param context The JAXBContext that should be used to unmarshall the
77 * message is present in this message context or no headers match
83 public Object[] getHeaders(QName header, JAXBContext context, argument
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/operations/
H A DVariableSafeAbsRef.java35 * be used in some situations where the document context may have changed.
40 * to make sure the document context of the referenced variable is the same as
41 * the current document context, and, if it is not, execute the referenced variable's
42 * expression with the current context instead.
54 * @param xctxt The runtime execution context.
65 int context = xctxt.getContextNode();
67 dtmMgr.getDTM(context).getDocument())
70 xns = (XNodeSet)expr.asIterator(xctxt, context);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/amd64/
H A DWindbgAMD64Thread.java52 WindbgAMD64ThreadContext context = new WindbgAMD64ThreadContext(debugger);
54 context.setRegister(i, data[i]);
56 return context;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/ia64/
H A DWindbgIA64Thread.java62 WindbgIA64ThreadContext context = new WindbgIA64ThreadContext(debugger);
64 context.setRegister(i, data[i]);
66 return context;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/x86/
H A DWindbgX86Thread.java52 WindbgX86ThreadContext context = new WindbgX86ThreadContext(debugger);
54 context.setRegister(i, data[i]);
56 return context;
/openjdk7/jdk/src/share/classes/javax/script/
H A DScriptEngine.java106 * @param context A <code>ScriptContext</code> exposing sets of attributes in
122 public Object eval(String script, ScriptContext context) throws ScriptException; argument
131 * @param context The <code>ScriptContext</code> passed to the script engine.
138 public Object eval(Reader reader , ScriptContext context) throws ScriptException; argument
311 * @param context A <code>ScriptContext</code> that will replace the default <code>ScriptContext</code> in
313 * @throws NullPointerException if context is null.
315 public void setContext(ScriptContext context); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DBridgeContextImpl.java46 BridgeContextImpl(JAXBContextImpl context) { argument
47 unmarshaller = context.createUnmarshaller();
48 marshaller = context.createMarshaller();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/property/
H A DArrayProperty.java47 protected ArrayProperty(JAXBContextImpl context, RuntimePropertyInfo prop) { argument
48 super(context,prop);
54 acc = prop.getAccessor().optimize(context);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/binary/
H A DChoicePattern.java79 void checkRestrictions(int context, DuplicateAttributeDetector dad, Alphabet alpha) argument
83 p1.checkRestrictions(context, dad, alpha);
86 p2.checkRestrictions(context, dad, alpha);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DHandlerTube.java100 MessageUpdatableContext context = getContext(packet);
105 boolean handlerResult = callHandlersOnRequest(context, isOneWay);
107 context.updatePacket();
128 initiateClosing(context.getMessageContext());
137 MessageUpdatableContext context = getContext(packet);
149 callHandlersOnResponse(context, isFault);
152 initiateClosing(context.getMessageContext());
155 context.updatePacket();
166 MessageUpdatableContext context = getContext(packet);
167 initiateClosing(context
274 callHandlersOnResponse(MessageUpdatableContext context, boolean handleFault) argument
276 callHandlersOnRequest(MessageUpdatableContext context, boolean oneWay) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DLint.java49 /** The context key for the root Lint object. */
53 public static Lint instance(Context context) { argument
54 Lint instance = context.get(lintKey);
56 instance = new Lint(context);
101 protected Lint(Context context) { argument
103 Options options = Options.instance(context);
112 context.put(lintKey, this);
113 augmentor = new AugmentVisitor(context);
267 private final Context context; field in class:Lint.AugmentVisitor
272 AugmentVisitor(Context context) { argument
[all...]
/openjdk7/jdk/src/share/classes/sun/management/snmp/util/
H A DSnmpTableCache.java94 * @param context A context object.
97 protected synchronized SnmpCachedData getTableDatas(Object context) { argument
100 final SnmpCachedData computedDatas = updateCachedDatas(context);
107 * @param context A context object, as passed to
110 protected abstract SnmpCachedData updateCachedDatas(Object context); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/reflect/
H A DLister.java75 * @param context
78 public abstract ListIterator<ItemT> iterator(PropT multiValueProp, XMLSerializer context); argument
191 public ListIterator<ItemT> iterator(final ItemT[] objects, XMLSerializer context) { argument
266 public ListIterator iterator(T collection, XMLSerializer context) { argument
333 public ListIterator<String> iterator(PropT prop, XMLSerializer context) { argument
334 final ListIterator i = core.iterator(prop,context);
336 return new IDREFSIterator(i, context);
360 private final UnmarshallingContext context; field in class:Lister.IDREFS.Pack
367 this.context = UnmarshallingContext.getInstance();
368 this.location = new LocatorEx.Snapshot(context
420 private final XMLSerializer context; field in class:Lister.IDREFSIterator
423 IDREFSIterator(ListIterator i, XMLSerializer context) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/datatransfer/
H A DSunClipboard.java123 final AppContext context = AppContext.getAppContext();
125 if (contentsContext != context) {
128 synchronized (context) {
129 if (context.isDisposed()) {
132 context.addPropertyChangeListener
139 contentsContext = context;
157 AppContext context = AppContext.getAppContext();
158 return (context == contentsContext) ? contents : null;
272 * Clears the clipboard state (contents, owner and contents context) and
275 * contents context
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DCodeWriter.java49 static CodeWriter instance(Context context) { argument
50 CodeWriter instance = context.get(CodeWriter.class);
52 instance = new CodeWriter(context);
56 protected CodeWriter(Context context) { argument
57 super(context);
58 context.put(CodeWriter.class, this);
59 attrWriter = AttributeWriter.instance(context);
60 classWriter = ClassWriter.instance(context);
61 constantWriter = ConstantWriter.instance(context);
62 sourceWriter = SourceWriter.instance(context);
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DQNameDV.java46 public Object getActualValue(String content, ValidationContext context) argument
54 prefix = context.getSymbol(content.substring(0,colonptr));
69 String uri = context.getURI(prefix);
73 return new XQName(prefix, context.getSymbol(localpart), context.getSymbol(content), uri);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/patterns/
H A DContextMatchStepPattern.java33 * Special context node pattern matcher.
52 * @param xctxt XPath runtime context.
76 * @param xctxt The XPath runtime context.
93 int context = xctxt.getCurrentNode();
94 DTM dtm = xctxt.getDTM(context);
114 for (int relative = traverser.first(context); DTM.NULL != relative;
115 relative = traverser.next(context, relative))
127 if (executePredicates(xctxt, dtm, context))
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMManifest.java87 public DOMManifest(Element manElem, XMLCryptoContext context, argument
97 boolean secVal = Utils.secureValidation(context);
102 refs.add(new DOMReference(refElem, context, provider));
125 public void marshal(Node parent, String dsPrefix, DOMCryptoContext context) argument
137 ref.marshal(manElem, dsPrefix, context);
H A DDOMURIDereferencer.java57 public Data dereference(URIReference uriRef, XMLCryptoContext context) argument
63 if (context == null) {
64 throw new NullPointerException("context cannot be null");
70 DOMCryptoContext dcc = (DOMCryptoContext) context;
71 String baseURI = context.getBaseURI();
73 boolean secVal = Utils.secureValidation(context);
75 // Check if same-document URI and already registered on the context
H A DDOMXPathTransform.java60 public void init(XMLStructure parent, XMLCryptoContext context) argument
63 super.init(parent, context);
87 public void marshalParams(XMLStructure parent, XMLCryptoContext context) argument
90 super.marshalParams(parent, context);
95 DOMUtils.getSignaturePrefix(context));

Completed in 103 milliseconds

<<11121314151617181920>>