Searched defs:Node (Results 1 - 24 of 24) sorted by relevance

/frameworks/base/tools/aapt2/
H A DDominatorTree.h53 class Node { class in class:aapt::DominatorTree
55 explicit Node(ResourceConfigValue* value = nullptr, Node* parent = nullptr) function in class:aapt::DominatorTree::Node
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_;
76 std::vector<std::unique_ptr<Node>> children
[all...]
/frameworks/base/tools/incident_report/
H A Dgeneric_message.h45 struct Node { struct in class:GenericMessage
61 typedef multimap<int32_t,Node>::const_iterator const_iterator;
67 multimap<int,Node> mNodes;
/frameworks/compile/mclinker/unittests/
H A DGCFactoryListTraitsTest.h30 * \brief Node used in the test
35 class Node : public llvm::ilist_node<Node> { class in class:mcldtest::GCFactoryListTraitsTest
43 Node() : m_Init(0), m_Value(0) {} function in class:mcldtest::GCFactoryListTraitsTest::Node
45 Node(unsigned pInit) : m_Init(pInit), m_Value(pInit) {} function in class:mcldtest::GCFactoryListTraitsTest::Node
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(pIni
[all...]
/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/native/vulkan/libvulkan/
H A Ddebug_report.h36 struct Node;
45 Node* AddCallback(const VkDebugReportCallbackCreateInfoEXT& info,
48 void RemoveCallback(Node* node, const VkAllocationCallbacks& allocator);
58 static Node* FromHandle(VkDebugReportCallbackEXT handle) {
59 return reinterpret_cast<Node*>(uintptr_t(handle));
62 static VkDebugReportCallbackEXT GetHandle(const Node* node) {
66 static VkDebugReportCallbackEXT GetDriverHandle(const Node* node) {
71 struct Node { struct in class:vulkan::driver::DebugReportCallbackList
72 Node* next;
83 Node head
[all...]
/frameworks/rs/
H A DrsScriptGroup.h57 class Node { class in class:android::renderscript::ScriptGroup
59 explicit Node(Script *);
78 std::vector<Node *> mNodes;
98 bool calcOrderRecurse(Node *n, int depth);
100 Node * findNode(Script *s) const;
H A DrsScriptGroup.cpp54 ScriptGroup::Node::Node(Script *s) { function in class:android::renderscript::ScriptGroup::Node
60 ScriptGroup::Node * ScriptGroup::findNode(Script *s) const {
63 Node *n = mNodes[ct];
74 bool ScriptGroup::calcOrderRecurse(Node *n, int depth) {
83 Node *nt = NULL;
99 bool operator() (const ScriptGroup::Node* lhs,
100 const ScriptGroup::Node* rhs) {
111 Node *n = findNode(k->mScript);
114 n = new Node(
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/text/
H A DOptimizingLineBreaker.java56 Node[] opt = new Node[numBreaks];
57 opt[0] = new Node(-1, 0, 0, 0, false);
58 opt[numBreaks - 1] = new Node(-1, 0, 0, 0, false);
67 Node bestBreak = null;
85 bestBreak = new Node(pos, opt[pos].mPrevCount + 1, demerits,
113 opt[breakIndex] = new Node(lastBreak, lines + 1, 0 /*doesn't matter*/,
244 private static class Node { class in class:OptimizingLineBreaker
253 public Node(int prev, int prevCount, float demerits, float width, boolean hasTabs) { method in class:OptimizingLineBreaker.Node
/frameworks/compile/mclinker/include/mcld/ADT/
H A DTreeBase.h99 class Node : public NodeBase { class in namespace:mcld
107 Node() : NodeBase(), data(NULL) {} function in class:mcld::Node
109 explicit Node(const value_type& pValue) : NodeBase(), data(&pValue) {} function in class:mcld::Node
/frameworks/minikin/tools/
H A Dmk_hyb_file.py49 class Node: class in inherits:
129 self.root = Node()
184 new_node = Node()
/frameworks/support/emoji/core/src/android/support/text/emoji/
H A DMetadataRepo.java59 private final Node mRootNode;
75 mRootNode = new Node(DEFAULT_ROOT_SIZE);
89 mRootNode = new Node(DEFAULT_ROOT_SIZE);
163 Node getRootNode() {
205 static class Node { class in class:MetadataRepo
206 private SparseArray<Node> mChildren;
209 private Node() { method in class:MetadataRepo.Node
212 private Node(final int defaultChildrenSize) { method in class:MetadataRepo.Node
216 Node get(final int key) {
225 Node nod
[all...]
/frameworks/base/tools/aapt2/xml/
H A DXmlDom.h43 class Node { class in namespace:aapt::xml
45 Node* parent = nullptr;
49 std::vector<std::unique_ptr<Node>> children;
51 virtual ~Node() = default;
53 void AppendChild(std::unique_ptr<Node> child);
54 void InsertChild(size_t index, std::unique_ptr<Node> child);
59 // Clones the Node subtree, using the given function to decide how to clone an Element.
60 virtual std::unique_ptr<Node> Clone(const ElementCloneFunc& el_cloner) = 0;
65 * subclass of Node.
68 class BaseNode : public Node {
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DLegacyPasspointConfigParser.java101 private abstract static class Node { class in class:LegacyPasspointConfigParser
103 Node(String name) { method in class:LegacyPasspointConfigParser.Node
119 public abstract List<Node> getChildren();
132 private static class InternalNode extends Node {
133 private final List<Node> mChildren;
134 InternalNode(String name, List<Node> children) {
140 public List<Node> getChildren() {
153 private static class LeafNode extends Node {
161 public List<Node> getChildren() {
199 // Convert the configuration data to a management tree represented by a root {@link Node}
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DScriptGroup.java74 static class Node { class in class:ScriptGroup
81 Node mNext;
83 Node(Script s) { method in class:ScriptGroup.Node
556 private ArrayList<Node> mNodes = new ArrayList<Node>();
572 private void validateCycle(Node target, Node original) {
576 Node tn = findNode(cl.mToK.mScript);
583 Node tn = findNode(cl.mToF.mScript);
599 private void validateDAGRecurse(Node
[all...]
/frameworks/compile/libbcc/bcinfo/
H A DMetadataExtractor.cpp510 llvm::MDNode *Node = ReduceMetadata->getOperand(i); local
511 if (!Node || Node->getNumOperands() < 3) {
516 TmpReduceList[i].mReduceName = createStringFromValue(Node->getOperand(0));
519 Node->getOperand(1))) {
524 llvm::MDNode *AccumulatorNode = llvm::dyn_cast<llvm::MDNode>(Node->getOperand(2));
549 TmpReduceList[i].mInitializerName = createStringFromOptionalValue(Node, 3);
550 TmpReduceList[i].mCombinerName = createStringFromOptionalValue(Node, 4);
551 TmpReduceList[i].mOutConverterName = createStringFromOptionalValue(Node, 5);
552 TmpReduceList[i].mHalterName = createStringFromOptionalValue(Node,
[all...]
/frameworks/base/libs/hwui/
H A DVectorDrawable.h97 class ANDROID_API Node { class in namespace:android::uirenderer::VectorDrawable
101 explicit Properties(Node* node) : mNode(node) {}
106 Node* mNode;
108 Node(const Node& node) { function in class:android::uirenderer::VectorDrawable::Node
111 Node() {} function in class:android::uirenderer::VectorDrawable::Node
121 virtual ~Node(){}
128 class ANDROID_API Path : public Node {
142 explicit PathProperties(Node* node) : Properties(node) {}
222 explicit FullPathProperties(Node* mNod
[all...]
/frameworks/base/core/java/android/animation/
H A DAnimatorSet.java74 private ArrayList<Node> mPlayingSet = new ArrayList<Node>();
79 * to a single node representing that Animator, not create a new Node
82 private ArrayMap<Animator, Node> mNodeMap = new ArrayMap<Animator, Node>();
94 private ArrayList<Node> mNodes = new ArrayList<Node>();
118 private Node mRootNode = new Node(mDelayAnim);
306 Node nod
1756 private static class Node implements Cloneable { class in class:AnimatorSet
1802 public Node(Animator animation) { method in class:AnimatorSet.Node
[all...]
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DExpr.java611 private Node mCalculationPaths = null;
616 protected Node getAllCalculationPaths() {
618 Node node = new Node();
627 Node cond = new Node();
791 static class Node { class in class:Expr
794 List<Node> mParents = new ArrayList<Node>();
815 for (Node paren
[all...]
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
H A DTimePickerDialog.java103 private Node mLegalTimesTree;
605 Node node = mLegalTimesTree;
823 mLegalTimesTree = new Node();
826 Node minuteFirstDigit = new Node(k0, k1, k2, k3, k4, k5);
827 Node minuteSecondDigit = new Node(k0, k1, k2, k3, k4, k5, k6, k7, k8, k9);
832 Node firstDigit = new Node(k0, k1);
836 Node secondDigi
942 private class Node { class in class:TimePickerDialog
946 public Node(int... legalKeys) { method in class:TimePickerDialog.Node
[all...]
/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DScriptGroup.java51 private ArrayList<Node> mNodes = new ArrayList<Node>();
82 static class Node { class in class:ScriptGroup
91 Node mNext;
93 Node(Script s) { method in class:ScriptGroup.Node
536 Node n = mNodes.get(ct);
556 for (Node node : mNodes) {
620 private ArrayList<Node> mNodes = new ArrayList<Node>();
637 private void validateCycle(Node targe
[all...]
/frameworks/base/core/java/android/widget/
H A DRelativeLayout.java1008 DependencyGraph.Node node = mGraph.mKeyNodes.get(id);
1705 private ArrayList<Node> mNodes = new ArrayList<Node>();
1711 private SparseArray<Node> mKeyNodes = new SparseArray<Node>();
1717 private ArrayDeque<Node> mRoots = new ArrayDeque<Node>();
1723 final ArrayList<Node> nodes = mNodes;
1742 final Node node = Node
1858 static class Node { class in class:RelativeLayout.DependencyGraph
[all...]
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 751 milliseconds