Searched refs:style (Results 176 - 200 of 205) sorted by relevance

123456789

/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_FileDialog.cpp134 DWORD style = ::GetClassLong(hdlg,GCL_STYLE); local
135 ::SetClassLong(hdlg,GCL_STYLE,style & ~CS_SAVEBITS);
H A Dawt_ScrollPane.cpp110 DWORD style = WS_CHILD | WS_CLIPCHILDREN | WS_CLIPSIBLINGS; local
116 style |= WS_HSCROLL | WS_VSCROLL;
130 c->CreateHWnd(env, L"", style, exStyle,
H A Dawt_TextComponent.cpp111 /* Adjust style for scrollbar visibility and word wrap */
136 DWORD style = WS_CHILD | WS_CLIPSIBLINGS | ES_LEFT; local
139 * Specify ES_DISABLENOSCROLL - RichEdit control style to disable
142 style |= isMultiline ? ES_MULTILINE | ES_WANTRETURN | scroll_style
159 c->CreateHWnd(env, L"", style, exStyle,
H A Dawt_Window.h388 // Tweak the style according to the type of the window
389 void TweakStyle(DWORD & style, DWORD & exStyle);
H A Dawt_Choice.cpp129 DWORD style = WS_CHILD | WS_CLIPSIBLINGS | WS_VSCROLL | local
162 c->CreateHWnd(env, L"", style, exStyle,
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DHtmlTree.java78 * Adds a style for the HTML tag.
80 * @param style style to be added
82 public void addStyle(HtmlStyle style) { argument
83 addAttr(HtmlAttr.CLASS, style.toString());
201 * Generates a DIV tag with the style class attributes. It also encloses
299 * Generates a heading tag (h1 to h6) with the title and style class attributes. It also encloses
319 * Generates a heading tag (h1 to h6) with style class attribute. It also encloses
394 * @param styleClass style for the tag
477 * @param styleClass style o
[all...]
/openjdk7/jdk/make/common/
H A DDefs-linux.gmk211 # If this is a --hash-style=gnu system, use --hash-style=both
213 _HAS_HASH_STYLE_GNU:=$(shell $(CC) -dumpspecs | $(GREP) -- '--hash-style=gnu')
215 LDFLAGS_HASH_STYLE = -Wl,--hash-style=both
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/
H A DWSDLGenerator.java159 * Constant String "document" used to specify <code>document</code> style
164 * Constant String "rpc" used to specify <code>rpc</code> style
516 * Determines if the <CODE>method</CODE> is wrapper style
517 * @param method The {@link JavaMethod} to check if it is wrapper style
518 * @return true if the method is wrapper style, otherwise, false.
607 // really make sure this is a wrapper style wsdl we are creating
713 soapBinding.style(DOCUMENT);
715 soapBinding.style(RPC);
720 soapBinding.style(DOCUMENT);
722 soapBinding.style(RP
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DHTMLWriter.java895 * written out as a comment, inside a style tag.
904 // Don't write out the default style.
918 * Outputs the named style. <code>outputStyle</code> indicates
919 * whether or not a style has been output yet. This will return
920 * true if a style is written.
922 boolean writeStyle(String name, Style style, boolean outputStyle) argument
925 Enumeration attributes = style.getAttributeNames();
930 String value = style.getAttribute(attribute).toString();
962 write("<style type=\"text/css\">");
978 write("</style>");
[all...]
H A DCSS.java55 * <li>font-style
78 * <li>border-top-style
79 * <li>border-right-style
80 * <li>border-bottom-style
81 * <li>border-left-style
82 * <li>border-style (only supports inset, outset and none)
88 * <li>list-style-image
89 * <li>list-style-type
90 * <li>list-style-position
116 * <li>list-style
2236 transient private CSS.Value style; field in class:CSS.BorderStyle
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DHtmlDocletWriter.java242 " allClassesLink.style.display = \"block\";" + DocletConstants.NL +
245 " allClassesLink.style.display = \"none\";" + DocletConstants.NL +
1649 * @param style the font of the package link label.
1652 String style) {
1653 print(getPackageLinkString(pkg, label, isStrong, style));
1675 * @param style the font of the package link label.
1679 String style) {
1692 "", label, isStrong, style);
1696 return getHyperLinkString(crossPkgLink, "", label, isStrong, style);
1821 * @param style th
1651 printPackageLink(PackageDoc pkg, String label, boolean isStrong, String style) argument
1678 getPackageLinkString(PackageDoc pkg, String label, boolean isStrong, String style) argument
1824 getCrossClassLink(String qualifiedClassName, String refMemName, String label, boolean strong, String style, boolean code) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DDTD.java77 final Element style = getElement("style"); field in class:DTD
/openjdk7/jdk/src/share/classes/sun/font/
H A DType1Font.java163 * - determines the style of the font.
456 //Truncated tail must contain only style modifiers
464 //as soon as we meet first non style token truncate
493 //Conversion: Expand abbreviations in style portion (everything after '-'),
513 //Conversion: Truncate style portion (everything after '-')
680 " style="+style+" fileName="+getPublicFileName();
/openjdk7/jdk/src/share/classes/java/beans/
H A DMetaData.java751 int style = Font.PLAIN;
772 style |= Font.BOLD;
780 style |= Font.ITALIC;
794 return new Expression(font, type, "new", new Object[]{family, style, size});
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DParsedSynthStyle.java82 public ParsedSynthStyle(DefaultSynthStyle style) { argument
83 super(style);
84 if (style instanceof ParsedSynthStyle) {
85 ParsedSynthStyle pStyle = (ParsedSynthStyle)style;
101 public DefaultSynthStyle addTo(DefaultSynthStyle style) { argument
102 if (!(style instanceof ParsedSynthStyle)) {
103 style = new ParsedSynthStyle(style);
105 ParsedSynthStyle pStyle = (ParsedSynthStyle)super.addTo(style);
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKLookAndFeel.java537 GTKStyle style = (GTKStyle)factory.getStyle(null, region);
538 return style.getFontForState(null);
1680 * Gnome layout style. From:
/openjdk7/hotspot/src/share/vm/oops/
H A Dklass.hpp702 // const Prefetch::style pstyle);
705 const Prefetch::style pstyle_ = (pstyle); \
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dgtk2_interface.h427 GtkStyle *style; member in struct:_GtkWidget
/openjdk7/jdk/src/share/demo/jfc/Font2DTest/
H A DFont2DTest.java467 int style = fontStyles[styleMenu.getSelectedIndex()];
471 f = new Font(fontName, style, size);
/openjdk7/jdk/make/docs/
H A DMakefile235 <div style="background-color: \#EEEEEE"> \
236 <div style="padding: 6px; margin-top: 2px; margin-bottom: 6px; \
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DWSDLModeler.java344 * validate wsdl:binding uniqueness in style, e.g. rpclit or doclit
534 //set the style based on heuristic that message has either all parts defined
593 * for non_soap wsdl what could be the style - rpc or document based on parts in the message.
601 SOAPStyle style = SOAPStyle.DOCUMENT;
604 style = SOAPStyle.RPC;
606 style = SOAPStyle.DOCUMENT;
613 style = SOAPStyle.RPC;
615 style = SOAPStyle.DOCUMENT;
618 info.modelPort.setStyle(style);
689 // document style
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/win32/coff/
H A DCOFFFileParser.java981 private short style; field in class:COFFFileParser.COFFFileImpl.COFFHeaderImpl.DebugVC50Impl.DebugVC50SSModuleImpl
995 style = readShort();
1017 public short getDebuggingStyle() { return style; }
/openjdk7/jdk/src/share/classes/sun/print/
H A DPSPrinterJob.java1116 String style = FontConfiguration.getStyleString(styleMask);
1126 /* Now map the alias name, character set name, and style
1130 mFontProps.getProperty(name + "." + charsetName + "." + style,
1151 * and style so give up.
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXToolkit.java874 public FontPeer getFontPeer(String name, int style){ argument
875 return new XFontPeer(name, style);
/openjdk7/jdk/src/share/classes/java/awt/
H A DToolkit.java441 * @param style the style of the font, such as <code>PLAIN</code>,
450 protected abstract FontPeer getFontPeer(String name, int style); argument
965 * if the corresponding 1.1-style SecurityManager.checkXXX method
1009 * if the corresponding 1.1-style SecurityManager.checkXXX method
2431 * The style field of the input method highlight is ignored. The map
2434 * @return style attribute map, or <code>null</code>

Completed in 219 milliseconds

123456789