Searched refs:context (Results 151 - 175 of 854) sorted by relevance

1234567891011>>

/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DJavadocEnter.java43 public static JavadocEnter instance0(Context context) { argument
44 Enter instance = context.get(enterKey);
46 instance = new JavadocEnter(context);
50 public static void preRegister(Context context) { argument
51 context.put(enterKey, new Context.Factory<Enter>() {
58 protected JavadocEnter(Context context) { argument
59 super(context);
60 messager = Messager.instance0(context);
61 docenv = DocEnv.instance(context);
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSSLServerSocketImpl.java50 * <P> Also, the constructors take an explicit authentication context
56 * connections if they the authentication context has not been given
97 * authentication context and a specified connection backlog.
102 * @param context authentication context for this server
104 SSLServerSocketImpl(int port, int backlog, SSLContextImpl context) argument
108 initServer(context);
114 * authentication context and a specified backlog of connections
125 * @param context authentication context fo
127 SSLServerSocketImpl( int port, int backlog, InetAddress address, SSLContextImpl context) argument
142 SSLServerSocketImpl(SSLContextImpl context) argument
151 initServer(SSLContextImpl context) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/binary/
H A DGroupPattern.java69 void checkRestrictions(int context, DuplicateAttributeDetector dad, Alphabet alpha) throws RestrictionViolationException { argument
70 switch (context) {
76 super.checkRestrictions(context == ELEMENT_REPEAT_CONTEXT
78 : context,
81 if (context != LIST_CONTEXT
H A DOneOrMorePattern.java77 void checkRestrictions(int context, DuplicateAttributeDetector dad, Alphabet alpha) argument
79 switch (context) {
86 p.checkRestrictions(context == ELEMENT_CONTEXT
88 : context,
91 if (context != LIST_CONTEXT
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DDDataPattern.java71 Context context; field in class:DDataPattern.Param
76 public Param(String name, String value, Context context, String ns, Location loc, Annotation anno) { argument
79 this.context = context;
94 return context;
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DOptions.java43 public static Options instance(Context context) { argument
44 Options instance = context.get(Options.class);
46 instance = new Options(context);
50 protected Options(Context context) { argument
51 context.put(Options.class, this);
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DAcceptSecContextToken.java40 * Creates an AcceptSecContextToken for the context acceptor to send to
41 * the context initiator.
43 public AcceptSecContextToken(Krb5Context context, argument
49 * (1) context key: uses Kerberos session key (or subkey, if
50 * present in authenticator emitted by context initiator) directly
52 * This does not mention context acceptor. Hence we will not
63 context.resetMySequenceNumber(apRep.getSeqNumber().intValue());
66 * Note: The acceptor side context key was set when the
72 * Creates an AcceptSecContextToken at the context initiator's side
75 public AcceptSecContextToken(Krb5Context context, argument
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DAlphaColorPipe.java46 public boolean needTile(Object context, int x, int y, int w, int h) { argument
50 public void renderPathTile(Object context, argument
53 SunGraphics2D sg = (SunGraphics2D) context;
60 public void skipTile(Object context, int x, int y) { argument
64 public void endSequence(Object context) { argument
H A DSpanClipRenderer.java76 SCRcontext context = (SCRcontext) ctx;
77 return (outpipe.needTile(context.outcontext, x, y, w, h));
90 SCRcontext context = (SCRcontext) ctx;
91 RegionIterator ri = context.iterator.createCopy();
92 int[] band = context.band;
99 atile = context.tile;
105 context.tile = atile;
116 outpipe.renderPathTile(context.outcontext,
133 SCRcontext context = (SCRcontext) ctx;
134 outpipe.skipTile(context
[all...]
/openjdk7/jdk/src/share/classes/sun/management/snmp/util/
H A DSnmpListTableCache.java54 * @param context The context passed to
62 protected abstract SnmpOid getIndex(Object context, List rawDatas, argument
68 * @param context The context passed to
78 protected Object getData(Object context, List rawDatas, argument
85 * @param context A context object, valid during the duration of
90 * the context is be allocated by before this method is called,
92 * This class does not use the context objec
98 updateCachedDatas(Object context, List rawDatas) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/java2d/x11/
H A DX11VolatileSurfaceManager.java50 public X11VolatileSurfaceManager(SunVolatileImage vImg, Object context) { argument
51 super(vImg, context);
57 if ((context != null) && !accelerationEnabled) {
89 if (context instanceof Long) {
90 drawable = ((Long)context).longValue();
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWInputMethod.java48 * The input method context, which is used to dispatch input method
59 private int context; field in class:WInputMethod
121 context = createNativeContext();
122 cmode = getConversionStatus(context);
123 open = getOpenStatus(context);
132 // Release the resources used by the native input context.
133 if (context!=0) {
134 destroyNativeContext(context);
135 context=0;
140 public synchronized void setInputMethodContext(InputMethodContext context) { argument
609 destroyNativeContext(int context) argument
610 enableNativeIME(WComponentPeer peer, int context, boolean useNativeCompWindow) argument
613 endCompositionNative(int context, boolean flag) argument
614 setConversionStatus(int context, int cmode) argument
615 getConversionStatus(int context) argument
616 setOpenStatus(int context, boolean flag) argument
617 getOpenStatus(int context) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTreeUI.java104 SynthContext context = getContext(tree, ENABLED);
107 style = SynthLookAndFeel.updateStyle(context, this);
111 setExpandedIcon(style.getIcon(context, "Tree.expandedIcon"));
112 setCollapsedIcon(style.getIcon(context, "Tree.collapsedIcon"));
114 setLeftChildIndent(style.getInt(context, "Tree.leftChildIndent",
116 setRightChildIndent(style.getInt(context, "Tree.rightChildIndent",
120 context, "Tree.drawHorizontalLines",true);
122 context, "Tree.drawVerticalLines", true);
123 linesStyle = style.get(context, "Tree.linesStyle");
125 value = style.get(context, "Tre
279 paintBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
308 paint(SynthContext context, Graphics g) argument
441 configureRenderer(SynthContext context) argument
785 paintIcon(SynthContext context, Graphics g, int x, int y, int w, int h) argument
797 getIconWidth(SynthContext context) argument
810 getIconHeight(SynthContext context) argument
[all...]
H A DSynthSliderUI.java113 SynthContext context = getContext(slider, ENABLED);
114 style.uninstallDefaults(context);
115 context.dispose();
118 context = getContext(slider, Region.SLIDER_TRACK, ENABLED);
119 sliderTrackStyle.uninstallDefaults(context);
120 context.dispose();
123 context = getContext(slider, Region.SLIDER_THUMB, ENABLED);
124 sliderThumbStyle.uninstallDefaults(context);
125 context.dispose();
148 SynthContext context
800 paint(SynthContext context, Graphics g) argument
857 paintBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
870 paintThumb(SynthContext context, Graphics g, Rectangle thumbBounds) argument
889 paintTrack(SynthContext context, Graphics g, Rectangle trackBounds) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DEntityDV.java42 public Object getActualValue(String content, ValidationContext context) throws InvalidDatatypeValueException { argument
50 public void checkExtraRules(Object value, ValidationContext context) throws InvalidDatatypeValueException { argument
51 if (!context.isEntityUnparsed((String)value)) {
H A DIDREFDV.java42 public Object getActualValue(String content, ValidationContext context) throws InvalidDatatypeValueException { argument
49 public void checkExtraRules(Object value, ValidationContext context) throws InvalidDatatypeValueException { argument
50 context.addIdRef((String)value);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/patterns/
H A DFunctionPattern.java94 * @param xctxt XPath runtime context.
104 public XObject execute(XPathContext xctxt, int context) argument
108 DTMIterator nl = m_functionExpr.asIterator(xctxt, context);
117 score = (n == context) ? SCORE_OTHER : SCORE_NONE;
121 context = n;
137 * @param xctxt XPath runtime context.
147 public XObject execute(XPathContext xctxt, int context, argument
152 DTMIterator nl = m_functionExpr.asIterator(xctxt, context);
161 score = (n == context) ? SCORE_OTHER : SCORE_NONE;
165 context
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/amd64/
H A DRemoteAMD64Thread.java42 RemoteAMD64ThreadContext context = new RemoteAMD64ThreadContext(debugger);
49 context.setRegister(i, regs[i]);
51 return context;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/sparc/
H A DRemoteSPARCThread.java42 RemoteSPARCThreadContext context = new RemoteSPARCThreadContext(debugger);
50 context.setRegister(i, regs[i]);
52 return context;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/x86/
H A DRemoteX86Thread.java42 RemoteX86ThreadContext context = new RemoteX86ThreadContext(debugger);
49 context.setRegister(i, regs[i]);
51 return context;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/bean/field/
H A DIsSetFieldRenderer.java58 public FieldOutline generate(ClassOutlineImpl context, CPropertyInfo prop) { argument
59 return new IsSetField(context,prop,
60 core.generate(context, prop),
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DTransportPipeFactory.java84 * @param context
99 public abstract Pipe doCreate(@NotNull ClientPipeAssemblerContext context); argument
113 public static Pipe create(@Nullable ClassLoader classLoader, @NotNull ClientPipeAssemblerContext context) { argument
114 return PipeAdapter.adapt(TransportTubeFactory.create(classLoader,context));
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/util/
H A DJAXBResult.java81 * @param context The JAXBContext that will be used to create the
84 * JAXBResult or if the context parameter is null.
86 public JAXBResult( JAXBContext context ) throws JAXBException {
87 this( ( context == null ) ? assertionFailed() : context.createUnmarshaller() );
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DKeywords.java47 public static Keywords instance(Context context) { argument
48 Keywords instance = context.get(keywordsKey);
50 instance = new Keywords(context);
56 protected Keywords(Context context) { argument
57 context.put(keywordsKey, this);
58 names = Names.instance(context);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/
H A DJAXWSBindingExtensionHandler.java74 * @param context
78 private boolean parseGlobalJAXWSBindings(TWSDLParserContext context, TWSDLExtensible parent, Element e) { argument
79 context.push();
80 context.registerNamespaces(e);
84 jaxwsBinding = new JAXWSBinding(context.getLocation(e));
106 parsePackage(context, jaxwsBinding, e2);
111 parseWrapperStyle(context, jaxwsBinding, e2);
113 parseAsynMapping(context, jaxwsBinding, e2);
116 // parseAdditionalSOAPHeaderMapping(context, jaxwsBinding, e2);
119 parseMimeContent(context, jaxwsBindin
151 parseProvider(com.sun.tools.internal.ws.api.wsdl.TWSDLParserContext context, JAXWSBinding parent, Element e) argument
169 parseJAXBBindings(com.sun.tools.internal.ws.api.wsdl.TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
179 parsePackage(com.sun.tools.internal.ws.api.wsdl.TWSDLParserContext context, JAXWSBinding parent, Element e) argument
191 parseWrapperStyle(com.sun.tools.internal.ws.api.wsdl.TWSDLParserContext context, JAXWSBinding parent, Element e) argument
225 parseAsynMapping(com.sun.tools.internal.ws.api.wsdl.TWSDLParserContext context, JAXWSBinding parent, Element e) argument
242 parseMimeContent(com.sun.tools.internal.ws.api.wsdl.TWSDLParserContext context, JAXWSBinding parent, Element e) argument
259 parseMethod(com.sun.tools.internal.ws.api.wsdl.TWSDLParserContext context, JAXWSBinding jaxwsBinding, Element e) argument
271 parseParameter(com.sun.tools.internal.ws.api.wsdl.TWSDLParserContext context, JAXWSBinding jaxwsBinding, Element e) argument
329 parseClass(com.sun.tools.internal.ws.api.wsdl.TWSDLParserContext context, JAXWSBinding jaxwsBinding, Element e) argument
341 parseException(com.sun.tools.internal.ws.api.wsdl.TWSDLParserContext context, JAXWSBinding jaxwsBinding, Element e) argument
354 handleDefinitionsExtension(TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
358 handlePortTypeExtension(TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
401 handleOperationExtension(TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
418 handleBindingOperation(TWSDLParserContext context, BindingOperation operation, Element e) argument
459 handlePortTypeOperation(TWSDLParserContext context, Operation parent, Element e) argument
496 handleBindingExtension(TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
538 handleFaultExtension(TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
576 handleServiceExtension(TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
614 handlePortExtension(TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
[all...]

Completed in 120 milliseconds

1234567891011>>