Searched refs:style (Results 126 - 150 of 205) sorted by relevance

123456789

/openjdk7/jdk/src/share/classes/sun/font/
H A DFileFontStrike.java127 if (desc.style != fileFont.style) {
132 if ((desc.style & Font.ITALIC) == Font.ITALIC &&
133 (fileFont.style & Font.ITALIC) == 0) {
137 if ((desc.style & Font.BOLD) == Font.BOLD &&
138 ((fileFont.style & Font.BOLD) == 0)) {
328 int style,
335 int style = desc.style & Font.BOLD | desc.style
327 _getGlyphImageFromWindows(String family, int style, int size, int glyphCode, boolean fracMetrics) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthLookAndFeel.java271 * Updates the style associated with <code>c</code>, and all its children.
275 * @param c Component to update style for.
351 SynthStyle style = state.getStyle();
369 if ((subregion && style.isOpaque(state)) ||
371 g.setColor(style.getColor(state, ColorType.BACKGROUND));
581 * relatively to the specified <code>URL</code> of the style. For example
961 SynthStyle style = context.getStyle();
965 Color currBG = style.getColor(context, ColorType.BACKGROUND);
970 Color lastBG = style.getColor(context, ColorType.BACKGROUND);
H A DSynthParser.java76 private static final String ELEMENT_STYLE = "style";
102 private static final String ATTRIBUTE_STYLE = "style";
137 * Array of state infos for the current style. These are pushed to the
138 * style when </style> is received.
143 * Current style.
189 * List of SynthStyle.Painters that will be applied to the current style.
510 int style = Font.PLAIN;
540 style = ((style | Fon
[all...]
/openjdk7/jdk/src/windows/native/sun/font/
H A Dlcdglyph.c36 * - Receives the family name, style, and size of the font
172 jstring fontFamily, jint style, jint size, jint glyphCode, jboolean fm) {
225 lf.lfWeight = (style & 1) ? FW_BOLD : FW_NORMAL;
226 lf.lfItalic = (style & 2) ? 0xff : 0;
170 Java_sun_font_FileFontStrike__1getGlyphImageFromWindows(JNIEnv *env, jobject unused, jstring fontFamily, jint style, jint size, jint glyphCode, jboolean fm) argument
/openjdk7/jdk/src/share/classes/java/util/
H A DJapaneseImperialCalendar.java937 public String getDisplayName(int field, int style, Locale locale) { argument
938 if (!checkDisplayNameParams(field, style, SHORT, LONG, locale,
943 // "GanNen" is supported only in the LONG style.
945 && (style == SHORT || get(YEAR) != 1 || get(ERA) == 0)) {
951 String key = getKey(field, style);
964 name = (style == SHORT) ? era.getAbbreviation() : era.getName();
975 public Map<String,Integer> getDisplayNames(int field, int style, Locale locale) { argument
976 if (!checkDisplayNameParams(field, style, ALL_STYLES, LONG, locale,
981 if (style == ALL_STYLES) {
997 return getDisplayNamesImpl(field, style, local
1000 getDisplayNamesImpl(int field, int style, Locale locale) argument
1028 getKey(int field, int style) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DScanner.java872 CommentStyle style;
874 style = CommentStyle.JAVADOC;
877 style = CommentStyle.BLOCK;
890 processComment(style);
1101 protected void processComment(CommentStyle style) { argument
1104 + "," + endPos + "," + style + ")=|"
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalRootPaneUI.java156 int style = root.getWindowDecorationStyle();
157 if (style != JRootPane.NONE) {
167 * to render the window decoration style, this method will remove it.
188 int style = root.getWindowDecorationStyle();
190 if (style == JRootPane.NONE) {
194 LookAndFeel.installBorder(root, borderKeys[style]);
267 * has a decoration style other than <code>JRootPane.NONE</code>.
295 // We have to revalidate/repaint root if the style is JRootPane.NONE
300 int style = root.getWindowDecorationStyle();
301 if (style
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DRTFReader.java69 /** This array maps character style numbers to Style objects. */
71 /** This array maps paragraph style numbers to Style objects. */
73 /** This array maps section style numbers to Style objects. */
577 * no punctuation. B- and C- style comments are allowed.
818 * into the three style arrays in the RTFReader. */
842 StyleDefiningDestination style;
844 style = styles.nextElement();
845 defined = style.realize();
846 warning("Style "+style.number+" ("+style
[all...]
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWFontConfiguration.java151 public String getTextComponentFontName(String familyName, int style) { argument
152 FontDescriptor[] fontDescriptors = getFontDescriptors(familyName, style);
H A DWToolkit.java591 public FontPeer getFontPeer(String name, int style) { argument
595 retval = (FontPeer)cacheFontPeer.get(lcName + style);
600 retval = new WFontPeer(name, style);
606 cacheFontPeer.put(lcName + style, retval);
699 * Returns a style map for the input method highlight.
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_PrintDialog.cpp88 DWORD style = ::GetClassLong(hdlg, GCL_STYLE); local
89 ::SetClassLong(hdlg,GCL_STYLE, style & ~CS_SAVEBITS);
H A Dawt_List.cpp112 DWORD style = WS_CHILD | WS_CLIPSIBLINGS | WS_VSCROLL | WS_HSCROLL | local
120 style |= WS_VISIBLE;
133 c->CreateHWnd(env, L"", style, exStyle,
280 DWORD style = ::GetWindowLong(GetListHandle(), GWL_STYLE) | WS_VSCROLL | WS_HSCROLL; local
282 style |= LBS_MULTIPLESEL;
284 style &= ~LBS_MULTIPLESEL;
292 CreateHWnd(env, L"", style, exStyle,
H A Dawt_Label.cpp90 DWORD style = WS_CHILD | WS_CLIPSIBLINGS; local
100 awtLabel->CreateHWnd(env, L"", style, exStyle,
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DSubWriterHolderWriter.java325 * @param style the style class to be added to the content tree
328 public Content getMemberTree(HtmlStyle style, Content contentTree) { argument
329 Content div = HtmlTree.DIV(style, getMemberTree(contentTree));
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DStyleSheet.java102 * The semantics for when a CSS style should overide visual attributes
175 * Fetches the style to use to render the given type
253 Style style = getResolvedStyle(cacheLookup.toString(),
255 return style;
276 Style style = getResolvedStyle(selector);
277 return style;
285 * a result of parsing a &lt;style&gt; tag.
316 * result of encountering an HTML style attribute.
352 * Removes a named style previously added to the document.
354 * @param nm the name of the style t
2796 insertStyle(Style style, int specificity) argument
2814 removeStyle(Style style) argument
3038 setStyle(Style style) argument
3117 private Style style; field in class:StyleSheet.SelectorMapping
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DX11FontManager.java781 0 == fontConfigFonts[i].style) {
815 protected FontUIResource getFontConfigFUIR(String family, int style, int size) { argument
817 CompositeFont font2D = getFontConfigManager().getFontConfigFont(family, style);
820 return new FontUIResource(family, style, size);
831 new FontUIResource(font2D.getFamilyName(null), style, size);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/parser/
H A DRuntimeWSDLParser.java446 String style = reader.getAttributeValue(null, "style");
448 if ((style != null) && (style.equals("rpc"))) {
456 String style = reader.getAttributeValue(null, "style");
457 if ((style != null) && (style.equals("rpc"))) {
488 String style = null;
497 style
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DRuntimeModeler.java207 if(sbSei == null || sbSei.style() != sbPortClass.style()|| sbSei.use() != sbPortClass.use()){
316 if (soapBinding.style() == SOAPBinding.Style.RPC && soapBinding.parameterStyle() == SOAPBinding.ParameterStyle.BARE) {
404 Style style = soapBinding!=null ? soapBinding.style() : Style.DOCUMENT;
405 rtSOAPBinding.setStyle(style);
535 if(methodBinding != null && methodBinding.style() == SOAPBinding.Style.RPC) {
539 if (methodBinding != null && methodBinding.style() == SOAPBinding.Style.RPC && methodBinding.parameterStyle() == SOAPBinding.ParameterStyle.BARE) {
545 if(methodBinding!= null && defaultBinding.getStyle() != methodBinding.style()) {
547 methodBinding.style(), metho
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A Diterator.hpp88 Prefetch::style prefetch_style() { // Note that this is non-virtual.
/openjdk7/jdk/src/share/classes/com/sun/tools/script/shell/
H A Dinit.js759 * @param style XSL Stylesheet to be used (URL, File or InputStream). optional.
762 function XSLTransform(inp, style, out) {
770 style = arguments[1];
780 if (style) {
781 transformer = factory.newTransformer(XMLSource(style));
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DLWCToolkit.java273 public OSXPlatformFont(String name, int style) argument
275 super(name, style);
283 public FontPeer getFontPeer(String name, int style) { argument
284 return new OSXPlatformFont(name, style);
632 * The style field of the input method highlight is ignored. The map
635 * @return style attribute map, or null
/openjdk7/jdk/src/windows/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.c392 DWORD style, exStyle; local
398 wcex.style = CS_HREDRAW | CS_VREDRAW;
413 style = WS_POPUP;
414 hWnd = CreateWindowEx(exStyle, (LPCSTR) wndClass, "", style,
/openjdk7/jdk/src/share/classes/sun/awt/
H A DHeadlessToolkit.java396 public FontPeer getFontPeer(String name, int style) { argument
398 return componentFactory.getFontPeer(name, style);
H A DPlatformFont.java59 public PlatformFont(String name, int style){ argument
74 componentFonts = fontConfig.getFontDescriptors(familyName, style);
/openjdk7/jdk/src/share/classes/java/io/
H A DStreamTokenizer.java49 * <li>Whether C-style comments are to be recognized and skipped.
50 * <li>Whether C++-style comments are to be recognized and skipped.
215 * <li>C-style and C++-style comments are not recognized.
444 * Determines whether or not the tokenizer recognizes C-style comments.
446 * recognizes C-style comments. All text between successive
449 * If the flag argument is <code>false</code>, then C-style comments
453 * C-style comments.
460 * Determines whether or not the tokenizer recognizes C++-style comments.
462 * recognizes C++-style comment
[all...]

Completed in 194 milliseconds

123456789