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

1 2 3 4 5 67 8 91011>>

  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_operator.py 41 def transform(self, node, results):
42 method = self._check_method(node, results)
44 return method(node, results)
47 def _sequenceIncludes(self, node, results):
48 return self._handle_rename(node, results, u"contains")
51 def _isCallable(self, node, results):
54 return Call(Name(u"hasattr"), args, prefix=node.prefix)
57 def _repeat(self, node, results):
58 return self._handle_rename(node, results, u"mul")
61 def _irepeat(self, node, results)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
visitor.py 15 tree: an instance of ast.Node
19 correct order. For each node, it checks the visitor argument for
21 node's class, e.g. Class. If the method exists, it is called
22 with the node as its sole argument.
24 The visitor method for a particular node type can control how
29 be used to visit a child node of arbitrary type.
35 self.node = None
38 def default(self, node, *args):
39 for child in node.getChildNodes():
42 def dispatch(self, node, *args)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_operator.py 41 def transform(self, node, results):
42 method = self._check_method(node, results)
44 return method(node, results)
47 def _sequenceIncludes(self, node, results):
48 return self._handle_rename(node, results, u"contains")
51 def _isCallable(self, node, results):
54 return Call(Name(u"hasattr"), args, prefix=node.prefix)
57 def _repeat(self, node, results):
58 return self._handle_rename(node, results, u"mul")
61 def _irepeat(self, node, results)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
visitor.py 15 tree: an instance of ast.Node
19 correct order. For each node, it checks the visitor argument for
21 node's class, e.g. Class. If the method exists, it is called
22 with the node as its sole argument.
24 The visitor method for a particular node type can control how
29 be used to visit a child node of arbitrary type.
35 self.node = None
38 def default(self, node, *args):
39 for child in node.getChildNodes():
42 def dispatch(self, node, *args)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_operator.py 41 def transform(self, node, results):
42 method = self._check_method(node, results)
44 return method(node, results)
47 def _sequenceIncludes(self, node, results):
48 return self._handle_rename(node, results, u"contains")
51 def _isCallable(self, node, results):
54 return Call(Name(u"hasattr"), args, prefix=node.prefix)
57 def _repeat(self, node, results):
58 return self._handle_rename(node, results, u"mul")
61 def _irepeat(self, node, results)
    [all...]
  /external/v8/src/compiler/
machine-operator-reducer.cc 14 #include "src/compiler/node-matchers.h"
27 Node* MachineOperatorReducer::Float32Constant(volatile float value) {
32 Node* MachineOperatorReducer::Float64Constant(volatile double value) {
37 Node* MachineOperatorReducer::Int32Constant(int32_t value) {
42 Node* MachineOperatorReducer::Int64Constant(int64_t value) {
47 Node* MachineOperatorReducer::Word32And(Node* lhs, Node* rhs) {
48 Node* const node = graph()->NewNode(machine()->Word32And(), lhs, rhs) local
72 Node* const node = graph()->NewNode(machine()->Int32Add(), lhs, rhs); local
79 Node* const node = graph()->NewNode(machine()->Int32Sub(), lhs, rhs); local
    [all...]
  /frameworks/rs/
rsMap.h 57 LinkNode* node = bucket[index]; local
60 while (node != nullptr) {
61 if (node->entry.first == key) {
62 return node->entry.second;
64 prev = node;
65 node = node->next;
68 node = new LinkNode();
69 node->entry.first = key;
70 node->next = nullptr
122 LinkNode* node; member in class:android::renderscript::Map::iterator
128 LinkNode* node = bucket[i]; local
145 LinkNode* node = bucket[index]; local
    [all...]
  /frameworks/base/tools/aapt2/java/
ProguardRules.cpp 34 virtual void visit(xml::Namespace* node) override {
35 for (const auto& child : node->children) {
40 virtual void visit(xml::Element* node) override {
41 if (!node->namespaceUri.empty()) {
43 node->namespaceUri);
46 std::u16string package = maybePackage.value().package + u"." + node->name;
48 addClass(node->lineNumber, package);
51 } else if (util::isJavaClassName(node->name)) {
52 addClass(node->lineNumber, node->name)
    [all...]
  /frameworks/av/media/libstagefright/
OMXClient.cpp 52 virtual bool livesLocally(node_id node, pid_t pid);
59 node_id *node);
61 virtual status_t freeNode(node_id node);
64 node_id node, OMX_COMMANDTYPE cmd, OMX_S32 param);
67 node_id node, OMX_INDEXTYPE index,
71 node_id node, OMX_INDEXTYPE index,
75 node_id node, OMX_INDEXTYPE index,
79 node_id node, OMX_INDEXTYPE index,
83 node_id node, OMX_STATETYPE* state);
86 node_id node, OMX_U32 port_index, OMX_BOOL enable, MetadataBufferType *type)
    [all...]
  /external/v8/src/compiler/ppc/
instruction-selector-ppc.cc 7 #include "src/compiler/node-matchers.h"
8 #include "src/compiler/node-properties.h"
32 InstructionOperand UseOperand(Node* node, ImmediateMode mode) {
33 if (CanBeImmediate(node, mode)) {
34 return UseImmediate(node);
36 return UseRegister(node);
39 bool CanBeImmediate(Node* node, ImmediateMode mode) {
41 if (node->opcode() == IrOpcode::kInt32Constant
1609 Node* const node = value->InputAt(0); local
    [all...]
  /development/ndk/platforms/android-3/include/linux/
node.h 18 struct node { struct
22 #define to_node(sys_device) container_of(sys_device, struct node, sysdev)
  /external/clang/www/analyzer/scripts/
menu.js 5 node = navRoot.childNodes[i];
6 if (node.nodeName=="LI") {
7 node.onmouseover=function() {
10 node.onmouseout=function() {
  /external/libxml2/python/tests/
xpathret.py 17 # test returning a node set works as expected
21 node = mydoc.newDocText(str)
22 parent.addChild(node)
35 node = res[0] variable
36 if node.name != 'p':
39 node = node.children variable
40 if node.type != 'text':
43 if node.content != 'hello':
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_cfg.h 44 void *node; local
46 node = rzalloc_size(ctx, size);
47 assert(node != NULL);
49 return node;
73 void *node; local
75 node = rzalloc_size(ctx, size);
76 assert(node != NULL);
78 return node;
  /external/sfntly/cpp/src/test/
test_xml_utils.cc 23 void InternalGetNodesWithName(const TiXmlNode* node, const std::string& name,
25 if (node->ValueStr() == name)
26 wanted_nodes->push_back(node);
27 for (const TiXmlNode* child = node->FirstChild();
33 TiXmlNodeVector* GetNodesWithName(const TiXmlNode* node,
36 InternalGetNodesWithName(node, name, wanted_nodes);
40 const TiXmlAttribute* GetAttribute(const TiXmlNode* node,
42 for (const TiXmlAttribute* attribute = node->ToElement()->FirstAttribute();
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
Construct.java 18 import org.yaml.snakeyaml.nodes.Node;
21 * Provide a way to construct a Java instance out of the composed Node. Support
23 * Node Graph)
33 * @param node
34 * composed Node
37 Object construct(Node node);
43 * @param node
44 * composed Node
47 * <code>construct(Node node)</code> for the provided Nod
    [all...]
  /prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/linux/
node.h 18 struct node { struct
22 #define to_node(sys_device) container_of(sys_device, struct node, sysdev)
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/linux/
node.h 18 struct node { struct
22 #define to_node(sys_device) container_of(sys_device, struct node, sysdev)
  /prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/linux/
node.h 18 struct node { struct
22 #define to_node(sys_device) container_of(sys_device, struct node, sysdev)
  /prebuilts/ndk/current/platforms/android-13/arch-arm/usr/include/linux/
node.h 18 struct node { struct
22 #define to_node(sys_device) container_of(sys_device, struct node, sysdev)
  /prebuilts/ndk/current/platforms/android-13/arch-mips/usr/include/linux/
node.h 18 struct node { struct
22 #define to_node(sys_device) container_of(sys_device, struct node, sysdev)
  /prebuilts/ndk/current/platforms/android-13/arch-x86/usr/include/linux/
node.h 18 struct node { struct
22 #define to_node(sys_device) container_of(sys_device, struct node, sysdev)
  /prebuilts/ndk/current/platforms/android-14/arch-arm/usr/include/linux/
node.h 18 struct node { struct
22 #define to_node(sys_device) container_of(sys_device, struct node, sysdev)
  /prebuilts/ndk/current/platforms/android-14/arch-mips/usr/include/linux/
node.h 18 struct node { struct
22 #define to_node(sys_device) container_of(sys_device, struct node, sysdev)
  /prebuilts/ndk/current/platforms/android-14/arch-x86/usr/include/linux/
node.h 18 struct node { struct
22 #define to_node(sys_device) container_of(sys_device, struct node, sysdev)

Completed in 489 milliseconds

1 2 3 4 5 67 8 91011>>