Searched refs:Node (Results 1 - 18 of 18) sorted by relevance

/frameworks/compile/mclinker/unittests/
H A DGCFactoryListTraitsTest.h32 * \brief Node used in the test
37 class Node : public llvm::ilist_node<Node> class in class:mcldtest::GCFactoryListTraitsTest
45 Node() : m_Init(0), m_Value(0) { } function in class:mcldtest::GCFactoryListTraitsTest::Node
47 Node(unsigned pInit) : m_Init(pInit), m_Value(pInit) { } function in class:mcldtest::GCFactoryListTraitsTest::Node
60 class NodeFactory : public mcld::GCFactory<Node, 0> {
62 NodeFactory() : mcld::GCFactory<Node, 0>(16) { }
64 Node *produce(unsigned pInit) {
65 Node *result = allocate();
66 new (result) Node(pIni
[all...]
H A DGCFactoryListTraitsTest.cpp18 m_pNodesAlloc = new Node* [10];
66 llvm::iplist<Node>::const_iterator it = m_pNodeList.begin(); \
95 Node *NewNode = m_NodeFactory.produce(11);
104 for (llvm::iplist<Node>::const_iterator I = m_pNodeList.begin(),
/frameworks/base/core/tests/benchmarks/src/com/android/internal/util/
H A DIndentingPrintWriterBenchmark.java33 private Node mSimple;
34 private Node mComplex;
42 final Node manyChildren = Node.build("ManyChildren", Node.build("1"), Node.build("2"),
43 Node.build("3"), Node.build("4"), Node.build("5"), Node
99 private static class Node { class in class:IndentingPrintWriterBenchmark
[all...]
/frameworks/base/core/java/android/animation/
H A DAnimatorSet.java68 * to a single node representing that Animator, not create a new Node
71 private HashMap<Animator, Node> mNodeMap = new HashMap<Animator, Node>();
78 private ArrayList<Node> mNodes = new ArrayList<Node>();
85 private ArrayList<Node> mSortedNodes = new ArrayList<Node>();
216 for (Node node : mNodes) {
231 for (Node node : mNodes) {
319 for (Node nod
904 private static class Node implements Cloneable { class in class:AnimatorSet
953 public Node(Animator animation) { method in class:AnimatorSet.Node
[all...]
/frameworks/rs/
H A DrsScriptGroup.h48 class Node { class in class:android::renderscript::ScriptGroup
50 Node(Script *);
69 Vector<Node *> mNodes;
103 bool calcOrderRecurse(Node *n, int depth);
105 Node * findNode(Script *s) const;
H A DrsScriptGroup.cpp40 ScriptGroup::Node::Node(Script *s) { function in class:ScriptGroup::Node
46 ScriptGroup::Node * ScriptGroup::findNode(Script *s) const {
49 Node *n = mNodes[ct];
59 bool ScriptGroup::calcOrderRecurse(Node *n, int depth) {
67 Node *nt = NULL;
82 static int CompareNodeForSort(ScriptGroup::Node *const* lhs,
83 ScriptGroup::Node *const* rhs) {
92 bool operator() (const ScriptGroup::Node* lhs,
93 const ScriptGroup::Node* rh
[all...]
/frameworks/base/graphics/java/android/renderscript/
H A DScriptGroup.java77 static class Node { class in class:ScriptGroup
84 Node mNext;
86 Node(Script s) { method in class:ScriptGroup.Node
171 private ArrayList<Node> mNodes = new ArrayList<Node>();
187 private void validateCycle(Node target, Node original) {
191 Node tn = findNode(cl.mToK.mScript);
198 Node tn = findNode(cl.mToF.mScript);
214 private void validateDAGRecurse(Node
[all...]
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DScriptGroup.java78 static class Node { class in class:ScriptGroup
85 Node mNext;
87 Node(Script s) { method in class:ScriptGroup.Node
172 private ArrayList<Node> mNodes = new ArrayList<Node>();
193 private void validateCycle(Node target, Node original) {
197 Node tn = findNode(cl.mToK.mScript);
204 Node tn = findNode(cl.mToF.mScript);
220 private void validateDAGRecurse(Node
[all...]
/frameworks/compile/mclinker/include/mcld/ADT/
H A DTreeAllocator.h20 * \brief NodeFactory manages the creation and destruction of mcld::Node.
32 class NodeFactory : public GCFactory<Node<DataType>, 64>
35 typedef GCFactory<Node<DataType>, 64> Alloc;
38 typedef Node<DataType> NodeType;
H A DTreeBase.h111 class Node : public NodeBase class in namespace:mcld
120 Node() function in class:mcld::Node
124 Node(const value_type& pValue) function in class:mcld::Node
H A DBinTree.h110 typedef Node<value_type> node_type;
198 typedef Node<value_type> node_type;
269 typedef Node<DataType> NodeType;
381 typedef Node<value_type> node_type;
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
H A DTimePickerDialog.java97 private Node mLegalTimesTree;
535 Node node = mLegalTimesTree;
753 mLegalTimesTree = new Node();
756 Node minuteFirstDigit = new Node(k0, k1, k2, k3, k4, k5);
757 Node minuteSecondDigit = new Node(k0, k1, k2, k3, k4, k5, k6, k7, k8, k9);
762 Node firstDigit = new Node(k0, k1);
766 Node secondDigi
872 private class Node { class in class:TimePickerDialog
876 public Node(int... legalKeys) { method in class:TimePickerDialog.Node
[all...]
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/android/
H A DBridgeXmlBlockParserTest.java21 import org.w3c.dom.Node;
82 private void dump(Node node, String prefix) {
83 Node n;
/frameworks/base/core/java/android/widget/
H A DRelativeLayout.java1012 DependencyGraph.Node node = mGraph.mKeyNodes.get(id);
1613 private ArrayList<Node> mNodes = new ArrayList<Node>();
1619 private SparseArray<Node> mKeyNodes = new SparseArray<Node>();
1625 private ArrayDeque<Node> mRoots = new ArrayDeque<Node>();
1631 final ArrayList<Node> nodes = mNodes;
1650 final Node node = Node
1819 static class Node { class in class:RelativeLayout.DependencyGraph
[all...]
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DColladaParser.java35 import org.w3c.dom.Node;
243 Node childNode = node.getFirstChild();
245 if (childNode.getNodeType() == Node.ELEMENT_NODE) {
309 Node paramNode = fx.getFirstChild();
311 if (paramNode.getNodeType() == Node.ELEMENT_NODE) {
314 Node typeNode = paramNode.getFirstChild();
315 while (typeNode != null && typeNode.getNodeType() != Node.ELEMENT_NODE) {
490 Node childNode = scene.getFirstChild();
492 if (childNode.getNodeType() == Node.ELEMENT_NODE) {
/frameworks/rs/cpu_ref/
H A DrsCpuScriptGroup.cpp115 ScriptGroup::Node *n = mSG->mNodes[ct];
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp2103 Value *Node = MDValueList.getValueFwdRef(Record[i+1]);
2104 Inst->setMetadata(I->second, cast<MDNode>(Node));
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.cpp2365 Value *Node = MDValueList.getValueFwdRef(Record[i+1]);
2366 Inst->setMetadata(I->second, cast<MDNode>(Node));

Completed in 786 milliseconds