Home
last modified time | relevance | path

Searched refs:nodes (Results 1 – 25 of 75) sorted by relevance

123

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/
Dast.txt1 # This file describes the nodes of the AST in ast.py. The module is
6 # ! this child is a sequence that contains nodes in it
13 Stmt: nodes!
14 Decorators: nodes!
35 Print: nodes!, dest&
36 Printnl: nodes!, dest&
39 Assign: nodes!, expr
40 AssTuple: nodes!
41 AssList: nodes!
51 List: nodes!
[all …]
Dastgen.py259 nodes = {} variable
278 nodes["expression"] = "Expression"
294 nodes[name.lower()] = obj
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
Dpatcomp.py101 nodes = node.children
102 if len(nodes) >= 3 and nodes[1].type == token.EQUAL:
103 name = nodes[0].value
104 nodes = nodes[2:]
106 if len(nodes) >= 2 and nodes[-1].type == self.syms.Repeater:
107 repeat = nodes[-1]
108 nodes = nodes[:-1]
111 pattern = self.compile_basic(nodes, repeat)
139 def compile_basic(self, nodes, repeat=None): argument
141 assert len(nodes) >= 1
[all …]
Dpytree.py513 def match_seq(self, nodes, results=None): argument
519 if len(nodes) != 1:
521 return self.match(nodes[0], results)
523 def generate_matches(self, nodes): argument
530 if nodes and self.match(nodes[0], r):
711 def match_seq(self, nodes, results=None): argument
713 for c, r in self.generate_matches(nodes):
714 if c == len(nodes):
718 results[self.name] = list(nodes)
722 def generate_matches(self, nodes): argument
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
Dast.py21 nodes = {} variable
40 nodes["expression"] = "Expression"
69 def __init__(self, nodes, lineno=None): argument
70 self.nodes = nodes
74 return tuple(flatten(self.nodes))
78 nodelist.extend(flatten_nodes(self.nodes))
82 return "And(%s)" % (repr(self.nodes),)
101 def __init__(self, nodes, lineno=None): argument
102 self.nodes = nodes
106 return tuple(flatten(self.nodes))
[all …]
Dpycodegen.py377 for decorator in node.decorators.nodes:
379 ndecorators = len(node.decorators.nodes)
520 for child in node.nodes[:-1]:
524 self.visit(node.nodes[-1])
959 dups = len(node.nodes) - 1
960 for i in range(len(node.nodes)):
961 elt = node.nodes[i]
988 self.emit(op, len(node.nodes))
989 for child in node.nodes:
1102 for child in node.nodes:
[all …]
Dfuture.py27 for s in stmt.nodes:
/device/linaro/poplar/vendor/
Dueventd.poplar.rc3 # device nodes for HAl bt
5 # device nodes for HAl drm
8 # device nodes for HAl graphics
13 # device nodes for HAl media.codec
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
Dfix_except.py30 def find_excepts(nodes): argument
31 for i, n in enumerate(nodes):
34 yield (n, nodes[i+2])
Dfix_urllib.py161 nodes = []
163 nodes.extend([new_node, Newline()])
164 nodes.append(new_nodes[-1])
165 node.replace(nodes)
/device/linaro/bootloader/arm-trusted-firmware/docs/
Dpsci-pd-tree.rst34 over the sibling nodes at a particular level to find a specified power
82 above text further. The leaf and non-leaf nodes in this tree have been numbered
148 such that, if the core nodes are numbered from left to right, then the index
151 relationship allows the core nodes to be allocated in a separate array
178 in the power domain descriptor, that is, the number of core nodes described
187 to represent leaf and non-leaf power domain nodes in the tree.
193 * is used to track the state of all the nodes i.e. power domain instances
194 * described by the platform. The tree consists of nodes that describe CPU power
195 * domains i.e. leaf nodes and all other power domains which are parents of a
196 * CPU power domain i.e. non-leaf nodes.
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_cpickle.py113 nodes = [Node() for i in range(500)]
114 for n in nodes:
115 n.connections = list(nodes)
/device/google/atv/sepolicy/
Dfile_contexts1 # DVB API device nodes
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
Dcheck.py15 from docutils import nodes
135 document = nodes.document(settings, reporter, source=source_path)
/device/google/coral-sepolicy/vendor/knowles/common/
Dfile_contexts6 # dev nodes
/device/google/wahoo/sepolicy/vendor/
Dhal_power_default.te4 # To do powerhint on nodes defined in powerhint.json
Dhal_power_stats_default.te1 # power.stats HAL needs access to rpm, and wlan sysfs nodes in /d/
/device/google/sunfish-sepolicy/vendor/st/
Dfile_contexts8 # dev nodes
/device/linaro/bootloader/edk2/StdLib/Include/net/
Dradix.h119 struct radix_node_head *head, struct radix_node nodes[]));
122 struct radix_node_head *head, struct radix_node nodes[]));
/device/google/bonito-sepolicy/vendor/qcom/common/
Dhal_power_default.te4 # To do powerhint on nodes defined in powerhint.json
Deasel.te11 # access easel dev nodes
/device/google/crosshatch-sepolicy/vendor/qcom/common/
Dhal_power_default.te4 # To do powerhint on nodes defined in powerhint.json
Deasel.te11 # access easel dev nodes
/device/google/coral-sepolicy/vendor/qcom/common/
Ddevice.te14 #device type for smd device nodes, ie /dev/smd*
17 #device type for rmnet device nodes, ie /dev/rmnet_ctrl*
/device/google/coral-sepolicy/vendor/google/
Drlsservice.te26 # For rlsservice to access display related sys file nodes

123