Searched refs:context (Results 101 - 125 of 854) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTextFieldUI.java68 SynthContext context = getContext(comp, ENABLED);
71 style = SynthLookAndFeel.updateStyle(context, this);
74 SynthTextFieldUI.updateStyle(comp, context, getPropertyPrefix());
81 context.dispose();
84 static void updateStyle(JTextComponent comp, SynthContext context, argument
86 SynthStyle style = context.getStyle();
91 (Color)style.get(context, prefix + ".caretForeground"));
96 fg = style.getColorForState(context, ColorType.TEXT_FOREGROUND);
102 Object ar = style.get(context, prefix + ".caretAspectRatio");
107 context
197 paint(SynthContext context, Graphics g) argument
201 paintBackground(SynthContext context, Graphics g, JComponent c) argument
210 paintBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
[all...]
H A DSynthDesktopIconUI.java120 SynthContext context = getContext(c, ENABLED);
121 style = SynthLookAndFeel.updateStyle(context, this);
122 context.dispose();
130 SynthContext context = getContext(desktopIcon, ENABLED);
131 style.uninstallDefaults(context);
132 context.dispose();
168 SynthContext context = getContext(c);
170 SynthLookAndFeel.update(context, g);
171 context.getPainter().paintDesktopIconBackground(context,
201 paint(SynthContext context, Graphics g) argument
208 paintBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
[all...]
H A DSynthEditorPaneUI.java81 SynthContext context = getContext(getComponent(), ENABLED);
85 style.uninstallDefaults(context);
86 context.dispose();
117 SynthContext context = getContext(comp, ENABLED);
120 style = SynthLookAndFeel.updateStyle(context, this);
123 SynthTextFieldUI.updateStyle(comp, context, getPropertyPrefix());
130 context.dispose();
164 SynthContext context = getContext(c);
166 SynthLookAndFeel.update(context, g);
167 paintBackground(context,
179 paint(SynthContext context, Graphics g) argument
191 paintBackground(SynthContext context, Graphics g, JComponent c) argument
200 paintBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
[all...]
H A DSynthOptionPaneUI.java76 SynthContext context = getContext(c, ENABLED);
79 style = SynthLookAndFeel.updateStyle(context, this);
81 minimumSize = (Dimension)style.get(context,
91 context.dispose();
99 SynthContext context = getContext(optionPane, ENABLED);
101 style.uninstallDefaults(context);
102 context.dispose();
125 SynthContext context = getContext(optionPane, ENABLED);
126 optionPane.add(Box.createVerticalStrut(context.getStyle().
127 getInt(context, "OptionPan
198 paint(SynthContext context, Graphics g) argument
205 paintBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
[all...]
H A DSynthScrollPaneUI.java80 SynthContext context = getContext(c);
82 SynthLookAndFeel.update(context, g);
83 context.getPainter().paintScrollPaneBackground(context,
85 paint(context, g);
86 context.dispose();
100 SynthContext context = getContext(c);
102 paint(context, g);
103 context.dispose();
109 * @param context contex
113 paint(SynthContext context, Graphics g) argument
125 paintBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
237 ViewportBorder(SynthContext context) argument
[all...]
H A DSynthSeparatorUI.java87 SynthContext context = getContext(sep, ENABLED);
90 style = SynthLookAndFeel.updateStyle(context, this);
97 context, "ToolBar.separatorSize");
106 context.dispose();
114 SynthContext context = getContext(c, ENABLED);
116 style.uninstallDefaults(context);
117 context.dispose();
151 SynthContext context = getContext(c);
153 JSeparator separator = (JSeparator)context.getComponent();
154 SynthLookAndFeel.update(context,
186 paint(SynthContext context, Graphics g) argument
197 paintBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
[all...]
H A DSynthProgressBarUI.java90 SynthContext context = getContext(c, ENABLED);
92 style = SynthLookAndFeel.updateStyle(context, this);
93 setCellLength(style.getInt(context, "ProgressBar.cellLength", 1));
94 setCellSpacing(style.getInt(context, "ProgressBar.cellSpacing", 0));
95 progressPadding = style.getInt(context,
97 paintOutsideClip = style.getBoolean(context,
99 rotateText = style.getBoolean(context,
101 tileWhenIndeterminate = style.getBoolean(context, "ProgressBar.tileWhenIndeterminate", false);
102 tileWidth = style.getInt(context, "ProgressBar.tileWidth", 15);
117 context
243 paint(SynthContext context, Graphics g) argument
327 paintText(SynthContext context, Graphics g, String title) argument
392 paintBorder(SynthContext context, Graphics g, int x, int y, int w, int h) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DPool.java111 private final JAXBContext context; field in class:Pool.Marshaller
113 public Marshaller(JAXBContext context) { argument
114 this.context = context;
119 return context.createMarshaller();
131 private final JAXBContext context; field in class:Pool.Unmarshaller
133 public Unmarshaller(JAXBContext context) { argument
134 this.context = context;
139 return context
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/api/
H A DBridge.java68 protected Bridge(JAXBContextImpl context) { argument
69 this.context = context;
72 protected final JAXBContextImpl context; field in class:Bridge
80 return context;
94 Marshaller m = context.marshallerPool.take();
98 context.marshallerPool.recycle(m);
101 public final void marshal(@NotNull BridgeContext context,T object,XMLStreamWriter output) throws JAXBException { argument
102 marshal( ((BridgeContextImpl)context).marshaller, object, output );
128 Marshaller m = context
135 marshal(@otNull BridgeContext context,T object,OutputStream output, NamespaceContext nsContext) argument
148 marshal(@otNull BridgeContext context,T object,Node output) argument
171 marshal(@otNull BridgeContext context,T object, ContentHandler contentHandler) argument
184 marshal(@otNull BridgeContext context,T object, Result result) argument
224 unmarshal(@otNull BridgeContext context, @NotNull XMLStreamReader in) argument
256 unmarshal(@otNull BridgeContext context, @NotNull Source in) argument
281 unmarshal(@otNull BridgeContext context, @NotNull InputStream in) argument
311 unmarshal(@otNull BridgeContext context, @NotNull Node n) argument
314 unmarshal(@otNull Unmarshaller context, @NotNull Node n) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/
H A DSOAPExtensionHandler.java56 TWSDLParserContext context,
67 com.sun.tools.internal.ws.api.wsdl.TWSDLParserContext context,
82 TWSDLParserContext context,
86 context.push();
87 context.registerNamespaces(e);
89 SOAPBinding binding = getSOAPBinding(context.getLocation(e));
111 context.pop();
112 // context.fireDoneParsingEntity(getBindingQName(), binding);
124 TWSDLParserContext context,
128 context
55 handleDefinitionsExtension( TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
66 handleTypesExtension( com.sun.tools.internal.ws.api.wsdl.TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
81 handleBindingExtension( TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
123 handleOperationExtension( TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
167 handleInputExtension( TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
173 handleOutputExtension( TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
181 handleMIMEPartExtension( TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
242 handleHeaderElement(TWSDLExtensible parent, Element e, TWSDLParserContextImpl context) argument
297 handleHeaderFaultElement(Element e, TWSDLParserContextImpl context, SOAPHeader header, String use, Element e2) argument
339 handleFaultExtension( TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
397 handleServiceExtension( TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
409 handlePortExtension( TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
436 handlePortTypeExtension(TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
[all...]
H A DMIMEExtensionHandler.java55 TWSDLParserContext context,
59 return handleInputOutputExtension(context, parent, e);
61 return handleInputOutputExtension(context, parent, e);
63 return handleMIMEPartExtension(context, parent, e);
65 // context.fireIgnoringExtension(
73 TWSDLParserContext context,
77 context.push();
78 context.registerNamespaces(e);
80 MIMEMultipartRelated mpr = new MIMEMultipartRelated(context.getLocation(e));
88 context
54 doHandleExtension( TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
72 handleInputOutputExtension( TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
171 handleMIMEPartExtension( TWSDLParserContext context, TWSDLExtensible parent, Element e) argument
192 parseMIMEContent(TWSDLParserContext context, Element e) argument
213 parseMIMEXml(TWSDLParserContext context, Element e) argument
[all...]
H A DWSDLParser.java193 TWSDLParserContextImpl context = new TWSDLParserContextImpl(forest, document, listeners, errReceiver);
195 Definitions definitions = parseDefinitions(context, root);
200 private Definitions parseDefinitions(TWSDLParserContextImpl context, Document root) { argument
201 context.pushWSDLLocation();
202 context.setWSDLLocation(context.getDocument().getSystemId());
213 Definitions definitions = parseDefinitionsNoImport(context, root);
219 processImports(context);
220 context.popWSDLLocation();
224 private void processMexDocs(TWSDLParserContextImpl context){ argument
238 processImports(TWSDLParserContextImpl context) argument
253 parseDefinitionsNoImport( TWSDLParserContextImpl context, Document doc) argument
332 parseMessage( TWSDLParserContextImpl context, Definitions definitions, Element e) argument
375 parseMessagePart(TWSDLParserContextImpl context, Element e) argument
409 parsePortType( TWSDLParserContextImpl context, Definitions definitions, Element e) argument
457 parsePortTypeOperation( TWSDLParserContextImpl context, Element e) argument
706 parseBinding( TWSDLParserContextImpl context, Definitions definitions, Element e) argument
749 parseBindingOperation( TWSDLParserContextImpl context, Element e) argument
928 parseImport( TWSDLParserContextImpl context, Definitions definitions, Element e) argument
965 parseService( TWSDLParserContextImpl context, Definitions definitions, Element e) argument
1006 parsePort( TWSDLParserContextImpl context, Definitions definitions, Element e) argument
1067 handleExtension( TWSDLParserContextImpl context, TWSDLExtensible entity, Element e) argument
1081 handleExtension( TWSDLParserContextImpl context, TWSDLExtensible entity, Node n, Element e) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DAlphaPaintPipe.java92 public boolean needTile(Object context, int x, int y, int w, int h) { argument
101 TileContext context = (TileContext) ctx;
102 PaintContext paintCtxt = context.paintCtxt;
103 SunGraphics2D sg = context.sunG2D;
104 SurfaceData dstData = context.dstData;
107 if (context.lastData != null && context.lastRaster != null) {
108 srcData = (SurfaceData) context.lastData.get();
109 lastRas = (Raster) context.lastRaster.get();
115 ColorModel paintModel = context
183 skipTile(Object context, int x, int y) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DDomLoader.java59 public State( UnmarshallingContext context ) throws SAXException {
60 result = dom.createUnmarshaller(context);
66 handler.setDocumentLocator(context.getLocator());
68 declarePrefixes( context, context.getAllDeclaredPrefixes() );
70 context.handleError(e);
79 private void declarePrefixes( UnmarshallingContext context, String[] prefixes ) throws SAXException { argument
81 String nsUri = context.getNamespaceURI(prefixes[i]);
100 UnmarshallingContext context = state.getContext();
102 state.target = new State(context);
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/functions/
H A DFuncNamespace.java41 * @param xctxt The current execution context.
49 int context = getArg0AsNode(xctxt);
52 if(context != DTM.NULL)
54 DTM dtm = xctxt.getDTM(context);
55 int t = dtm.getNodeType(context);
58 s = dtm.getNamespaceURI(context);
66 s = dtm.getNodeName(context);
70 s = dtm.getNamespaceURI(context);
/openjdk7/jdk/test/java/net/URL/
H A DConstructor.java29 * tries to construct a variety of valid URLs with a given context
41 * where URL is the context, spec is the spec and expected is the
62 String context = in.readLine();
63 if (context == null) {
66 context = getValue(context);
70 if (context.equals("null")) {
73 url = new URL(new URL(context), spec);
76 throw new RuntimeException("error for: \n\tURL:" + context +
/openjdk7/jdk/test/sun/security/ssl/sanity/ciphersuites/
H A DCipherSuitesInOrder.java146 SSLContext context;
148 context = SSLContext.getDefault();
150 context = SSLContext.getInstance(protocol);
151 context.init(null, null, null);
155 SSLParameters parameters = context.getDefaultSSLParameters();
160 parameters = context.getSupportedSSLParameters();
168 SSLEngine engine = context.createSSLEngine();
183 SSLSocketFactory factory = context.getSocketFactory();
200 SSLServerSocketFactory serverFactory = context.getServerSocketFactory();
/openjdk7/jdk/src/share/instrument/
H A DJarFacade.c48 iterationContext* context = (iterationContext*) user_data; local
88 if (context->head == NULL) {
89 context->head = attribute;
91 context->tail->next = attribute;
93 context->tail = attribute;
108 iterationContext context = { NULL, NULL }; local
110 rc = JLI_ManifestIterate(jarfile, doAttribute, (void*)&context);
113 return context.head;
115 freeAttributes(context.head);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/dtd/
H A DIDREFDatatypeValidator.java55 * @param context the validation context
60 public void validate(String content, ValidationContext context) throws InvalidDatatypeValueException { argument
63 if(context.useNamespaces()) {
74 context.addIdRef(content);
H A DXML11IDREFDatatypeValidator.java57 * @param context the validation context
62 public void validate(String content, ValidationContext context) throws InvalidDatatypeValueException { argument
65 if(context.useNamespaces()) {
76 context.addIdRef(content);
H A DIDDatatypeValidator.java58 * @param context the validation context
63 public void validate(String content, ValidationContext context) throws InvalidDatatypeValueException { argument
66 if(context.useNamespaces()) {
77 if (context.isIdDeclared(content)) {
81 context.addId(content);
H A DXML11IDDatatypeValidator.java60 * @param context the validation context
65 public void validate(String content, ValidationContext context) throws InvalidDatatypeValueException { argument
68 if(context.useNamespaces()) {
79 if (context.isIdDeclared(content)) {
83 context.addId(content);
/openjdk7/jdk/src/share/classes/sun/awt/im/
H A DInputMethodJFrame.java46 public InputMethodJFrame(String title, InputContext context) { argument
54 if (context != null) {
55 this.inputContext = context;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DInternalBridge.java41 protected InternalBridge(JAXBContextImpl context) { argument
42 super(context);
46 return context;
/openjdk7/jdk/test/sun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/
H A DAcceptLargeFragments.java48 SSLContext context = SSLContext.getDefault();
53 SSLEngine cliEngine = context.createSSLEngine();
56 SSLEngine srvEngine = context.createSSLEngine();

Completed in 110 milliseconds

1234567891011>>