Searched refs:node (Results 401 - 425 of 510) sorted by relevance

<<11121314151617181920>>

/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DMarshaller.java480 * @param node
481 * DOM nodes will be added as children of this node.
498 public void marshal( Object jaxbElement, org.w3c.dom.Node node )
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentSkipListMap.java133 * (predecessor, node, successor) in order to detect when and how
139 * marking a pointer, they splice in another node that can be
147 * because any search need only read ahead one more node than
152 * algorithm of changing the next-pointer of a deleted node so
154 * changing the pointer to point to a different node, not by
164 * similar to typical lazy-deletion schemes. If a node's value is
177 * Here's the sequence of events for a deletion of node n with
186 * the node consider this mapping to exist. However, other
190 * 2. CAS n's next pointer to point to a new marker node.
207 * thread noticed during a traversal a node wit
541 final Node<K,V> node; field in class:ConcurrentSkipListMap.Index
548 Index(Node<K,V> node, Index<K,V> down, Index<K,V> right) argument
616 HeadIndex(Node<K,V> node, Index<K,V> down, Index<K,V> right, int level) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltStrings.java114 * The str:concat function takes a node set and returns the concatenation of the
115 * string values of the nodes in that node set. If the node set is empty, it returns
118 * @param nl A node set
119 * @return The concatenation of the string values of the nodes in that node set
126 Node node = nl.item(i);
127 String value = toString(node);
182 * The str:split function splits up a string and returns a node set of token
189 * str:split('a, simple, list', ', ') gives the node set consisting of:
200 * @return A node se
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/output/
H A DTransletOutputHandlerFactory.java117 public void setNode(Node node) { argument
118 _node = node;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/msg/
H A DSAXMessages_fr.properties58 dom-node-read-not-supported = Impossible de lire la propri\u00E9t\u00E9 de noeud DOM. Aucune arborescence DOM n'existe.
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DAxesWalker.java191 * The root node of the TreeWalker, as specified in setRoot(int root).
192 * Note that this may actually be below the current node.
194 * @return The context node of the step.
213 * Set the root node of the TreeWalker.
216 * @param root The context node of this step.
239 * The node at which the TreeWalker is currently positioned.
241 * the current node to no longer be accepted by the TreeWalker's
242 * associated filter. currentNode may also be explicitly set to any node,
243 * whether or not it is within the subtree specified by the root node or
249 * @return The node a
484 getDTM(int node) argument
[all...]
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMXMLObject.java211 Node node =
213 if (!DOMUtils.nodesEqual(node, onode)) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DMessageImpl.java933 Node node = getValueNodeStrict(element);
935 if (node != null) {
936 swaRef = node.getValue();
950 Node node = (Node)element.getFirstChild();
951 if (node != null) {
952 if (node.getNextSibling() == null
953 && node.getNodeType() == org.w3c.dom.Node.TEXT_NODE) {
954 return node;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/impl/
H A DElementImpl.java700 Node node = (Node) eachNode.next();
701 if (node instanceof SOAPElement) {
702 next = node;
856 Node node = getFirstChild();
857 if (node != null) {
858 if (node.getNextSibling() == null
859 && node.getNodeType() == org.w3c.dom.Node.TEXT_NODE) {
860 return node;
876 // TODO: Hack to fix text node split into multiple lines.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/stream/
H A DStreamHeader.java195 // processor that produces a DOM node from the buffer.
207 Node node = header.getOwnerDocument().importNode(d, true);
208 header.appendChild(node);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeMaker.java119 * Create given tree node at current position.
126 for (JCTree node : defs)
127 Assert.check(node instanceof JCClassDecl
128 || node instanceof JCImport
129 || node instanceof JCSkip
130 || node instanceof JCErroneous
131 || (node instanceof JCExpressionStatement
132 && ((JCExpressionStatement)node).expr instanceof JCErroneous),
133 node.getClass().getSimpleName());
526 /** Create a selection node fro
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/im/
H A DInputMethodManager.java662 // create locale node relative path
676 // search at parent's node
688 return userRoot.node(nodePath).get(descriptorKey, null);
729 // obtain node
758 Preferences node = userRoot.node(path);
762 node.put(descriptorKey, descriptorName);
764 node.remove(descriptorKey);
H A DInputContext.java1051 Preferences node = root.node(inputMethodSelectionKeyPath);
1052 int keyCode = node.getInt(inputMethodSelectionKeyCodeName, KeyEvent.VK_UNDEFINED);
1054 int modifiers = node.getInt(inputMethodSelectionKeyModifiersName, 0);
/openjdk7/jdk/src/share/classes/java/util/prefs/
H A DAbstractPreferences.java101 * information at a preferences node. The implementor should beware of the
102 * fact that another VM may have concurrently deleted this node from the
104 * node if it has been deleted.
135 * Our parent node.
140 * Our root node.
142 private final AbstractPreferences root; // Relative to this node
145 * This field should be <tt>true</tt> if this node did not exist in the
149 * indicates whether a node change event should be fired when
155 * All known unremoved children of this node. (This "cache" is consulted
161 * This field is used to keep track of whether or not this node ha
802 public Preferences node(String path) { method in class:AbstractPreferences
821 private Preferences node(StringTokenizer path) { method in class:AbstractPreferences
[all...]
/openjdk7/jdk/src/share/back/
H A DstepControl.c262 HandlerNode *node,
365 HandlerNode *node,
432 HandlerNode *node,
789 HandlerNode *node)
821 step->stepHandlerNode = node;
261 handleFramePopEvent(JNIEnv *env, EventInfo *evinfo, HandlerNode *node, struct bag *eventBag) argument
364 handleExceptionCatchEvent(JNIEnv *env, EventInfo *evinfo, HandlerNode *node, struct bag *eventBag) argument
431 handleMethodEnterEvent(JNIEnv *env, EventInfo *evinfo, HandlerNode *node, struct bag *eventBag) argument
788 stepControl_beginStep(JNIEnv *env, jthread thread, jint size, jint depth, HandlerNode *node) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DMarshallerImpl.java183 final Node node = ((DOMResult) result).getNode();
185 if (node == null) {
190 return new SAXOutput(new SAX2DOMEx(node));
229 Node node = ((DOMResult) result).getNode();
230 return new DomPostInitAction(node,serializer);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/
H A DEndpointReferenceUtil.java251 Node node = metadata.item(j);
252 if (node.getNodeType() != Node.ELEMENT_NODE)
255 Element elm = (Element) node;
370 private static Map<QName, String> getAttributes(Node node) { argument
373 NamedNodeMap nm = node.getAttributes();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/pipe/
H A DAbstractSchemaValidationTube.java322 // Get xsd:schema node from WSDL's DOM
395 private void buildNamespaceSupport(NamespaceSupport nss, Node node) { argument
396 if(node==null || node.getNodeType()!=Node.ELEMENT_NODE)
399 buildNamespaceSupport( nss, node.getParentNode() );
402 NamedNodeMap atts = node.getAttributes();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DJavacTrees.java166 for (JCTree node : classNode.getMembers())
167 if (TreeInfo.symbolFor(node) == element)
168 return node;
184 public TreePath getPath(CompilationUnitTree unit, Tree node) { argument
185 return TreePath.getPath(unit, node);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/
H A DFilterTopComponent.java283 com.sun.hotspot.igv.filterwindow.FilterNode node = new com.sun.hotspot.igv.filterwindow.FilterNode(filter);
284 node.getSelectionChangedEvent().addListener(this);
285 nodeHash.put(object, node);
286 return new Node[]{node};
306 FilterNode node = (FilterNode) source;
307 Filter f = node.getFilter();
309 if (node.isSelected()) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DCommandProcessor.java228 void printNode(SimpleTreeNode node) { argument
229 int count = node.getChildCount();
232 SimpleTreeNode field = node.getChild(i);
787 SimpleTreeNode node = null;
791 node = new OopTreeNodeAdapter(oop, null);
793 out.println("instance of " + node.getValue() + " @ " + a +
799 if (node == null) {
803 node = new CTypeTreeNodeAdapter(a, type, null);
806 if (node != null) {
807 printNode(node);
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/serialization/
H A DParser.java61 public static final String NODE_ELEMENT = "node";
231 // <node>
260 // <node>
272 InputNode node = new InputNode(id);
273 getParentObject().addNode(node);
274 return node;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/
H A DXmlPolicyModelUnmarshaller.java202 // finish assertion node processing: create and set assertion data...
260 private String unmarshalNodeContent(final NamespaceVersion nsVersion, final ModelNode node, final QName nodeElementName, final XMLEventReader reader) throws PolicyException { argument
271 valueBuffer = processCharacters(node.getType(), xmlParserEvent.asCharacters(), valueBuffer);
275 break loop; // data exctraction for currently processed policy node is done
279 ModelNode childNode = addNewChildNode(nsVersion, node, childElement);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/
H A DDTM.java37 * be unique within a process, and carries both node identification and
48 * <p>Text content of a node is represented by an index and length,
72 * internal node id and a pointer to the actual DTM object; this might
84 * Null node handles are represented by this value.
95 * The node is a <code>Root</code>.
100 * The node is an <code>Element</code>.
105 * The node is an <code>Attr</code>.
110 * The node is a <code>Text</code> node.
115 * The node i
942 getSourceLocatorFor(int node) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DXPathContext.java146 * in which case it is assumed that node construction will take
167 * Get an instance of a DTM that "owns" a node handle.
179 * Given a W3C DOM node, try and return a DTM handle.
182 * @param node Non-null reference to a DOM node.
186 public int getDTMHandleFromNode(org.w3c.dom.Node node) argument
188 return m_dtmManager.getDTMHandleFromNode(node);
274 * @param whatToShow This flag specifies which node types may appear in
293 * Create a new <code>DTMIterator</code> that holds exactly one node.
295 * @param node Th
299 createDTMIterator(int node) argument
[all...]

Completed in 104 milliseconds

<<11121314151617181920>>