HomeSort by relevance Sort by last modified time
    Searched refs:node (Results 426 - 450 of 5466) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/current/platforms/android-9/arch-arm/usr/include/linux/
rbtree.h 42 #define RB_EMPTY_NODE(node) (rb_parent(node) != node)
43 #define RB_CLEAR_NODE(node) (rb_set_parent(node, node))
  /prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/linux/
rbtree.h 42 #define RB_EMPTY_NODE(node) (rb_parent(node) != node)
43 #define RB_CLEAR_NODE(node) (rb_set_parent(node, node))
  /prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/linux/
rbtree.h 42 #define RB_EMPTY_NODE(node) (rb_parent(node) != node)
43 #define RB_CLEAR_NODE(node) (rb_set_parent(node, node))
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
node.h 2 /* Parse tree node interface */
17 } node; typedef in typeref:struct:_node
19 PyAPI_FUNC(node *) PyNode_New(int type);
20 PyAPI_FUNC(int) PyNode_AddChild(node *n, int type,
22 PyAPI_FUNC(void) PyNode_Free(node *n);
24 PyAPI_FUNC(Py_ssize_t) _PyNode_SizeOf(node *n);
27 /* Node access functions */
35 /* Assert that the type of a node is what we expect */
38 PyAPI_FUNC(void) PyNode_ListTree(node *);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
pycodegen.py 150 def visitDict(self, node):
153 def visitGlobal(self, node):
154 for name in node.names:
157 def visitFunction(self, node):
158 self.names.add(node.name)
160 def visitLambda(self, node):
163 def visitImport(self, node):
164 for name, alias in node.names:
167 def visitFrom(self, node):
168 for name, alias in node.names
    [all...]
syntax.py 32 def error(self, node, msg):
35 print "%s:%s: %s" % (node.filename, node.lineno, msg)
37 raise SyntaxError, "%s (%s:%s)" % (msg, node.filename, node.lineno)
39 def visitAssign(self, node):
42 ## for target in node.nodes:
45 ## target.lineno = node.lineno
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_numliterals.py 17 def match(self, node):
19 return (node.value.startswith(u"0") or node.value[-1] in u"Ll")
21 def transform(self, node, results):
22 val = node.value
28 return Number(val, prefix=node.prefix)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
node.h 2 /* Parse tree node interface */
17 } node; typedef in typeref:struct:_node
19 PyAPI_FUNC(node *) PyNode_New(int type);
20 PyAPI_FUNC(int) PyNode_AddChild(node *n, int type,
22 PyAPI_FUNC(void) PyNode_Free(node *n);
24 PyAPI_FUNC(Py_ssize_t) _PyNode_SizeOf(node *n);
27 /* Node access functions */
35 /* Assert that the type of a node is what we expect */
38 PyAPI_FUNC(void) PyNode_ListTree(node *);
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
pycodegen.py 150 def visitDict(self, node):
153 def visitGlobal(self, node):
154 for name in node.names:
157 def visitFunction(self, node):
158 self.names.add(node.name)
160 def visitLambda(self, node):
163 def visitImport(self, node):
164 for name, alias in node.names:
167 def visitFrom(self, node):
168 for name, alias in node.names
    [all...]
syntax.py 32 def error(self, node, msg):
35 print "%s:%s: %s" % (node.filename, node.lineno, msg)
37 raise SyntaxError, "%s (%s:%s)" % (msg, node.filename, node.lineno)
39 def visitAssign(self, node):
42 ## for target in node.nodes:
45 ## target.lineno = node.lineno
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_numliterals.py 17 def match(self, node):
19 return (node.value.startswith(u"0") or node.value[-1] in u"Ll")
21 def transform(self, node, results):
22 val = node.value
28 return Number(val, prefix=node.prefix)
  /system/update_engine/payload_generator/
topological_sort.cc 33 Vertex::Index node) {
34 if (visited_nodes->find(node) != visited_nodes->end())
37 visited_nodes->insert(node);
39 for (Vertex::EdgeMap::const_iterator it = graph[node].out_edges.begin();
40 it != graph[node].out_edges.end(); ++it) {
43 // Visit this node.
44 nodes->push_back(node);
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/
fixer_util.py 1 """Utility functions, node construction macros, etc."""
8 from .pytree import Leaf, Node
14 ### Common node-construction "macros"
18 return Node(syms.argument,
35 return Node(syms.atom,
43 """A node tuple for obj.attr"""
44 return [obj, Node(syms.trailer, [Dot(), attr])]
56 node = Node(syms.trailer, [lparen.clone(), rparen.clone()])
58 node.insert_child(1, Node(syms.arglist, args)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/
fixer_util.py 1 """Utility functions, node construction macros, etc."""
8 from .pytree import Leaf, Node
14 ### Common node-construction "macros"
18 return Node(syms.argument,
35 return Node(syms.atom,
43 """A node tuple for obj.attr"""
44 return [obj, Node(syms.trailer, [Dot(), attr])]
56 node = Node(syms.trailer, [lparen.clone(), rparen.clone()])
58 node.insert_child(1, Node(syms.arglist, args)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
fixer_util.py 1 """Utility functions, node construction macros, etc."""
8 from .pytree import Leaf, Node
14 ### Common node-construction "macros"
18 return Node(syms.argument,
35 return Node(syms.atom,
43 """A node tuple for obj.attr"""
44 return [obj, Node(syms.trailer, [Dot(), attr])]
56 node = Node(syms.trailer, [lparen.clone(), rparen.clone()])
58 node.insert_child(1, Node(syms.arglist, args)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
fixer_util.py 1 """Utility functions, node construction macros, etc."""
8 from .pytree import Leaf, Node
14 ### Common node-construction "macros"
18 return Node(syms.argument,
35 return Node(syms.atom,
43 """A node tuple for obj.attr"""
44 return [obj, Node(syms.trailer, [Dot(), attr])]
56 node = Node(syms.trailer, [lparen.clone(), rparen.clone()])
58 node.insert_child(1, Node(syms.arglist, args)
    [all...]
  /external/autotest/client/cros/audio/
cras_utils.py 141 """Set the volume of the given output node.
143 @param node_id: the id of the output node to be set the volume.
185 @returns: A dict containing information of each node.
195 field is a list of selected node IDs returned from Cras DBus API.
203 for node in nodes:
204 if node['Active']:
205 if node['IsInput']:
206 input_nodes.append(node['Id'])
208 output_nodes.append(node['Id'])
213 """Sets the selected output node volume
    [all...]
  /external/v8/src/compiler/
effect-control-linearizer.h 9 #include "src/compiler/node.h"
33 void ProcessNode(Node* node, Node** frame_state, Node** effect,
34 Node** control);
37 Node* value;
38 Node* effect;
39 Node* control;
40 ValueEffectControl(Node* value, Node* effect, Node* control
    [all...]
branch-elimination.h 24 Reduction Reduce(Node* node) final;
28 Node* condition;
32 BranchCondition(Node* condition, bool is_true, BranchCondition* next)
41 Maybe<bool> LookupCondition(Node* condition) const;
43 const ControlPathConditions* AddCondition(Zone* zone, Node* condition,
63 // Maps each control node to the condition information known about the node.
70 const ControlPathConditions* Get(Node* node);
    [all...]
  /bionic/libc/include/
search.h 23 typedef struct node { struct
25 struct node* llink;
26 struct node* rlink;
  /development/ndk/platforms/android-21/include/
search.h 23 typedef struct node { struct
25 struct node* llink;
26 struct node* rlink;
  /external/fio/lib/
prio_tree.h 67 static inline int prio_tree_root(const struct prio_tree_node *node)
69 return node->parent == node;
72 static inline int prio_tree_left_empty(const struct prio_tree_node *node)
74 return node->left == node;
77 static inline int prio_tree_right_empty(const struct prio_tree_node *node)
79 return node->right == node;
84 struct prio_tree_node *old, struct prio_tree_node *node);
    [all...]
  /prebuilts/ndk/current/platforms/android-21/arch-arm/usr/include/
search.h 23 typedef struct node { struct
25 struct node* llink;
26 struct node* rlink;
  /prebuilts/ndk/current/platforms/android-21/arch-arm64/usr/include/
search.h 23 typedef struct node { struct
25 struct node* llink;
26 struct node* rlink;
  /prebuilts/ndk/current/platforms/android-21/arch-mips/usr/include/
search.h 23 typedef struct node { struct
25 struct node* llink;
26 struct node* rlink;

Completed in 1455 milliseconds

<<11121314151617181920>>