HomeSort by relevance Sort by last modified time
    Searched defs:node (Results 151 - 175 of 515) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/quake/quake/src/QW/client/
pmovetst.c 96 dclipnode_t *node; local
102 Sys_Error ("PM_HullPointContents: bad node number");
104 node = hull->clipnodes + num;
105 plane = hull->planes + node->planenum;
112 num = node->children[1];
114 num = node->children[0];
129 dclipnode_t *node; local
141 Sys_Error ("PM_HullPointContents: bad node number");
143 node = hull->clipnodes + num;
144 plane = hull->planes + node->planenum;
178 dclipnode_t *node; local
    [all...]
  /external/webkit/JavaScriptCore/profiler/
ProfileNode.cpp 120 ProfileNode* ProfileNode::findChild(ProfileNode* node) const
122 if (!node)
126 if (*node == m_children[i].get())
133 void ProfileNode::removeChild(ProfileNode* node)
135 if (!node)
139 if (*node == m_children[i].get()) {
150 RefPtr<ProfileNode> node = prpNode; local
153 node->addChild(m_children[i].release());
156 m_children.append(node.release());
209 void ProfileNode::setTreeVisible(ProfileNode* node, bool visible
    [all...]
  /external/webkit/JavaScriptCore/runtime/
ScopeChain.h 73 // logically "copy" the node. Later, the client can "deref" the head
128 ScopeChainIterator(const ScopeChainNode* node)
129 : m_node(node)
179 explicit ScopeChain(ScopeChainNode* node)
180 : m_node(node->copy())
195 ScopeChainNode* node() const { return m_node; } function in class:JSC::ScopeChain
  /external/webkit/WebCore/bindings/js/
JSHTMLDocumentCustom.cpp 71 Node* node = collection->firstItem(); local
74 if (node->hasTagName(iframeTag) && (frame = static_cast<HTMLIFrameElement*>(node)->contentFrame()))
77 return toJS(exec, node);
  /external/webkit/WebCore/bindings/v8/custom/
V8InjectedScriptHostCustom.cpp 40 #include "Node.h"
127 Node* node = host->nodeForId(args[0]->ToInt32()->Value()); local
128 if (!node)
135 return toV8(node);
145 Node* node = V8Node::toNative(v8::Handle<v8::Object>::Cast(args[0])); local
148 if (node)
149 return v8::Number::New(host->pushNodePathToFrontend(node, withChildren, selectInUI));
  /external/webkit/WebCore/dom/
Position.h 31 #include "Node.h" // for position creation functions
41 class Node;
71 // For creating legacy editing positions: (Anchor type will be determined from editingIgnoresContent(node))
72 Position(PassRefPtr<Node> anchorNode, int offset);
75 Position(PassRefPtr<Node> anchorNode, AnchorType);
77 Position(PassRefPtr<Node> anchorNode, int offset, AnchorType);
85 Node* containerNode() const; // NULL for a before/after position anchored to a node with no parent
103 Node* computeNodeBeforePosition() const;
104 Node* computeNodeAfterPosition() const
111 Node* node() const { return m_anchorNode.get(); } function in class:WebCore::Position
    [all...]
  /external/webkit/WebCore/inspector/front-end/
TextViewer.js 441 var node = lineRow.lastChild.traverseNextTextNode(lineRow.lastChild); variable
442 while (node && node !== container) {
443 column += node.textContent.length;
444 node = node.traverseNextTextNode(lineRow.lastChild);
  /external/webkit/WebCore/page/
FocusController.cpp 61 // If we have a focused node we should dispatch blur on it before we blur the window.
62 // If we have a focused node we should dispatch focus on it after we focus the window.
125 static Node* deepFocusableNode(FocusDirection direction, Node* node, KeyboardEvent* event)
127 // The node we found might be a HTMLFrameOwnerElement, so descend down the frame tree until we find either:
128 // 1) a focusable node, or
130 while (node && node->isFrameOwnerElement()) {
131 HTMLFrameOwnerElement* owner = static_cast<HTMLFrameOwnerElement*>(node);
169 Node* node = (direction == FocusDirectionForward) local
    [all...]
  /external/webkit/WebCore/platform/
ContextMenu.cpp 46 #include "Node.h"
62 if (Node* node = m_hitTestResult.innerNonSharedNode())
63 if (Frame* frame = node->document()->frame())
306 Node* node = m_hitTestResult.innerNonSharedNode(); local
307 if (!node)
310 if (!result.isContentEditable() && (node->isElementNode() && static_cast<Element*>(node)->isFormControlElement()))
313 Frame* frame = node->document()->frame()
538 Node* node = m_hitTestResult.innerNonSharedNode(); local
    [all...]
  /external/webkit/WebCore/platform/graphics/
FontFastPath.cpp 62 GlyphPageTreeNode* node = pageNumber ? m_fontList->m_pages.get(pageNumber) : m_fontList->m_pageZero; local
63 if (!node) {
64 node = GlyphPageTreeNode::getRootChild(fontDataAt(0), pageNumber);
66 m_fontList->m_pages.set(pageNumber, node);
68 m_fontList->m_pageZero = node;
75 page = node->page();
80 if (node->isSystemFallback())
85 node = node->getChild(fontDataAt(node->level()), pageNumber)
    [all...]
GlyphPageTreeNode.cpp 55 GlyphPageTreeNode* node = pageNumber ? roots->get(pageNumber) : pageZeroRoot; local
56 if (!node) {
57 node = new GlyphPageTreeNode;
59 node->m_pageNumber = pageNumber;
62 roots->set(pageNumber, node);
64 pageZeroRoot = node;
66 return node;
238 // The page we're overriding may not be owned by our parent node.
239 // This happens when our parent node provides no useful overrides
334 GlyphPageTreeNode* node = m_children.get(fontData)
364 GlyphPageTreeNode* node = child->second; local
    [all...]
  /external/webkit/WebCore/rendering/
HitTestResult.cpp 84 Node* node = innerNode(); local
85 if (node)
86 node = node->shadowAncestorNode();
87 setInnerNode(node);
88 node = innerNonSharedNode();
89 if (node)
90 node = node->shadowAncestorNode()
    [all...]
  /external/webkit/WebCore/svg/
SVGStyledElement.cpp 248 Node* node = parentNode(); local
249 while (node) {
250 if (!node->isSVGElement())
253 SVGElement* element = static_cast<SVGElement*>(node);
257 node = node->parentNode();
267 void SVGStyledElement::childrenChanged(bool changedByParser, Node* beforeChange, Node* afterChange, int childCountDelta)
  /frameworks/base/include/media/
IOMX.h 58 node_id *node) = 0;
60 virtual status_t freeNode(node_id node) = 0;
63 node_id node, OMX_COMMANDTYPE cmd, OMX_S32 param) = 0;
66 node_id node, OMX_INDEXTYPE index,
70 node_id node, OMX_INDEXTYPE index,
74 node_id node, OMX_INDEXTYPE index,
78 node_id node, OMX_INDEXTYPE index,
82 node_id node, OMX_U32 port_index, const sp<IMemory> &params,
90 node_id node, OMX_U32 port_index, size_t size,
94 node_id node, OMX_U32 port_index, const sp<IMemory> &params
149 IOMX::node_id node; member in struct:android::omx_message
    [all...]
  /frameworks/base/tools/localize/
ValuesFile.cpp 60 XMLNode* node = XMLNode::NewElement(pos, ns, name, attrs, XMLNode::EXACT); local
62 m_id, m_index, node, m_version, m_versionString,
64 *next = new NodeHandler(node, XMLNode::EXACT);
118 XMLNode* node = XMLNode::NewElement(pos, ns, name, attrs, XMLNode::EXACT); local
120 id, -1, node, m_version, m_versionString,
122 *next = new NodeHandler(node, XMLNode::EXACT);
  /hardware/qcom/media/mm-video/vidc/vdec/inc/
Map.h 37 struct node struct in class:Map
41 node* prev;
42 node* next;
43 node(T t, T2 t2,node* p, node* n) : function in struct:Map::node
46 node* head;
47 node* tail;
48 node* tmp;
68 node* temp(head)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
InnerNodeImpl.java 22 import org.w3c.dom.Node;
35 * <p>This class represents a Node that has a parent Node as well as
49 public Node appendChild(Node newChild) throws DOMException {
56 for (NodeImpl node : children) {
57 list.add(node);
63 public Node getFirstChild() {
67 public Node getLastChild() {
71 public Node getNextSibling()
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/
DTMAxisIteratorBase.java 32 /** The position of the last node within the iteration, as defined by XPath.
33 * Note that this is _not_ the node's handle within the DTM. Also, don't
38 /** The position of the current node within the iteration, as defined by XPath.
39 * Note that this is _not_ the node's handle within the DTM!
43 /** The position of the marked node within the iteration;
54 /** True if the start node should be considered part of the iteration.
69 * @return The root node of the iteration.
77 * @return A DTMAxisIterator which has been reset to the start node,
95 * Set the flag to include the start node in the iteration.
111 /** Returns the position of the last node within the iteration, a
271 int node; local
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/left_child_next_sibling_heap_/
left_child_next_sibling_heap_.hpp 51 #include <ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp>
125 typedef typename node_allocator::value_type node; typedef in class:__gnu_pbds::detail::left_child_next_sibling_heap_
136 typedef cond_dealtor< node, Allocator> cond_dealtor_t;
175 node,
183 node,
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/thin_heap_/
thin_heap_.hpp 88 typedef typename base_type::node node; typedef in class:__gnu_pbds::detail::thin_heap_
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/menu/
MenuEditor.java 33 import org.w3c.dom.Node;
46 /** Root node of the UI element hierarchy */
57 * Returns the root node of the UI element hierarchy, which here is
58 * the "menu" node.
107 * Processes the new XML Model, which XML root node is given.
121 Node node = (Node) xpath.evaluate("/" + root_desc.getXmlName(), //$NON-NLS-1$ local
123 XPathConstants.NODE);
124 if (node == null && root_desc.isMandatory())
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/resources/
ResourcesEditor.java 34 import org.w3c.dom.Node;
47 /** Root node of the UI element hierarchy */
59 * Returns the root node of the UI element hierarchy, which
60 * here is the "resources" node.
110 * Processes the new XML Model, which XML root node is given.
125 Node node = (Node) xpath.evaluate("/" + resources_desc.getXmlName(), //$NON-NLS-1$ local
127 XPathConstants.NODE);
128 assert node != null && node.getNodeName().equals(resources_desc.getXmlName())
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewHierarchyScene.java 62 protected Widget attachNodeWidget(ViewNode node) {
63 Widget widget = createBox(node, node.name, node.id);
70 private Widget createBox(ViewNode node, String nodeName, String id) {
72 node.setShortName(shortName);
74 GradientWidget box = new GradientWidget(this, node);
194 private final ViewNode node; field in class:ViewHierarchyScene.GradientWidget
203 public GradientWidget(ViewHierarchyScene scene, ViewNode node) {
205 this.node = node
    [all...]
  /libcore/luni/src/main/java/org/apache/xalan/xslt/
EnvironmentCheck.java 35 import org.w3c.dom.Node;
245 * @see #appendEnvironmentReport(Node, Document, Hashtable)
246 * for an equivalent that appends to a Node instead
398 * environment report from getEnvironmentHash() to a Node.
400 * <p>Copy of writeEnvironmentReport that creates a Node suitable
403 * @param container Node to append our report to
409 public void appendEnvironmentReport(Node container, Document factory, Hashtable h)
463 Element node = factory.createElement("item"); local
464 node.setAttribute("key", keyStr);
465 node.appendChild(factory.createTextNode((String)h.get(keyStr)))
472 Element node = factory.createElement("item"); local
531 Element node = factory.createElement("foundJar"); local
540 Element node = factory.createElement("foundJar"); local
    [all...]
  /external/bluetooth/glib/gio/fen/
fen-node.c 29 #include "fen-node.h"
57 static gboolean remove_node_internal (node_t* node, node_op_t* op);
115 node_t* node; local
124 if ((node = find_node (d->filename)) != NULL) {
125 remove_node_internal (node, d->op);
149 node_get_data (node_t* node)
151 g_assert (node);
152 return node->user_data;
156 node_set_data (node_t* node, gpointer user_data)
158 gpointer data = node->user_data
    [all...]

Completed in 1869 milliseconds

1 2 3 4 5 67 8 91011>>