HomeSort by relevance Sort by last modified time
    Searched refs:Node (Results 201 - 225 of 2295) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/WebCore/dom/
PositionIterator.h 29 #include "Node.h"
57 Node* node() const { return m_anchorNode; } function in class:WebCore::PositionIterator
68 Node* m_anchorNode;
69 Node* m_nodeAfterPositionInAnchor; // If this is non-null, m_nodeAfterPositionInAnchor->parentNode() == m_anchorNode;
StaticNodeList.cpp 41 Node* StaticNodeList::item(unsigned index) const
48 Node* StaticNodeList::itemWithName(const AtomicString& elementId) const
52 Node* node = m_nodes[i].get(); local
54 if (node->hasID() && static_cast<Element*>(node)->getIdAttribute() == elementId)
55 return node;
UserTypingGestureIndicator.cpp 30 #include "Node.h"
41 static RefPtr<Node>& focusedNode()
43 DEFINE_STATIC_LOCAL(RefPtr<Node>, node, ());
44 return node;
47 Node* UserTypingGestureIndicator::focusedElementAtGestureStart()
  /external/webkit/Source/WebCore/editing/
InsertParagraphSeparatorCommand.h 48 void applyStyleAfterInsertion(Node* originalEnclosingBlock);
49 void getAncestorsInsideBlock(const Node* insertionNode, Element* outerBlock, Vector<Element*>& ancestors);
52 bool shouldUseDefaultParagraphElement(Node*) const;
htmlediting.cpp 61 // Atomic means that the node has no children, or has children which are ignored for the
63 bool isAtomicNode(const Node *node)
65 return node && (!node->hasChildNodes() || editingIgnoresContent(node));
70 bool editingIgnoresContent(const Node* node)
72 return !canHaveChildrenForEditing(node) && !node->isTextNode()
137 Node* node = position.deprecatedNode(); local
176 Node* node = p.deprecatedNode(); local
188 Node* node = pos.deprecatedNode(); local
195 Node* node = p.deprecatedNode(); local
207 Node* node = p.deprecatedNode(); local
900 Node* node = pos.containerNode(); local
    [all...]
  /external/webkit/Source/WebCore/xml/
XPathEvaluator.h 40 class Node;
50 PassRefPtr<XPathNSResolver> createNSResolver(Node* nodeResolver);
51 PassRefPtr<XPathResult> evaluate(const String& expression, Node* contextNode,
XPathNamespace.cpp 37 : Node(ownerElement->document(), CreateOther)
74 Node::NodeType XPathNamespace::nodeType() const
76 return Node::XPATH_NAMESPACE_NODE;
  /libcore/dom/src/test/java/org/w3c/domts/
DOMLocatorImpl.java 15 import org.w3c.dom.Node;
27 private final Node relatedNode;
70 /* Related node
73 public Node getRelatedNode() {
UserDataMonitor.java 17 import org.w3c.dom.Node;
54 Node src,
55 Node dst) {
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/api/
IDomParser.java 24 import org.w3c.dom.Node;
46 * Returns the starting position of the given DOM node (which may not be
47 * just an element but can for example also be an {@link Attr} node). The
48 * node will *always* be from the same DOM document that was returned by
52 * @param node the node to look up a starting position for
53 * @return the position of the beginning of the node
55 public Position getStartPosition(Context context, Node node);
58 * Returns the ending position of the given DOM node
    [all...]
  /external/chromium/base/
linked_list_unittest.cc 12 class Node : public LinkNode<Node> {
14 explicit Node(int id) : id_(id) {}
37 void ExpectListContentsForDirection(const LinkedList<Node>& list,
40 for (const LinkNode<Node>* node = (forward ? list.head() : list.tail());
41 node != list.end();
42 node = (forward ? node->next() : node->previous()))
256 MultipleInheritanceNode node; local
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentLinkedDeque.java 80 * A node contains the expected E ("item") and links to predecessor
83 * class Node<E> { volatile Node<E> prev, next; volatile E item; }
85 * A node p is considered "live" if it contains a non-null item
89 * At any time, there is precisely one "first" node with a null
91 * starting at a live node. Similarly there is precisely one
92 * "last" node terminating any chain of next references starting at
93 * a live node. The "first" and "last" nodes may or may not be live.
97 * next reference in the first or last node to a fresh node
    [all...]
  /frameworks/base/core/java/android/animation/
AnimatorSet.java 61 * to a single node representing that Animator, not create a new Node
64 private HashMap<Animator, Node> mNodeMap = new HashMap<Animator, Node>();
71 private ArrayList<Node> mNodes = new ArrayList<Node>();
78 private ArrayList<Node> mSortedNodes = new ArrayList<Node>();
199 for (Node node : mNodes)
458 Node node = mSortedNodes.get(i); local
480 Node node = mSortedNodes.get(i); local
788 Node node = mNodes.get(i); local
802 Node node = root.nodeDependents.get(j); local
825 Node node = mNodes.get(i); local
855 public Node node; field in class:AnimatorSet.Dependency
949 Node node = (Node) super.clone(); local
1042 Node node = mNodeMap.get(anim); local
1062 Node node = mNodeMap.get(anim); local
1082 Node node = mNodeMap.get(anim); local
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
InstrEmitter.cpp 42 unsigned InstrEmitter::CountResults(SDNode *Node) {
43 unsigned N = Node->getNumValues();
44 while (N && Node->getValueType(N - 1) == MVT::Glue)
46 if (N && Node->getValueType(N - 1) == MVT::Other)
55 unsigned InstrEmitter::CountOperands(SDNode *Node) {
56 unsigned N = Node->getNumOperands();
57 while (N && Node->getOperand(N - 1).getValueType() == MVT::Glue)
59 if (N && Node->getOperand(N - 1).getValueType() == MVT::Other)
64 /// EmitCopyFromReg - Generate machine code for an CopyFromReg node or an
67 EmitCopyFromReg(SDNode *Node, unsigned ResNo, bool IsClone, bool IsCloned
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
NodeSet.java 29 import org.w3c.dom.Node;
126 * Create a NodeSet which contains the given Node.
128 * @param node Single node to be added to the new set.
130 public NodeSet(Node node)
135 addNode(node);
139 * @return The root node of the Iterator, as specified when it was created.
142 public Node getRoot()
176 * This attribute determines which node types are presented via th
526 Node node = nodelist.item(i); local
550 Node node; local
580 Node node = nodelist.item(testIndex); local
1205 Node node = m_map[i]; local
1304 Node node = m_map[i]; local
1333 Node node = m_map[i]; local
1361 Node node = m_map[i]; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
ExplodedRenderingHelper.java 28 import org.w3c.dom.Node;
62 * @param root the root node (ie the top layout).
65 public ExplodedRenderingHelper(Node root, IProject iProject) {
84 * @param root the root node (ie the top layout).
87 public ExplodedRenderingHelper(Node root, Set<String> layoutNames) {
115 private void computePadding(Node view, int[] padding) {
123 Map<Node, int[]> childrenPadding = new HashMap<Node, int[]>(count);
125 Node child = children.item(i);
127 if (type == Node.ELEMENT_NODE) { // ignore TEXT/CDATA nodes
232 Node node = entry.getKey(); local
359 map.put(cleanUpIdReference(viewId), node); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/extensions/
ExpressionContext.java 26 import org.w3c.dom.Node;
37 * Get the current context node.
38 * @return The current context node.
40 public Node getContextNode();
43 * Get the current context node list.
56 * Get the value of a node as a number.
57 * @param n Node to be converted to a number. May be null.
60 public double toNumber(Node n);
63 * Get the value of a node as a string.
64 * @param n Node to be converted to a string. May be null
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOMHelper.java 42 import org.w3c.dom.Node;
84 // create a DOM Document node to contain the result.
140 * from the node. Literal elements from template elements should
142 * @param textNode A text node from the source tree.
143 * @return true if the text node should be stripped of extra whitespace.
148 public boolean shouldStripSourceNode(Node textNode)
158 * identifier string for any given DOM Node.
160 * Warning: The base implementation uses the Node object's hashCode(),
166 * that represent a single Node in the data structure (eg via proxying),
174 * (DOM Level 3 is investigating providing a unique node "key", bu
    [all...]
  /external/skia/include/views/
SkViewInflate.h 36 SkView* inflate(const SkDOM& dom, const SkDOM::Node* node, SkView* root = NULL);
53 virtual SkView* createView(const SkDOM& dom, const SkDOM::Node* node);
54 /** Base implementation calls view->inflate(dom, node). Subclasses may override this
58 virtual void inflateView(SkView* view, const SkDOM& dom, const SkDOM::Node* node);
75 void rInflate(const SkDOM& dom, const SkDOM::Node* node, SkView* parent);
  /external/webkit/Source/WebCore/bindings/js/
JSLazyEventListener.h 28 class Node;
32 static PassRefPtr<JSLazyEventListener> create(const String& functionName, const String& eventParameterName, const String& code, Node* node, const String& sourceURL, int lineNumber, JSC::JSObject* wrapper, DOMWrapperWorld* isolatedWorld)
34 return adoptRef(new JSLazyEventListener(functionName, eventParameterName, code, node, sourceURL, lineNumber, wrapper, isolatedWorld));
39 JSLazyEventListener(const String& functionName, const String& eventParameterName, const String& code, Node*, const String& sourceURL, int lineNumber, JSC::JSObject* wrapper, DOMWrapperWorld* isolatedWorld);
49 Node* m_originalNode;
  /external/webkit/Source/WebCore/html/
HTMLCollection.idl 31 [Custom] Node item(in unsigned long index);
32 [Custom] Node namedItem(in DOMString name);
PluginDocument.h 32 class Node;
41 void setPluginNode(Node* pluginNode) { m_pluginNode = pluginNode; }
44 Node* pluginNode();
62 RefPtr<Node> m_pluginNode;
  /external/webkit/Source/WebCore/page/
FocusController.h 40 class Node;
55 bool setFocusedNode(Node*, PassRefPtr<Frame>);
67 bool advanceFocusDirectionallyInContainer(Node* container, const IntRect& startingRect, FocusDirection, KeyboardEvent*);
68 void findFocusCandidateInContainer(Node* container, const IntRect& startingRect, FocusDirection, KeyboardEvent*, FocusCandidate& closest);
  /external/webkit/Source/WebCore/rendering/
RenderReplica.h 38 RenderReplica(Node*);
RenderRubyText.h 40 RenderRubyText(Node*);

Completed in 3568 milliseconds

1 2 3 4 5 6 7 891011>>