Searched refs:context (Results 451 - 475 of 854) sorted by relevance

<<11121314151617181920>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/win32_amd64/
H A DWin32AMD64JavaThreadPDAccess.java101 AMD64ThreadContext context = (AMD64ThreadContext) t.getContext();
102 AMD64CurrentFrameGuess guesser = new AMD64CurrentFrameGuess(context, thread);
122 AMD64ThreadContext context = (AMD64ThreadContext) t.getContext();
123 return context.getRegisterAsAddress(AMD64ThreadContext.RSP);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/win32_x86/
H A DWin32X86JavaThreadPDAccess.java100 X86ThreadContext context = (X86ThreadContext) t.getContext();
101 X86CurrentFrameGuess guesser = new X86CurrentFrameGuess(context, thread);
121 X86ThreadContext context = (X86ThreadContext) t.getContext();
122 return context.getRegisterAsAddress(X86ThreadContext.ESP);
/openjdk7/jdk/src/share/classes/javax/script/
H A DCompiledScript.java49 * @param context A <code>ScriptContext</code> that is used in the same way as
57 * @throws NullPointerException if context is null.
60 public abstract Object eval(ScriptContext context) throws ScriptException; argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthBorder.java55 SynthContext context = ui.getContext(jc);
56 SynthStyle style = context.getStyle();
62 ui.paintBorder(context, g, x, y, width, height);
63 context.dispose();
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DVolatileSurfaceManager.java93 protected Object context; field in class:VolatileSurfaceManager
95 protected VolatileSurfaceManager(SunVolatileImage vImg, Object context) { argument
97 this.context = context;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/dt/builtin/
H A DBuiltinDatatypeBuilder.java66 ValidationContext context) throws DatatypeException {
64 addParameter(String name, String value, ValidationContext context) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DClientLogicalHandlerTube.java118 boolean callHandlersOnRequest(MessageUpdatableContext context, boolean isOneWay) { argument
124 handlerResult = processor.callHandlersRequest(HandlerProcessor.Direction.OUTBOUND, context, !isOneWay);
141 void callHandlersOnResponse(MessageUpdatableContext context, boolean handleFault) { argument
145 processor.callHandlersResponse(HandlerProcessor.Direction.INBOUND, context, handleFault);
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DVolatileSurfaceManager.java50 public D3DVolatileSurfaceManager(SunVolatileImage vImg, Object context) { argument
51 super(vImg, context);
90 if (context instanceof Boolean) {
91 forceback = ((Boolean)context).booleanValue();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DSource.java73 public static Source instance(Context context) { argument
74 Source instance = context.get(sourceKey);
76 Options options = Options.instance(context);
80 context.put(sourceKey, instance);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DTarget.java74 public static Target instance(Context context) { argument
75 Target instance = context.get(targetKey);
77 Options options = Options.instance(context);
81 context.put(targetKey, instance);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/processing/
H A DJavacMessager.java51 JavacMessager(Context context, JavacProcessingEnvironment processingEnv) { argument
52 log = Log.instance(context);
177 public void newRound(Context context) { argument
178 log = Log.instance(context);
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DDefaultSynthStyle.java134 public Color getColor(SynthContext context, ColorType type) { argument
135 return getColor(context.getComponent(), context.getRegion(),
136 context.getComponentState(), type);
176 protected Color getColorForState(SynthContext context, ColorType type) { argument
177 return getColorForState(context.getComponent(), context.getRegion(),
178 context.getComponentState(), type);
262 protected Font getFontForState(SynthContext context) { argument
263 return getFontForState(context
282 getGraphicsUtils(SynthContext context) argument
442 getDefaultValue(SynthContext context, Object key) argument
[all...]
/openjdk7/jdk/test/javax/swing/JSlider/6923305/
H A Dbug6923305.java48 protected void paintTrack(SynthContext context, Graphics g, Rectangle trackBounds) {
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DContextFinder.java160 * javax.xml.bind.context.factory points to a class which has a
165 Object context = null;
172 context = m.invoke(null,contextPath,classLoader,properties);
177 if(context==null) {
182 context = m.invoke(null,contextPath,classLoader);
185 if(!(context instanceof JAXBContext)) {
187 throw handleClassCastException(context.getClass(), JAXBContext.class);
189 return (JAXBContext)context;
216 * Create an instance of a class using the thread context ClassLoader
248 Object context
[all...]
H A DJAXB.java108 final JAXBContext context; field in class:JAXB.Cache
112 this.context = JAXBContext.newInstance(type);
135 return d.context;
142 return d.context;
556 JAXBContext context;
559 context = getContext(((JAXBElement<?>)jaxbObject).getDeclaredType());
563 context = getContext(clazz);
570 Marshaller m = context.createMarshaller();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DPaths.java64 /** The context key for the todo list */
68 /** Get the Paths instance for this context.
69 * @param context the context
70 * @return the Paths instance for this context
72 public static Paths instance(Context context) { argument
73 Paths instance = context.get(pathsKey);
75 instance = new Paths(context);
91 protected Paths(Context context) { argument
92 context
97 setContext(Context context) argument
[all...]
H A DCacheFSInfo.java49 public static void preRegister(Context context) { argument
50 context.put(FSInfo.class, new Context.Factory<FSInfo>() {
/openjdk7/jdk/src/share/native/sun/security/smartcardio/
H A Dpcsc.c96 SCARDCONTEXT context; local
99 rv = CALL_SCardEstablishContext(dwScope, NULL, NULL, &context);
104 return (jlong)context;
147 SCARDCONTEXT context = (SCARDCONTEXT)jContext; local
153 dprintf1("-context: %x\n", context);
154 rv = CALL_SCardListReaders(context, NULL, NULL, &size);
161 rv = CALL_SCardListReaders(context, NULL, mszReaders, &size);
177 SCARDCONTEXT context = (SCARDCONTEXT)jContext; local
184 rv = CALL_SCardConnect(context, readerNam
274 SCARDCONTEXT context = (SCARDCONTEXT)jContext; local
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DMethodEntry.java133 /* Add a context to the context list. */
134 public void addContext (String context) argument
136 _contexts.addElement (context);
139 /** This is a vector of strings, each of which is the name of a context. */
/openjdk7/jdk/src/share/classes/java/lang/
H A DSecurityManager.java50 * it is being attempted in a security context that allows the
102 * within the context of the currently executing thread.
103 * Sometimes a security check that should be made within a given context
105 * <i>different</i> context (for example, from within a worker thread).
109 * method that includes a context argument are provided
112 * of the current calling context. (The default implementation
117 * Object context = null;
119 * if (sm != null) context = sm.getSecurityContext();
124 * that takes a context object in addition to a permission
125 * makes access decisions based on that context,
583 checkPermission(Permission perm, Object context) argument
922 checkRead(String file, Object context) argument
1095 checkConnect(String host, int port, Object context) argument
[all...]
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DConstantSetNode.java60 writer.println("<h4><a name=\"" + context.whereC + "\">" + name +
75 writer.print("<li><a href=\"#" + context.whereC + "\">");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/istack/internal/ws/
H A DAnnotationProcessorFactoryImpl.java101 AnnotationProcessorContext context = new AnnotationProcessorContext();
102 wsAP = new WebServiceAP(null, context, null, null);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DDataPatternBuilderImpl.java71 public void addParam(String name, String value, Context context, String ns, Location loc, Annotations anno) throws BuildException { argument
72 p.params.add(p.new Param(name,value,context.copy(),ns,loc,(Annotation)anno));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/policy/
H A DPolicyResolver.java46 * @param context
55 PolicyMap resolve(ServerContext context) throws WebServiceException; argument
60 * @param context
69 PolicyMap resolve(ClientContext context) throws WebServiceException; argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/jaxb/
H A DJAXBMessage.java92 public static Message create(JAXBRIContext context, Object jaxbObject, SOAPVersion soapVersion, HeaderList headers, AttachmentSet attachments) { argument
93 if(!context.hasSwaRef()) {
94 return new JAXBMessage(context,jaxbObject,soapVersion,headers,attachments);
104 Marshaller m = context.createMarshaller();
121 * @param context
130 public static Message create(JAXBRIContext context, Object jaxbObject, SOAPVersion soapVersion) { argument
131 return create(context,jaxbObject,soapVersion,null,null);
134 private JAXBMessage( JAXBRIContext context, Object jaxbObject, SOAPVersion soapVer, HeaderList headers, AttachmentSet attachments ) { argument
136 this.bridge = new MarshallerBridge(context);

Completed in 356 milliseconds

<<11121314151617181920>>