HomeSort by relevance Sort by last modified time
    Searched refs:node (Results 626 - 650 of 5153) sorted by null

<<21222324252627282930>>

  /external/libcap-ng/libcap-ng-0.7/utils/
proc-llist.c 36 void list_append(llist *l, lnode *node)
40 if (node == NULL || l == NULL)
47 newnode->ppid = node->ppid;
48 newnode->pid = node->pid;
49 newnode->uid = node->uid;
50 newnode->inode = node->inode;
52 newnode->cmd = node->cmd;
53 newnode->capabilities = node->capabilities;
54 newnode->bounds = node->bounds;
  /external/opencv3/3rdparty/jinja2/
meta.py 72 for node in ast.find_all((nodes.Extends, nodes.FromImport, nodes.Import,
74 if not isinstance(node.template, nodes.Const):
76 if isinstance(node.template, (nodes.Tuple, nodes.List)):
77 for template_name in node.template.items:
91 if isinstance(node.template.value, string_types):
92 yield node.template.value
96 elif isinstance(node, nodes.Include) and \
97 isinstance(node.template.value, (tuple, list)):
98 for template_name in node.template.value:
  /external/selinux/libsepol/src/
nodes.c 12 /* Create a low level node structure from
16 ocontext_t ** node, const sepol_node_t * data)
39 memcpy(&tmp_node->u.node.addr, addr_buf, addr_bsize);
40 memcpy(&tmp_node->u.node.mask, mask_buf, mask_bsize);
64 *node = tmp_node;
79 ERR(handle, "could not create node structure");
85 ocontext_t * node, int proto, sepol_node_t ** record)
88 context_struct_t *con = &node->context[0];
102 (const char *)&node->u.node.addr
302 ocontext_t *node = NULL; local
353 sepol_node_t *node = NULL; local
    [all...]
  /external/skia/src/core/
SkTTopoSort.h 31 // Recursively visit a node and all the other nodes it depends on.
34 bool SkTTopoSort_Visit(T* node, SkTDArray<T*>* result) {
35 if (Traits::IsTempMarked(node)) {
40 // If the node under consideration has been already been output it means it
42 if (!Traits::WasOutput(node)) {
43 // This node hasn't been output yet. Recursively assess all the
45 Traits::SetTempMark(node);
46 for (int i = 0; i < Traits::NumDependencies(node); ++i) {
47 if (!SkTTopoSort_Visit<T, Traits>(Traits::Dependency(node, i), result)) {
51 Traits::Output(node, result->count()); // mark this node as outpu
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/serializer/
Serializer.java 43 import org.yaml.snakeyaml.nodes.Node;
58 private Set<Node> serializedNodes;
59 private Map<Node, String> anchors;
73 this.serializedNodes = new HashSet<Node>();
74 this.anchors = new HashMap<Node, String>();
100 public void serialize(Node node) throws IOException {
108 anchorNode(node);
110 node.setTag(explicitRoot);
112 serializeNode(node, null)
    [all...]
  /external/v8/src/compiler/
state-values-utils.cc 24 if (node_key1->node == nullptr) {
25 if (node_key2->node == nullptr) {
30 node_key2->node);
33 if (node_key2->node == nullptr) {
36 node_key1->node);
38 return node_key1->node == node_key2->node;
46 bool StateValuesCache::IsKeysEqualToNode(StateValuesKey* key, Node* node) {
47 if (key->count != static_cast<size_t>(node->InputCount()))
110 Node* node; local
138 Node* node() { function in class:v8::internal::compiler::StateValuesCache::ValueArrayIterator
152 Node* node = it->node(); local
    [all...]
js-frame-specialization.h 28 Reduction Reduce(Node* node) final;
31 Reduction ReduceOsrValue(Node* node);
32 Reduction ReduceParameter(Node* node);
loop-peeling.cc 8 #include "src/compiler/node.h"
9 #include "src/compiler/node-marker.h"
10 #include "src/compiler/node-properties.h"
105 // Maps a node to its index in the {pairs} vector.
113 Node* map(Node* node) {
114 if (node_map.Get(node) == 0) return node;
115 return pairs->at(node_map.Get(node));
    [all...]
  /frameworks/compile/mclinker/lib/Core/
InputTree.cpp 26 pMover.connect(pRoot, pTree.m_Root.node.right);
29 pTree.m_Root.node.left = pTree.m_Root.node.right = &pTree.m_Root.node;
36 NodeBase* node = createNode(); local
37 pMover.connect(pRoot, node);
44 BinaryTree<Input>::node_type* node = createNode(); local
45 node->data = &pInput;
46 pMover.connect(pRoot, node);
  /hardware/bsp/intel/peripheral/libmraa/src/javascript/
mraajs.i 14 if (!node::Buffer::HasInstance($input)) {
15 SWIG_exception_fail(SWIG_ERROR, "Expected a node Buffer");
17 $1 = (char*) node::Buffer::Data($input);
18 $2 = node::Buffer::Length($input);
22 if (!node::Buffer::HasInstance($input)) {
23 SWIG_exception_fail(SWIG_ERROR, "Expected a node Buffer");
25 $1 = (uint8_t*) node::Buffer::Data($input);
26 $2 = node::Buffer::Length($input);
30 if (!node::Buffer::HasInstance($input)) {
31 SWIG_exception_fail(SWIG_ERROR, "Expected a node Buffer")
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
NodeTest.java 22 import org.w3c.dom.Node;
36 * For bug 779: Node#getNextSibling throws IndexOutOfBoundsException.
43 Node root = document.getDocumentElement();
55 for (Node node : flattenSubtree(documentElement)) {
56 if (node.getNodeType() == Node.ELEMENT_NODE
57 || node.getNodeType() == Node.DOCUMENT_NODE) {
58 assertFileUriEquals(file, node.getBaseURI())
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
TemplateSyntaxTree.java 19 import com.google.clearsilver.jsilver.syntax.node.Start;
20 import com.google.clearsilver.jsilver.syntax.node.Switch;
21 import com.google.clearsilver.jsilver.syntax.node.Switchable;
24 * Simple wrapper class to encapsulate the root node of the AST and allow additional information to
SyntaxTreeDumper.java 22 import com.google.clearsilver.jsilver.syntax.node.EOF;
23 import com.google.clearsilver.jsilver.syntax.node.Node;
24 import com.google.clearsilver.jsilver.syntax.node.Start;
25 import com.google.clearsilver.jsilver.syntax.node.Token;
55 public void defaultIn(Node node) {
56 write(nodeName(node) + " {");
61 public void defaultOut(Node node) {
    [all...]
  /external/libchrome/base/json/
json_writer.h 39 // Given a root node, generates a JSON string and puts it into |json|.
41 // |node| is not a DictionaryValue/ListValue or if there are inf/-inf float
43 static bool Write(const Value& node, std::string* json);
47 static bool WriteWithOptions(const Value& node,
56 bool BuildJSONString(const Value& node, size_t depth);
  /external/libweave/third_party/chromium/base/json/
json_writer.h 39 // Given a root node, generates a JSON string and puts it into |json|.
41 // |node| is not a DictionaryValue/ListValue or if there are inf/-inf float
43 static bool Write(const Value& node, std::string* json);
47 static bool WriteWithOptions(const Value& node,
56 bool BuildJSONString(const Value& node, size_t depth);
  /external/libxml2/python/tests/
reader5.py 23 node = reader.Expand() # expand the subtree variable
24 if node.xpathEval("@id = 'Aho'"): # use XPath on it
25 res = res + node.serialize()
  /external/webrtc/webrtc/libjingle/xmpp/
discoitemsquerytask.h 18 // node='blah '/>
28 // node='blah'>
46 std::string node; member in struct:buzz::DiscoItem
53 const Jid& to, const std::string& node);
58 static XmlElement* MakeRequest(const std::string& node);
  /frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
AccessibilityNodeInfoHelper.java 28 * Returns the node's bounds clipped to the size of the display
30 * @param node
33 * @return null if node is null, else a Rect containing visible bounds
35 static Rect getVisibleBoundsInScreen(AccessibilityNodeInfo node, int width, int height) {
36 if (node == null) {
39 // targeted node's bounds
41 node.getBoundsInScreen(nodeRect);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/isl/
ast.h 103 __isl_give isl_ast_node *isl_ast_node_copy(__isl_keep isl_ast_node *node);
104 void *isl_ast_node_free(__isl_take isl_ast_node *node);
106 isl_ctx *isl_ast_node_get_ctx(__isl_keep isl_ast_node *node);
107 enum isl_ast_node_type isl_ast_node_get_type(__isl_keep isl_ast_node *node);
110 __isl_take isl_ast_node *node, __isl_take isl_id *annotation);
111 __isl_give isl_id *isl_ast_node_get_annotation(__isl_keep isl_ast_node *node);
114 __isl_keep isl_ast_node *node);
116 __isl_keep isl_ast_node *node);
118 __isl_keep isl_ast_node *node);
120 __isl_keep isl_ast_node *node);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/isl/
ast.h 103 __isl_give isl_ast_node *isl_ast_node_copy(__isl_keep isl_ast_node *node);
104 void *isl_ast_node_free(__isl_take isl_ast_node *node);
106 isl_ctx *isl_ast_node_get_ctx(__isl_keep isl_ast_node *node);
107 enum isl_ast_node_type isl_ast_node_get_type(__isl_keep isl_ast_node *node);
110 __isl_take isl_ast_node *node, __isl_take isl_id *annotation);
111 __isl_give isl_id *isl_ast_node_get_annotation(__isl_keep isl_ast_node *node);
114 __isl_keep isl_ast_node *node);
116 __isl_keep isl_ast_node *node);
118 __isl_keep isl_ast_node *node);
120 __isl_keep isl_ast_node *node);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
MapViewRule.java 35 public void onCreate(@NonNull INode node, @NonNull INode parent,
37 super.onCreate(node, parent, insertType);
40 node.setAttribute(ANDROID_URI, "android:apiKey", //$NON-NLS-1$
ZoomButtonRule.java 27 public void onCreate(@NonNull INode node, @NonNull INode parent,
29 super.onCreate(node, parent, insertType);
32 node.setAttribute(ANDROID_URI, ATTR_SRC, "@android:drawable/btn_plus"); //$NON-NLS-1$
  /external/gemmlowp/profiling/
profiler.h 113 // Each node shows the absolute percentage, among all the samples,
115 // The percentages are *NOT* relative to the parent node. In addition
117 // the remainder of samples under the parent node that didn't fall into
158 struct Node {
159 std::vector<Node*> children;
162 Node() : label(nullptr), weight(0) {}
163 ~Node() {
170 static bool CompareNodes(Node* n1, Node* n2) {
174 Node root_
    [all...]
  /external/libxml2/include/libxml/
debugXML.h 41 xmlNodePtr node,
45 xmlNodePtr node,
49 xmlNodePtr node,
81 xmlLsOneNode (FILE *output, xmlNodePtr node);
83 xmlLsCountNode (xmlNodePtr node);
116 xmlNodePtr node; member in struct:_xmlShellCtxt
127 * @node: a first node
128 * @node2: a second node
136 xmlNodePtr node,
    [all...]
  /external/skia/src/views/animated/
SkStaticTextView.cpp 12 static void assert_no_attr(const SkDOM& dom, const SkDOM::Node* node, const char attr[])
14 const char* value = dom.findAttr(node, attr);
19 #define assert_no_attr(dom, node, attr)
151 void SkStaticTextView::onInflate(const SkDOM& dom, const SkDOM::Node* node)
154 this->INHERITED::onInflate(dom, node);
157 if ((index = dom.findList(node, "mode", "fixed,auto-width,auto-height")) >= 0) {
160 assert_no_attr(dom, node, "mode");
163 if ((index = dom.findList(node, "spacing-align", "start,center,end")) >= 0)
    [all...]

Completed in 1443 milliseconds

<<21222324252627282930>>