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

<<11121314151617181920>>

  /prebuilts/ndk/current/platforms/android-21/arch-mips64/usr/include/
search.h 23 typedef struct node { struct
25 struct node* llink;
26 struct node* rlink;
  /prebuilts/ndk/current/platforms/android-21/arch-x86/usr/include/
search.h 23 typedef struct node { struct
25 struct node* llink;
26 struct node* rlink;
  /prebuilts/ndk/current/platforms/android-21/arch-x86_64/usr/include/
search.h 23 typedef struct node { struct
25 struct node* llink;
26 struct node* rlink;
  /prebuilts/ndk/current/platforms/android-23/arch-arm/usr/include/
search.h 23 typedef struct node { struct
25 struct node* llink;
26 struct node* rlink;
  /prebuilts/ndk/current/platforms/android-23/arch-arm64/usr/include/
search.h 23 typedef struct node { struct
25 struct node* llink;
26 struct node* rlink;
  /prebuilts/ndk/current/platforms/android-23/arch-mips/usr/include/
search.h 23 typedef struct node { struct
25 struct node* llink;
26 struct node* rlink;
  /prebuilts/ndk/current/platforms/android-23/arch-mips64/usr/include/
search.h 23 typedef struct node { struct
25 struct node* llink;
26 struct node* rlink;
  /prebuilts/ndk/current/platforms/android-23/arch-x86/usr/include/
search.h 23 typedef struct node { struct
25 struct node* llink;
26 struct node* rlink;
  /prebuilts/ndk/current/platforms/android-23/arch-x86_64/usr/include/
search.h 23 typedef struct node { struct
25 struct node* llink;
26 struct node* rlink;
  /prebuilts/ndk/current/platforms/android-24/arch-arm/usr/include/
search.h 23 typedef struct node { struct
25 struct node* llink;
26 struct node* rlink;
  /prebuilts/ndk/current/platforms/android-24/arch-arm64/usr/include/
search.h 23 typedef struct node { struct
25 struct node* llink;
26 struct node* rlink;
  /prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/
search.h 23 typedef struct node { struct
25 struct node* llink;
26 struct node* rlink;
  /prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/
search.h 23 typedef struct node { struct
25 struct node* llink;
26 struct node* rlink;
  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/
search.h 23 typedef struct node { struct
25 struct node* llink;
26 struct node* rlink;
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/
search.h 23 typedef struct node { struct
25 struct node* llink;
26 struct node* rlink;
  /external/freetype/src/base/
ftdbgmem.c 278 FT_MemNode node, next, *pnode; local
282 node = table->buckets[i];
283 while ( node )
285 next = node->link;
286 hash = FT_MEM_VAL( node->address ) % (FT_PtrDist)new_size;
289 node->link = pnode[0];
290 pnode[0] = node;
292 node = next;
358 FT_MemNode *pnode = table->buckets + i, next, node = *pnode; local
361 while ( node )
432 FT_MemNode *pnode, node; local
457 FT_MemSource node, *pnode; local
512 FT_MemNode *pnode, node; local
612 FT_MemNode *pnode, node; local
744 FT_MemNode node, *pnode; local
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/base/
ftdbgmem.c 278 FT_MemNode node, next, *pnode; local
282 node = table->buckets[i];
283 while ( node )
285 next = node->link;
286 hash = FT_MEM_VAL( node->address ) % (FT_PtrDist)new_size;
289 node->link = pnode[0];
290 pnode[0] = node;
292 node = next;
358 FT_MemNode *pnode = table->buckets + i, next, node = *pnode; local
361 while ( node )
431 FT_MemNode *pnode, node; local
456 FT_MemSource node, *pnode; local
511 FT_MemNode *pnode, node; local
611 FT_MemNode *pnode, node; local
743 FT_MemNode node, *pnode; local
    [all...]
  /external/pdfium/third_party/freetype/src/base/
ftdbgmem.c 278 FT_MemNode node, next, *pnode; local
282 node = table->buckets[i];
283 while ( node )
285 next = node->link;
286 hash = FT_MEM_VAL( node->address ) % (FT_PtrDist)new_size;
289 node->link = pnode[0];
290 pnode[0] = node;
292 node = next;
358 FT_MemNode *pnode = table->buckets + i, next, node = *pnode; local
361 while ( node )
431 FT_MemNode *pnode, node; local
456 FT_MemSource node, *pnode; local
511 FT_MemNode *pnode, node; local
611 FT_MemNode *pnode, node; local
743 FT_MemNode node, *pnode; local
    [all...]
  /external/opencv3/3rdparty/jinja2/
compiler.py 55 def generate(node, environment, name, filename, stream=None,
57 """Generate the python source for a node tree."""
58 if not isinstance(node, nodes.Template):
61 generator.visit(node)
67 """Does the node have a safe representation?"""
94 for node in nodes:
95 visitor.visit(node)
193 """Walk the node and check for identifiers. If the scope is hard (eg:
198 for node in nodes:
199 visitor.visit(node)
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
tsearch.c 21 } node; typedef in typeref:struct:node_t
28 node *q;
30 node **rootp = (node **)vrootp;
43 q = (node *) malloc(sizeof(node)); /* T5: key not found */
44 if (q != (struct node_t *)0) { /* make new node */
45 *rootp = q; /* link new node to old */
46 q->key = key; /* initialize new node */
52 /* delete node with given key *
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TreeWalker2Result.java 43 /** Node where to start the tree walk */
65 * @param pos Start node for traversal
78 * End processing of given node
81 * @param node Node we just finished processing
85 protected void endNode(int node) throws org.xml.sax.SAXException
87 super.endNode(node);
88 if(DTM.ELEMENT_NODE == m_dtm.getNodeType(node))
95 * Start traversal of the tree at the given node
98 * @param node Starting node for traversa
    [all...]
  /external/clang/test/CodeGen/
tbaa-thread-sanitizer.cpp 5 struct iterator { void *node; }; member in struct:iterator
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
Node.java 3 package com.google.clearsilver.jsilver.syntax.node;
8 public abstract class Node implements Switchable, Cloneable
10 private Node parent;
15 public Node parent()
20 void parent(@SuppressWarnings("hiding") Node parent)
25 abstract void removeChild(Node child);
26 abstract void replaceChild(Node oldChild, Node newChild);
28 public void replaceBy(Node node)
    [all...]
  /external/libxml2/doc/examples/
tree2.c 29 xmlNodePtr root_node = NULL, node = NULL, node1 = NULL;/* node pointers */ local
37 * Creates a new document, a node and set it as a root node
49 * xmlNewChild() creates a new node, which is "attached" as child node
50 * of root_node node.
53 BAD_CAST "content of node 1");
55 * The same as above, but the new child node doesn't have a content
60 * xmlNewProp() creates attributes, which is "attached" to an node
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/serializer/
AnchorGenerator.java 18 import org.yaml.snakeyaml.nodes.Node;
22 String nextAnchor(Node node);

Completed in 2766 milliseconds

<<11121314151617181920>>