Searched refs:root (Results 1 - 25 of 380) sorted by relevance

1234567891011>>

/openjdk7/langtools/test/com/sun/javadoc/testBaseClass/
H A DBaseClass.java46 public static boolean start(RootDoc root) throws Exception { argument
47 if (!root.classNamed("baz.Foo").isIncluded()) {
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/graph/
H A DNodeData.java33 private boolean root ; field in class:NodeData
43 this.root = true ;
59 /** Return whether this node is a root.
63 return root ;
68 root = false ;
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultFocusManager.java65 Container root = (aContainer.isFocusCycleRoot())
69 // Support for mixed 1.4/pre-1.4 focus APIs. If a particular root's
71 if (root != null) {
72 FocusTraversalPolicy policy = root.getFocusTraversalPolicy();
74 return policy.getComponentAfter(root, aComponent);
77 comparator.setComponentOrientation(root.getComponentOrientation());
78 return layoutPolicy.getComponentAfter(root, aComponent);
87 Container root = (aContainer.isFocusCycleRoot())
91 // Support for mixed 1.4/pre-1.4 focus APIs. If a particular root's
93 if (root !
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DSourceTree.java38 * @param root The root of the source tree, which may or may not be a
42 public SourceTree(int root, String url) argument
44 m_root = root;
51 /** The root of the source tree, which may or may not be a
/openjdk7/jdk/test/java/util/Locale/
H A Dbug6277243.java34 Locale root = new Locale("", "", "");
35 if (!Locale.ROOT.equals(root)) {
/openjdk7/jdk/test/java/util/logging/
H A DLogManagerInstanceTest.java43 Logger root = getRootLogger(mgr2);
44 if (mgr2.base != root) {
45 throw new RuntimeException(mgr2.base + " is not the root logger");
52 throw new RuntimeException(l.getName() + " is not an invalid root logger");
60 Logger root = getLogger("");
61 if (root == null) {
62 root = new BaseLogger("", null);
63 if (!super.addLogger(root))
64 throw new RuntimeException("Fail to addLogger " + root);
68 this.base = root;
[all...]
/openjdk7/langtools/test/tools/javadoc/6176978/
H A DX.java27 public static boolean start(RootDoc root) { argument
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/server/
H A DRootStackQuery.java39 * Query to show the StackTrace for a given root
52 Root root = snapshot.getRootAt(index);
53 if (root == null) {
57 StackTrace st = root.getStackTrace();
59 error("No stack trace for " + root.getDescription());
62 startHtml("Stack Trace for " + root.getDescription());
H A DAllRootsQuery.java71 Root root = roots[i];
73 if (root.getType() != lastType) {
74 lastType = root.getType();
76 print(root.getTypeName() + " References");
80 printRoot(root);
81 if (root.getReferer() != null) {
83 printThingAnchorTag(root.getReferer().getId());
84 print(root.getReferer().toString());
89 JavaThing t = snapshot.findThing(root.getId());
/openjdk7/langtools/test/tools/javadoc/sourceOnly/p/
H A DSourceOnly.java39 public static boolean start(com.sun.javadoc.RootDoc root) { argument
40 if (root.classes().length != 1)
41 throw new Error("wrong set of classes documented: " + java.util.Arrays.asList(root.classes()));
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DRTFIterator.java41 public RTFIterator(int root, DTMManager manager) { argument
42 super(root, manager);
/openjdk7/jaxp/src/org/w3c/dom/traversal/
H A DDocumentTraversal.java62 * @param root The node which will be iterated together with its
66 * root must not be <code>null</code>.
79 * NOT_SUPPORTED_ERR: Raised if the specified <code>root</code> is
82 public NodeIterator createNodeIterator(Node root, argument
91 * @param root The node which will serve as the <code>root</code> for the
94 * any node type will be accepted as the <code>root</code>. The
97 * <code>root</code> functions as a stopping point for traversal
99 * <code>parentNode</code> and nextNode. The <code>root</code> must
113 * NOT_SUPPORTED_ERR: Raised if the specified <code>root</cod
116 createTreeWalker(Node root, int whatToShow, NodeFilter filter, boolean entityReferenceExpansion) argument
[all...]
/openjdk7/langtools/test/tools/javadoc/annotations/badVals/
H A DMain.java42 public static boolean start(RootDoc root) { argument
44 for (ClassDoc cd : root.classes()) {
/openjdk7/langtools/test/tools/javadoc/enum/enumType/
H A DMain.java45 public static boolean start(RootDoc root) { argument
47 for (ClassDoc cd : root.classes()) {
/openjdk7/langtools/test/tools/javadoc/generics/genericClass/
H A DMain.java45 public static boolean start(RootDoc root) { argument
47 for (ClassDoc cd : root.classes()) {
/openjdk7/langtools/test/tools/javadoc/generics/genericInterface/
H A DMain.java45 public static boolean start(RootDoc root) { argument
47 for (ClassDoc cd : root.classes()) {
/openjdk7/langtools/test/tools/javadoc/generics/tparamTagOnType/
H A DMain.java45 public static boolean start(RootDoc root) { argument
47 for (ClassDoc cd : root.classes()) {
/openjdk7/langtools/test/tools/javadoc/generics/wildcards/
H A DMain.java45 public static boolean start(RootDoc root) { argument
47 for (ClassDoc cd : root.classes()) {
/openjdk7/langtools/test/tools/javadoc/sourceOption/
H A DSourceOption.java44 public static boolean start(RootDoc root) { argument
45 root.classes(); // force parser into action
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileStore.java42 private final String root; field in class:WindowsFileStore
47 private WindowsFileStore(String root) throws WindowsException { argument
48 assert root.charAt(root.length()-1) == '\\';
49 this.root = root;
50 this.volInfo = GetVolumeInformation(root);
51 this.volType = GetDriveType(root);
63 static WindowsFileStore create(String root, boolean ignoreNotReady) argument
67 return new WindowsFileStore(root);
[all...]
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMSubTreeData.java40 * same-document URI as the root of a subdocument. The main reason is
49 private Node root; field in class:DOMSubTreeData
51 public DOMSubTreeData(Node root, boolean excludeComments) { argument
52 this.root = root;
53 this.ni = new DelayedNodeIterator(root, excludeComments);
62 return root;
74 private Node root; field in class:DOMSubTreeData.DelayedNodeIterator
79 DelayedNodeIterator(Node root, boolean excludeComments) { argument
80 this.root
[all...]
/openjdk7/langtools/test/tools/javadoc/annotations/annotatePackage/
H A DMain.java45 public static boolean start(RootDoc root) { argument
47 for (PackageDoc pkg : root.specifiedPackages()) {
57 for (ClassDoc cd : root.classes()) {
/openjdk7/langtools/test/tools/javadoc/annotations/defaults/
H A DMain.java47 public static boolean start(RootDoc root) { argument
50 root.specifiedPackages()[0].annotationTypes()) {
56 root.specifiedPackages()[0].interfaces()) {
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaRootPaneUI.java71 // we have to set it from the root pane so when we are coming from metal we will set it to
74 // so for most other LAFs the root pane changing is enough since it would be opaque, but for us
89 final JRootPane root = (JRootPane)c;
90 root.addContainerListener(this);
91 root.getLayeredPane().addContainerListener(this);
100 final JRootPane root = (JRootPane)c;
101 root.removeContainerListener(this);
102 root.getLayeredPane().removeContainerListener(this);
109 * If the screen menu bar is active we need to listen to the layered pane of the root pane
115 final JRootPane root
202 updateDefaultButton(final JRootPane root) argument
214 JRootPane root; field in class:AquaRootPaneUI.DefaultButtonPainter
216 DefaultButtonPainter(final JRootPane root) argument
[all...]
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DTest9.java51 String root = System.getProperty ("test.src")+ "/docs";
56 HttpHandler h = new FileServerHandler (root);
72 t[0] = test (true, "http", root+"/test1", p1, "smallfile.txt", 23);
73 t[1] = test (true, "http", root+"/test1", p1, "largefile.txt", 2730088);
74 t[2] = test (true, "https", root+"/test1", p2, "smallfile.txt", 23);
75 t[3] = test (true, "https", root+"/test1", p2, "largefile.txt", 2730088);
76 t[4] = test (false, "http", root+"/test1", p1, "smallfile.txt", 23);
77 t[5] = test (false, "http", root+"/test1", p1, "largefile.txt", 2730088);
78 t[6] = test (false, "https", root+"/test1", p2, "smallfile.txt", 23);
79 t[7] = test (false, "https", root
109 test(boolean fixedLen, String protocol, String root, int port, String f, int size) argument
121 String root; field in class:Test9.ClientThread
126 ClientThread(boolean fixedLen, String protocol, String root, int port, String f, int size) argument
[all...]

Completed in 147 milliseconds

1234567891011>>