HomeSort by relevance Sort by last modified time
    Searched defs:node (Results 101 - 125 of 2129) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
PPosition.java 3 package com.google.clearsilver.jsilver.syntax.node;
5 public abstract class PPosition extends Node
PVariable.java 3 package com.google.clearsilver.jsilver.syntax.node;
5 public abstract class PVariable extends Node
Switch.java 3 package com.google.clearsilver.jsilver.syntax.node;
  /external/lldb/test/functionalities/recursion/
main.cpp 14 struct node;
15 struct node { struct
17 node* next;
18 node () : value(1),next(NULL) {} function in struct:node
19 node (int v) : value(v), next(NULL) {} function in struct:node
22 void make_tree(node* root, int count)
30 root->next = new node(++countdown);
38 node root(1);
  /frameworks/compile/mclinker/lib/Core/
InputTree.cpp 27 pMover.connect(pRoot, pTree.m_Root.node.right);
31 pTree.m_Root.node.left = pTree.m_Root.node.right = &pTree.m_Root.node;
39 NodeBase* node = createNode(); local
40 pMover.connect(pRoot, node);
48 BinaryTree<Input>::node_type* node = createNode(); local
49 node->data = &pInput;
50 pMover.connect(pRoot, node);
  /hardware/intel/img/psb_video/src/
psb_ws_driver.c 51 struct _ValidateNode *node = malloc(sizeof(*node)); local
53 if (node == NULL) return NULL;
55 node->func = func;
56 node->type_id = 1;
57 return node;
62 * Free an allocated validate list node.
66 psb_free(struct _ValidateNode *node)
68 if (node->type_id == 0)
69 free(containerOf(node, struct _PsbDrmValidateNode, base))
    [all...]
  /external/eigen/doc/
eigen_navtree_hacks.js 77 // Overloaded to save the root node into global_navtree_object
83 o.node = new Object();
84 o.node.li = document.getElementById("nav-tree-contents");
85 o.node.childrenData = NAVTREE;
86 o.node.children = new Array();
87 o.node.childrenUL = document.createElement("ul");
88 o.node.getChildrenUL = function() { return o.node.childrenUL; };
89 o.node.li.appendChild(o.node.childrenUL)
    [all...]
  /external/doclava/res/assets/templates/assets/
doclava-developer-reference.js 100 var node = new Object();
101 node.children = Array();
102 node.children_data = children_data;
103 node.depth = mom.depth + 1;
105 node.li = document.createElement("li");
106 mom.get_children_ul().appendChild(node.li);
108 node.label_div = document.createElement("div");
109 node.label_div.className = "label";
111 $(node.label_div).addClass("api");
112 $(node.label_div).addClass("api-level-"+api_level)
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
tfind.c 20 } node; typedef in typeref:struct:node_t
22 /* find a node, or return 0 */
28 node **rootp = (node **)vrootp;
40 return (node *)0;
  /development/ndk/platforms/android-3/include/linux/
attribute_container.h 21 struct list_head node; member in struct:attribute_container
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
RecognitionException.as 76 /** If this is a tree parser exception, node is set to the node with
79 public var node:Object; variable
92 /** If you are parsing a tree node stream, you will encounter som
125 this.node = nodes.LT(1);
127 var payload:Token = adaptor.getToken(node);
131 // imaginary node; no line/pos info; scan backwards
147 else { // node created from real token
152 else if ( this.node is Tree) {
153 this.line = this.node.line
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRRecognitionException.h 38 id<ANTLRTree> node; variable
46 @property (retain, getter=getNode, setter=setNode:) id<ANTLRTree>node; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRRecognitionException.h 38 id<ANTLRTree> node; variable
46 @property (retain, getter=getNode, setter=setNode:) id<ANTLRTree>node; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRRecognitionException.h 38 id<ANTLRTree> node; variable
46 @property (retain, getter=getNode, setter=setNode:) id<ANTLRTree>node; variable
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRRecognitionException.h 38 id<ANTLRBaseTree> node; variable
47 @property (retain, getter=getNode, setter=setNode:) id<ANTLRBaseTree>node; variable
  /external/bison/src/
InadequacyList.c 49 InadequacyList *node = self; local
51 bitset_free (node->inadequacy.conflict.actions);
52 free (node);
  /external/chromium_org/chrome/browser/extensions/api/bookmark_manager_private/
bookmark_manager_private_apitest.cc 38 base::DictionaryValue* node = new base::DictionaryValue(); local
39 node->SetString("name", "Managed Bookmark");
40 node->SetString("url", "http://www.chromium.org");
41 list.Append(node);
42 node = new base::DictionaryValue();
43 node->SetString("name", "Managed Folder");
44 node->Set("children", new base::ListValue());
45 list.Append(node);
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
math_semantic_tree_test.js 61 * @param {Node} xml Xml representation of the semantic node.
68 function(node) {
69 node.parentNode.removeChild(node);
82 var node = document.getElementById((this.nodeCounter++).toString()); variable
83 var stree = new cvox.SemanticTree(/** @type {!Element} */(node));
293 // Single implicit node.
303 // Implicit multi node.
335 // Multi addition with implicit node
    [all...]
  /external/chromium_org/components/bookmarks/browser/
bookmark_match.h 36 // The matching node of a query.
37 const BookmarkNode* node; member in struct:bookmarks::BookmarkMatch
39 // Location of the matching words in the title of the node.
42 // Location of the matching words in the URL of the node.
  /external/chromium_org/mojo/services/public/cpp/view_manager/
view.h 18 class Node;
30 Node* node() { return node_; } function in class:mojo::view_manager::View
49 Node* node_;
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
ptw32_mutex_check_need_init.c 53 ptw32_mcs_local_node_t node; local
55 ptw32_mcs_lock_acquire(&ptw32_mutex_test_init_lock, &node);
89 ptw32_mcs_lock_release(&node);
  /external/chromium_org/ppapi/native_client/tests/breakpad_crash_test/
nacl.scons 29 node = env.PPAPIBrowserTester( variable
46 node, ['chrome_browser_tests'], 'run_breakpad_browser_process_crash_test',
54 # node = env.PPAPIBrowserTester(
65 # node,
75 # node = env.PPAPIBrowserTester(
84 # node, ['chrome_browser_tests'], 'run_breakpad_crash_in_syscall_test',
92 node = env.PPAPIBrowserTester( variable
101 node, ['chrome_browser_tests'], 'run_breakpad_untrusted_crash_test',
  /external/chromium_org/ppapi/native_client/tests/nacl_browser/fault_injection/
nacl.scons 73 node = env.PPAPIBrowserTester( variable
82 env.AddNodeToTestSuite(node,
  /external/chromium_org/third_party/WebKit/Source/core/dom/
NodeWithIndex.h 29 #include "core/dom/Node.h"
33 // For use when you want to get the index for a node repeatedly and
37 explicit NodeWithIndex(Node& node)
38 : m_node(node)
43 Node& node() const { return m_node; } function in class:WebCore::NodeWithIndex
57 Node& m_node;
PositionIterator.h 29 #include "core/dom/Node.h"
58 Node* node() const { return m_anchorNode; } function in class:WebCore::PositionIterator
68 RawPtrWillBeMember<Node> m_anchorNode;
69 RawPtrWillBeMember<Node> m_nodeAfterPositionInAnchor; // If this is non-null, m_nodeAfterPositionInAnchor->parentNode() == m_anchorNode;

Completed in 1456 milliseconds

1 2 3 45 6 7 8 91011>>