/prebuilts/ndk/current/platforms/android-18/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-18/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-18/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-19/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-19/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-19/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-3/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-4/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-5/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-8/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-9/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-9/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-9/arch-x86/usr/include/linux/ |
node.h | 18 struct node { struct 22 #define to_node(sys_device) container_of(sys_device, struct node, sysdev)
|
/external/v8/src/compiler/ |
instruction-selector.cc | 11 #include "src/compiler/node-matchers.h" 50 for (Node* const phi : *block) { 54 for (Node* const input : phi->inputs()) { 218 bool InstructionSelector::CanCover(Node* user, Node* node) const { 219 return node->OwnedBy(user) && 220 schedule()->block(node) == schedule()->block(user); 224 int InstructionSelector::GetVirtualRegister(const Node* node) { [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/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
AAltCommand.java | 3 package com.google.clearsilver.jsilver.syntax.node; 52 public void setPosition(PPosition node) 59 if(node != null) 61 if(node.parent() != null) 63 node.parent().removeChild(node); 66 node.parent(this); 69 this._position_ = node; 77 public void setExpression(PExpression node) 84 if(node != null [all...] |
AAutoescapeCommand.java | 3 package com.google.clearsilver.jsilver.syntax.node; 52 public void setPosition(PPosition node) 59 if(node != null) 61 if(node.parent() != null) 63 node.parent().removeChild(node); 66 node.parent(this); 69 this._position_ = node; 77 public void setExpression(PExpression node) 84 if(node != null [all...] |
AEscapeCommand.java | 3 package com.google.clearsilver.jsilver.syntax.node; 52 public void setPosition(PPosition node) 59 if(node != null) 61 if(node.parent() != null) 63 node.parent().removeChild(node); 66 node.parent(this); 69 this._position_ = node; 77 public void setExpression(PExpression node) 84 if(node != null [all...] |
ASetCommand.java | 3 package com.google.clearsilver.jsilver.syntax.node; 52 public void setPosition(PPosition node) 59 if(node != null) 61 if(node.parent() != null) 63 node.parent().removeChild(node); 66 node.parent(this); 69 this._position_ = node; 77 public void setVariable(PVariable node) 84 if(node != null [all...] |
Switchable.java | 3 package com.google.clearsilver.jsilver.syntax.node;
|
/prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/ |
fix_metaclass.py | 23 from ..fixer_util import Name, syms, Node, Leaf 32 for node in parent.children: 33 if node.type == syms.suite: 34 return has_metaclass(node) 35 elif node.type == syms.simple_stmt and node.children: 36 expr_node = node.children[0] 49 for node in cls_node.children: 50 if node.type == syms.suite: 54 # !%@#! oneliners have no suite node, we have to fake one u [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/ |
fix_metaclass.py | 23 from ..fixer_util import Name, syms, Node, Leaf 32 for node in parent.children: 33 if node.type == syms.suite: 34 return has_metaclass(node) 35 elif node.type == syms.simple_stmt and node.children: 36 expr_node = node.children[0] 49 for node in cls_node.children: 50 if node.type == syms.suite: 54 # !%@#! oneliners have no suite node, we have to fake one u [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_metaclass.py | 23 from ..fixer_util import Name, syms, Node, Leaf 32 for node in parent.children: 33 if node.type == syms.suite: 34 return has_metaclass(node) 35 elif node.type == syms.simple_stmt and node.children: 36 expr_node = node.children[0] 49 for node in cls_node.children: 50 if node.type == syms.suite: 54 # !%@#! oneliners have no suite node, we have to fake one u [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_metaclass.py | 23 from ..fixer_util import Name, syms, Node, Leaf 32 for node in parent.children: 33 if node.type == syms.suite: 34 return has_metaclass(node) 35 elif node.type == syms.simple_stmt and node.children: 36 expr_node = node.children[0] 49 for node in cls_node.children: 50 if node.type == syms.suite: 54 # !%@#! oneliners have no suite node, we have to fake one u [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;
|