Searched refs:root (Results 176 - 200 of 380) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DAbstractWriter.java112 * root of the document.
164 * @param root an Element
166 protected AbstractWriter(Writer w, Element root) { argument
167 this(w, root, 0, root.getEndOffset());
176 * @param root an Element
181 protected AbstractWriter(Writer w, Element root, int pos, int len) { argument
182 this.doc = root.getDocument();
183 it = new ElementIterator(root);
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DConstructor.java99 // is currently only two levels deep (i.e., one root Constructor
101 private Constructor<T> root; field in class:Constructor
130 * "root" field points to this Constructor.
146 res.root = this;
564 if (root != null) tmp = root.getConstructorAccessor();
568 // Otherwise fabricate one and propagate it up to the root
577 // looking up the chain to the root
583 // (recursively) its root
587 if (root !
[all...]
H A DField.java79 // currently only two levels deep (i.e., one root Field and
81 private Field root; field in class:Field
131 * "root" field points to this Field.
142 res.root = this;
1049 if (root != null) tmp = root.getFieldAccessor(overrideFinalCheck);
1056 // Otherwise fabricate one and propagate it up to the root
1065 // the chain to the root
1071 // (recursively) its root
1078 if (root !
[all...]
/openjdk7/jdk/test/demo/zipfs/
H A DPathOps.java86 PathOps root(String expected) { method in class:PathOps
87 out.println("check root");
232 .root("/")
236 // root component only
238 .root("/")
242 // no root component
244 .root(null)
250 .root(null)
403 .root("/")
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
H A DDirectoryScanner.java74 * scans a file system starting at a given root directory,
134 // The root directory at which this DirectoryScanner will start
175 * root directory} provided in the {@code config} is not acceptable
194 // Checks that the provided root directory is valid.
262 // Create a new ScanTask object for our root directory file.
456 // be one single file in the list: the root directory for this
573 // Validates the given root directory, returns a File object for
575 // Throws IllegalArgumentException if the given root is not
578 private static File validateRoot(String root) { argument
579 if (root
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthRootPaneUI.java66 protected void uninstallDefaults(JRootPane root) { argument
67 SynthContext context = getContext(root, ENABLED);
164 * Invoked when a property changes on the root pane. If the event
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DWSDLPortImpl.java110 void freeze(WSDLModelImpl root) { argument
111 boundPortType = root.getBinding(bindingName);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/
H A DConfiguration.java133 public RootDoc root; field in class:Configuration
344 Set<PackageDoc> set = new HashSet<PackageDoc>(Arrays.asList(root.specifiedPackages()));
345 ClassDoc[] classes = root.specifiedClasses();
421 extern.url(url, url, root, false);
425 extern.url(url, pkglisturl, root, true);
436 classDocCatalog = new ClassDocCatalog(root.specifiedClasses(), this);
447 setOptions(root.options());
448 setSpecificDocletOptions(root.options());
/openjdk7/jdk/test/javax/swing/JRootPane/4670486/
H A Dbug4670486.java69 JRootPane root = frame.getRootPane();
70 root.setDefaultButton(button);
/openjdk7/langtools/test/tools/javadoc/6227454/
H A DTest.java129 public static boolean start(RootDoc root) { argument
130 String text = root.commentText();
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DFixedHeightLayoutCache.java53 private FHTreeStateNode root; field in class:FixedHeightLayoutCache
97 * Determines whether or not the root node from
100 * @param rootVisible true if the root node of the tree is to be displayed
106 if(root != null) {
109 root.adjustRowBy(1);
113 root.adjustRowBy(-1);
209 if(root.getPathForRow(row, getRowCount(), info)) {
222 if(path == null || root == null)
373 // Null for root indicates it changed.
374 else if (changedParent == root
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/
H A DOutlineTopComponent.java74 private FolderNode root; field in class:OutlineTopComponent
92 root = new FolderNode("", organizer, new ArrayList<String>(), document.getGroups());
93 manager.setRootContext(root);
162 root.init("", organizer, new ArrayList<String>(), document.getGroups());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DMimeMultipartParser.java64 private Attachment root; field in class:MimeMultipartParser
66 // Attachments without root part
80 // Strip <...> from root part's Content-ID
89 * Parses the stream and returns the root part. If start parameter is
90 * present in Content-Type, it is used to determine the root part, otherwise
91 * root part is the first part.
93 * @return StreamAttachment for root part
94 * null if root part cannot be found
98 if (root == null) {
99 root
[all...]
/openjdk7/jdk/test/javax/imageio/plugins/png/
H A DItxtUtf8Test.java156 Element root, itxt, entry;
157 root = doc.getDocumentElement();
158 root.appendChild(itxt = doc.createElement("iTXt"));
173 meta.mergeTree(format, root);
H A DPngOutputTypeTest.java139 Node root = md.getAsTree(format);
141 Node ihdr = getNode(root, "IHDR");
185 private Node getNode(Node root, String name) { argument
186 Node n = root;
/openjdk7/jdk/test/sun/reflect/CallerSensitive/
H A DCallerSensitiveFinder.java218 static List<Path> addJarFiles(final Path root) throws IOException { argument
220 final Path ext = root.resolve("ext");
221 Files.walkFileTree(root, new SimpleFileVisitor<Path>() {
225 if (dir.equals(root) || dir.equals(ext)) {
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/
H A DPNGMetadata.java470 IIOMetadataNode root = new IIOMetadataNode(nativeMetadataFormatName);
489 root.appendChild(IHDR_node);
508 root.appendChild(PLTE_node);
529 root.appendChild(bKGD_node);
546 root.appendChild(cHRM_node);
554 root.appendChild(gAMA_node);
570 root.appendChild(hIST_node);
586 root.appendChild(iCCP_node);
608 root.appendChild(iTXt_parent);
621 root
1227 mergeTree(String formatName, Node root) argument
1245 mergeNativeTree(Node root) argument
1737 mergeStandardTree(Node root) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/prefs/
H A DAbstractPreferences.java140 * Our root node.
142 private final AbstractPreferences root; // Relative to this node field in class:AbstractPreferences
191 * is the root.
193 * or <tt>""</tt> if this is the root.
204 root = this;
212 root = parent.root;
213 absolutePath = (parent==root ? "/" + name
764 * root is returned. If the first character in <tt>path</tt> is
787 * this method recursively traverses the path starting from the root
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/ServerCompiler/src/com/sun/hotspot/igv/servercompiler/
H A DServerCompilerScheduler.java76 Node root = findRoot();
77 if (root == null) {
82 stack.add(root);
98 if (parent == root) {
103 if (proj != parent && proj.succs.size() == 1 && proj.succs.contains(root)) {
135 if (n != root && n.isBlockProjection) {
163 if (pushed == 0 && p == root) {
164 // TODO: special handling when root backedges are not built yet
221 Node root = findRoot();
223 // Mark all nodes reachable in backward traversal from root
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DTemplate.java257 * it will create an empty Stylesheet object with the root element of the
261 * o) create a pattern matching on the root node
262 * o) add the LRE root node (the only child of the Stylesheet) as our
278 final SyntaxTreeNode root = (SyntaxTreeNode)contents.elementAt(0);
280 if (root instanceof LiteralElement) {
281 addElement(root);
282 root.setParent(this);
285 root.parseContents(parser);
/openjdk7/jdk/src/share/classes/java/lang/
H A DSecurityManager.java615 * reference to the root thread group, used for the checkAccess
622 ThreadGroup root = Thread.currentThread().getThreadGroup();
623 while (root.getParent() != null) {
624 root = root.getParent();
626 return root;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMDefaultBaseTraversers.java342 * @param axisRoot The root identity of the axis.
367 // If the parent occured before the subtree root, then
372 // Otherwise, it could be a descendant below the subtree root
373 // children, or it could be after the subtree root. So we have
374 // to climb up until the parent is less than the subtree root, in
376 // root, in which case we continue to look.
425 * of origin for the traversal -- its "root node" or starting point.
520 * node that occurs after the axis root.
522 * @param axisRoot The root identity of the axis.
534 * @param axisRoot The root identit
[all...]
H A DDTMManagerDefault.java552 // Since the real root of our tree may be a DocumentFragment, we need to
553 // use getParent to find the root, instead of getOwnerDocument. Otherwise
555 Node root = node;
556 Node p = (root.getNodeType() == Node.ATTRIBUTE_NODE) ? ((org.w3c.dom.Attr)root).getOwnerElement() : root.getParentNode();
559 root = p;
562 DOM2DTM dtm = (DOM2DTM) getDTM(new javax.xml.transform.dom.DOMSource(root),
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/internalizer/
H A DInternalizer.java408 // <jaxb:globalBindings> always go to the root of document.
409 Element root = forest.getOneDocument().getDocumentElement();
410 if (root.getNamespaceURI().equals(WSDL_NS)) {
411 NodeList elements = root.getElementsByTagNameNS(XMLConstants.W3C_XML_SCHEMA_NS_URI, "schema");
419 moveUnder(item, root);
537 Element root = target.getOwnerDocument().getDocumentElement();
538 Attr att = root.getAttributeNodeNS(Const.JAXB_NSURI,EXTENSION_PREFIXES);
540 String jaxbPrefix = allocatePrefix(root,Const.JAXB_NSURI);
544 root.setAttributeNodeNS(att);
547 String prefix = allocatePrefix(root,nsUr
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DProgressMonitor.java83 private ProgressMonitor root; field in class:ProgressMonitor
147 root = (group.root != null) ? group.root : group;
148 T0 = root.T0;
149 dialog = root.dialog;

Completed in 140 milliseconds

1234567891011>>