HomeSort by relevance Sort by last modified time
    Searched defs:Node (Results 51 - 75 of 1545) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/skqp/src/xml/
SkDOM.h 28 typedef SkDOMNode Node;
33 const Node* build(SkStream&);
34 const Node* copy(const SkDOM& dom, const Node* node);
36 const Node* getRootNode() const;
39 const Node* finishParsing();
45 Type getType(const Node*) const;
47 const char* getName(const Node*) const;
48 const Node* getFirstChild(const Node*, const char elem[] = nullptr) const
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
CFGPrinter.h 35 static std::string getSimpleNodeLabel(const BasicBlock *Node,
37 if (!Node->getName().empty())
38 return Node->getNameStr();
43 WriteAsOperand(OS, Node, false);
47 static std::string getCompleteNodeLabel(const BasicBlock *Node,
52 if (Node->getName().empty()) {
53 WriteAsOperand(OS, Node, false);
57 OS << *Node;
75 std::string getNodeLabel(const BasicBlock *Node,
78 return getSimpleNodeLabel(Node, Graph)
    [all...]
  /external/v8/benchmarks/spinning-balls/
splay-tree.js 41 * Pointer to the root node of the tree.
43 * @type {SplayTree.Node}
58 * Inserts a node into the tree with the specified key and value if
59 * the tree does not already contain a node with the specified key. If
67 this.root_ = new SplayTree.Node(key, value);
70 // Splay on the key to move the last node on the search path for
76 var node = new SplayTree.Node(key, value);
78 node.left = this.root_;
79 node.right = this.root_.right
    [all...]
  /external/v8/src/builtins/
builtins-boolean.cc 42 typedef compiler::Node Node;
45 Node* receiver = assembler.Parameter(0);
46 Node* context = assembler.Parameter(3);
48 Node* value = assembler.ToThisValue(
50 Node* result = assembler.LoadObjectField(value, Oddball::kToStringOffset);
57 typedef compiler::Node Node;
60 Node* receiver = assembler.Parameter(0);
61 Node* context = assembler.Parameter(3)
    [all...]
  /external/v8/src/ffi/
ffi-compiler.h 14 typedef compiler::Node Node;
  /external/v8/src/profiler/
unbound-queue-inl.h 14 struct UnboundQueue<Record>::Node: public Malloced {
15 explicit Node(const Record& value)
20 Node* next;
26 first_ = new Node(Record());
39 Node* tmp = first_;
48 Node* next = reinterpret_cast<Node*>(divider_)->next;
57 Node*& next = reinterpret_cast<Node*>(last_)->next;
58 next = new Node(rec)
    [all...]
  /external/v8/tools/
profile_view.js 52 callTree.traverse(function(node, viewParent) {
53 var totalWeight = node.totalWeight * samplingRate;
54 var selfWeight = node.selfWeight * samplingRate;
62 var viewNode = createViewNode(node.label, totalWeight, selfWeight, head);
78 * @param {ProfileView.Node} head View head node.
87 * Factory method for a profile view node.
95 * @param {ProfileView.Node} head Profile view head.
96 * @return {ProfileView.Node} Profile view node
    [all...]
  /frameworks/base/tools/aapt2/
DominatorTree.h 33 * A node in the tree represents a resource configuration.
53 class Node {
55 explicit Node(ResourceConfigValue* value = nullptr, Node* parent = nullptr)
60 inline Node* parent() const { return parent_; }
64 inline const std::vector<std::unique_ptr<Node>>& children() const {
68 bool TryAddChild(std::unique_ptr<Node> new_child);
71 bool AddChild(std::unique_ptr<Node> new_child);
72 bool Dominates(const Node* other) const;
75 Node* parent_
    [all...]
  /frameworks/compile/mclinker/unittests/
GCFactoryListTraitsTest.h 30 * \brief Node used in the test
35 class Node : public llvm::ilist_node<Node> {
43 Node() : m_Init(0), m_Value(0) {}
45 Node(unsigned pInit) : m_Init(pInit), m_Value(pInit) {}
54 class NodeFactory : public mcld::GCFactory<Node, 0> {
56 NodeFactory() : mcld::GCFactory<Node, 0>(16) {}
58 Node* produce(unsigned pInit) {
59 Node* result = allocate();
60 new (result) Node(pInit)
    [all...]
  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/src/
queue.c 37 typedef struct Node
40 struct Node *next;
41 } Node;
45 Node *head;
46 Node *tail;
81 Node *new_node = (Node *) malloc(sizeof(Node));
106 Node *temp;
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/src/
queue.c 37 typedef struct Node {
39 struct Node *next;
40 } Node;
43 Node *head;
44 Node *tail;
79 Node *new_node = (Node *) malloc(sizeof(Node));
101 Node *temp;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
Node.java 1 /* Generated By:JJTree: Do not edit this line. Node.java */
9 public interface Node {
11 /** This method is called after the node has been made the current
12 node. It indicates that child nodes can now be added to it. */
19 /** This pair of methods are used to inform the node of its
21 public void jjtSetParent(Node n);
22 public Node jjtGetParent();
24 /** This method tells the node to add its argument to the node's
26 public void jjtAddChild(Node n, int i)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/lld/Core/
Node.h 1 //===- lld/Core/Node.h - Input file class -----------------------*- C++ -*-===//
25 // A Node represents a FileNode or other type of Node. In the latter case,
26 // the node contains meta information about the input file list.
27 // Currently only GroupEnd node is defined as a meta node.
28 class Node {
32 explicit Node(Kind type) : _kind(type) {}
33 virtual ~Node() = default;
43 class GroupEnd : public Node {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/lld/Core/
Node.h 1 //===- lld/Core/Node.h - Input file class -----------------------*- C++ -*-===//
25 // A Node represents a FileNode or other type of Node. In the latter case,
26 // the node contains meta information about the input file list.
27 // Currently only GroupEnd node is defined as a meta node.
28 class Node {
32 explicit Node(Kind type) : _kind(type) {}
33 virtual ~Node() = default;
43 class GroupEnd : public Node {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/lld/Core/
Node.h 1 //===- lld/Core/Node.h - Input file class -----------------------*- C++ -*-===//
25 // A Node represents a FileNode or other type of Node. In the latter case,
26 // the node contains meta information about the input file list.
27 // Currently only GroupEnd node is defined as a meta node.
28 class Node {
32 explicit Node(Kind type) : _kind(type) {}
33 virtual ~Node() = default;
43 class GroupEnd : public Node {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/lld/Core/
Node.h 1 //===- lld/Core/Node.h - Input file class -----------------------*- C++ -*-===//
25 // A Node represents a FileNode or other type of Node. In the latter case,
26 // the node contains meta information about the input file list.
27 // Currently only GroupEnd node is defined as a meta node.
28 class Node {
32 explicit Node(Kind type) : _kind(type) {}
33 virtual ~Node() = default;
43 class GroupEnd : public Node {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/lld/Core/
Node.h 1 //===- lld/Core/Node.h - Input file class -----------------------*- C++ -*-===//
25 // A Node represents a FileNode or other type of Node. In the latter case,
26 // the node contains meta information about the input file list.
27 // Currently only GroupEnd node is defined as a meta node.
28 class Node {
32 explicit Node(Kind type) : _kind(type) {}
33 virtual ~Node() = default;
43 class GroupEnd : public Node {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/lld/Core/
Node.h 1 //===- lld/Core/Node.h - Input file class -----------------------*- C++ -*-===//
25 // A Node represents a FileNode or other type of Node. In the latter case,
26 // the node contains meta information about the input file list.
27 // Currently only GroupEnd node is defined as a meta node.
28 class Node {
32 explicit Node(Kind type) : _kind(type) {}
33 virtual ~Node() = default;
43 class GroupEnd : public Node {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/lld/Core/
Node.h 1 //===- lld/Core/Node.h - Input file class -----------------------*- C++ -*-===//
25 // A Node represents a FileNode or other type of Node. In the latter case,
26 // the node contains meta information about the input file list.
27 // Currently only GroupEnd node is defined as a meta node.
28 class Node {
32 explicit Node(Kind type) : _kind(type) {}
33 virtual ~Node() = default;
43 class GroupEnd : public Node {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/lld/Core/
Node.h 1 //===- lld/Core/Node.h - Input file class -----------------------*- C++ -*-===//
25 // A Node represents a FileNode or other type of Node. In the latter case,
26 // the node contains meta information about the input file list.
27 // Currently only GroupEnd node is defined as a meta node.
28 class Node {
32 explicit Node(Kind type) : _kind(type) {}
33 virtual ~Node() = default;
43 class GroupEnd : public Node {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/lld/Core/
Node.h 1 //===- lld/Core/Node.h - Input file class -----------------------*- C++ -*-===//
25 // A Node represents a FileNode or other type of Node. In the latter case,
26 // the node contains meta information about the input file list.
27 // Currently only GroupEnd node is defined as a meta node.
28 class Node {
32 explicit Node(Kind type) : _kind(type) {}
33 virtual ~Node() = default;
43 class GroupEnd : public Node {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/lld/Core/
Node.h 1 //===- lld/Core/Node.h - Input file class -----------------------*- C++ -*-===//
25 // A Node represents a FileNode or other type of Node. In the latter case,
26 // the node contains meta information about the input file list.
27 // Currently only GroupEnd node is defined as a meta node.
28 class Node {
32 explicit Node(Kind type) : _kind(type) {}
33 virtual ~Node() = default;
43 class GroupEnd : public Node {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/lld/Core/
Node.h 1 //===- lld/Core/Node.h - Input file class -----------------------*- C++ -*-===//
25 // A Node represents a FileNode or other type of Node. In the latter case,
26 // the node contains meta information about the input file list.
27 // Currently only GroupEnd node is defined as a meta node.
28 class Node {
32 explicit Node(Kind type) : _kind(type) {}
33 virtual ~Node() = default;
43 class GroupEnd : public Node {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/lld/Core/
Node.h 1 //===- lld/Core/Node.h - Input file class -----------------------*- C++ -*-===//
25 // A Node represents a FileNode or other type of Node. In the latter case,
26 // the node contains meta information about the input file list.
27 // Currently only GroupEnd node is defined as a meta node.
28 class Node {
32 explicit Node(Kind type) : _kind(type) {}
33 virtual ~Node() = default;
43 class GroupEnd : public Node {
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue16008.go 16 _ = UpdateNode(tx1, &Node{
32 type Node struct {
52 func UpdateNode(tx Tx, n *Node) error {

Completed in 922 milliseconds

1 23 4 5 6 7 8 91011>>