Searched defs:title (Results 1 - 25 of 137) sorted by relevance

123456

/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLDOMImplementation.java57 * @param title The title of the document to be set as the content of the
61 public HTMLDocument createHTMLDocument(String title); argument
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/
H A DXmlReporter.java45 String title; field in class:XmlReporter
50 public XmlReporter(OutputStream out, String title) { argument
52 this.title = title;
64 p.println("<NAME>" + title + "</NAME>");
H A DHtmlReporter.java47 String title; field in class:HtmlReporter
52 public HtmlReporter(OutputStream out, String title) { argument
54 this.title = title;
68 p.println("<title>" + title + "</title>");
71 p.println("<h3>" + title + "</h3>");
/openjdk7/jdk/src/share/classes/sun/awt/
H A DInputMethodSupport.java46 Window createInputMethodWindow(String title, InputContext context); argument
/openjdk7/jdk/src/share/classes/sun/awt/im/
H A DInputMethodJFrame.java46 public InputMethodJFrame(String title, InputContext context) { argument
47 super(title);
H A DSimpleInputMethodWindow.java45 public SimpleInputMethodWindow(String title, InputContext context) { argument
46 super(title);
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DDialogPeer.java43 * Sets the title on the dialog window.
45 * @param title the title to set
49 void setTitle(String title); argument
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcTraceTime.cpp47 GCTraceTime::GCTraceTime(const char* title, bool doit, bool print_cr, GCTimer* timer) : argument
48 _title(title), _doit(doit), _print_cr(print_cr), _timer(timer) {
57 _timer->register_gc_phase_start(title, _start_counter);
63 gclog_or_tty->print("[%s", title);
/openjdk7/hotspot/src/share/vm/utilities/
H A Dhistogram.hpp99 const char* title() { return _title; } function in class:Histogram
105 Histogram(const char* title,int estimatedSize);
/openjdk7/jaxp/src/org/w3c/dom/css/
H A DDOMImplementationCSS.java57 * @param title The advisory title. See also the section.
65 public CSSStyleSheet createCSSStyleSheet(String title, argument
/openjdk7/jdk/test/java/awt/Focus/FocusTraversalPolicy/
H A DInitialFTP_AWT.java37 public AWTFrame(String title) { argument
38 super(title);
H A DInitialFTP_Swing.java37 public SwingFrame(String title) { argument
38 super(title);
/openjdk7/langtools/test/com/sun/javadoc/testHtmlDefinitionListTag/pkg1/
H A DC1.java53 private String title; field in class:C1
76 * @param title the title
82 public C1(String title, boolean test) { argument
86 public C1(String title) { argument
H A DC2.java43 * This field indicates title.
45 String title; field in class:C2
59 public C2(String title) { argument
/openjdk7/langtools/test/com/sun/javadoc/testSerializedFormDeprecationInfo/pkg1/
H A DC1.java53 private String title; field in class:C1
76 * @param title the title
82 public C1(String title, boolean test) { argument
86 public C1(String title) { argument
H A DC2.java43 * This field indicates title.
45 String title; field in class:C2
59 public C2(String title) { argument
/openjdk7/langtools/test/com/sun/javadoc/testSinceTag/pkg1/
H A DC1.java72 * @param title the title
78 public C1(String title, boolean test) { argument
81 public C1(String title) { argument
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DThreadDialog.java37 String title; field in class:ThreadDialog
42 String title,
46 this.title = title;
52 JDialog dialog = pane.createDialog(parentComponent, title);
40 ThreadDialog(Component parentComponent, Object message, String title, int messageType) argument
/openjdk7/jdk/src/share/demo/applets/GraphicsTest/
H A DAppletFrame.java56 String title,
78 AppletFrame f = new AppletFrame(title);
95 // constructor needed to pass window title to class Frame
55 startApplet(String className, String title, String args[]) argument
/openjdk7/jdk/test/javax/management/notification/
H A DBroadcasterSupportDeadlockTest.java135 private static void showStackTrace(String title, argument
137 System.out.println("---" + title + "---");
/openjdk7/hotspot/agent/src/share/classes/com/sun/java/swing/ui/
H A DOkCancelDialog.java42 public OkCancelDialog(String title, JPanel panel) argument
44 this(title, panel, true);
47 public OkCancelDialog(String title, JPanel panel, boolean modal) argument
49 setTitle(title);
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/server/
H A DReachableQuery.java77 private void printFields(String[] fields, String title) { argument
82 print(title);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/tools/
H A DPrintTable.java63 public static void printArray(String title, StringArray a) { argument
64 System.out.println(title);
71 public static void printArray(String title, PrefixArray a) { argument
72 System.out.println(title);
79 public static void printArray(String title, CharArrayArray a) { argument
80 System.out.println(title);
87 public static void printArray(String title, ContiguousCharArrayArray a) { argument
88 System.out.println(title);
95 public static void printArray(String title, QualifiedNameArray a) { argument
96 System.out.println(title);
[all...]
/openjdk7/jdk/test/sun/security/rsa/
H A DInvalidBitString.java122 String title, boolean expected) throws Exception {
123 System.out.print("Checking " + title + ": expected: " +
121 test(Certificate target, Certificate signer, String title, boolean expected) argument
/openjdk7/jdk/test/sun/security/ssl/sanity/ciphersuites/
H A DCipherSuitesInOrder.java215 private static void checkSuites(String[] suites, String title) { argument
216 showSuites(suites, title);
230 private static void showSuites(String[] suites, String title) { argument
231 System.out.println(title + "[" + suites.length + "]:");

Completed in 151 milliseconds

123456