Searched refs:nodes (Results 1 - 19 of 19) sorted by relevance

/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityCache.java31 * It is updated when windows change or nodes change.
91 * the cache will either refresh some nodes or evict some nodes.
163 LongSparseArray<AccessibilityNodeInfo> nodes = mNodeCache.get(windowId);
164 if (nodes == null) {
167 AccessibilityNodeInfo cachedInfo = nodes.get(sourceId);
190 LongSparseArray<AccessibilityNodeInfo> nodes = mNodeCache.get(windowId);
191 if (nodes == null) {
194 AccessibilityNodeInfo info = nodes.get(accessibilityNodeId);
262 LongSparseArray<AccessibilityNodeInfo> nodes
374 clearSubTreeRecursiveLocked(LongSparseArray<AccessibilityNodeInfo> nodes, long rootNodeId) argument
[all...]
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
H A DKCode.kt27 private val nodes = arrayListOf<Any>()
46 fun isNull(kcode : KCode?) = kcode == null || (kcode.nodes.isEmpty() && (kcode.s == null || kcode.s.trim() == ""))
70 nodes.add(c)
78 nodes.add(c)
95 nodes.add(Appendix(glue, c!!))
117 val newlineFirstNode = s != null || (nodes.isNotEmpty() && nodes.first() is Appendix)
119 nodes.forEach { when(it) {
/frameworks/base/libs/hwui/
H A DRenderNode.h262 static size_t findNonNegativeIndex(const std::vector<ZDrawRenderNodeOpPair>& nodes) { argument
263 for (size_t i = 0; i < nodes.size(); i++) {
264 if (nodes[i].key >= 0.0f) return i;
266 return nodes.size();
H A DFrameBuilder.cpp134 void FrameBuilder::deferRenderNodeScene(const std::vector< sp<RenderNode> >& nodes, argument
136 if (nodes.size() < 1) return;
137 if (nodes.size() == 1) {
138 if (!nodes[0]->nothingToDraw()) {
139 deferRenderNode(*nodes[0]);
143 // It there are multiple render nodes, they are laid out as follows:
146 // #2 - additional overlay nodes
152 // Additional nodes will be drawn on top with no particular clipping semantics.
159 const Rect backdrop = nodeBounds(*nodes[0]);
164 if (!content.contains(backdrop) && !nodes[
[all...]
H A DFrameBuilder.h76 void deferRenderNodeScene(const std::vector< sp<RenderNode> >& nodes,
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
H A DOSUClient.java454 Collection<OMANode> nodes = null;
459 nodes = Arrays.asList(node);
465 nodes = root.getChildren();
468 nodes = Arrays.asList(root.getChild(name));
472 if (nodes == null) {
477 for (OMANode node : nodes) {
/frameworks/minikin/tools/
H A Dmk_hyb_file.py194 nodes = Freelist()
204 if (ix >= 0 and nodes.is_free(ix) and
210 nodes.is_free(ix) # actually don't need nodes at all when use_node,
213 ix, _ = nodes.next(0)
216 nodes.use(ix)
225 # return list of nodes in bfs order
242 # suffix compression - convert the trie into an acyclic digraph, merging nodes when
265 print(len(uniques), 'unique nodes,', len(self.bfs_order), 'total')
/frameworks/base/core/java/android/widget/
H A DRelativeLayout.java1695 * List of nodes in the graph. Each node is identified by its
1710 final ArrayList<Node> nodes = mNodes;
1711 final int count = nodes.size();
1714 nodes.get(i).release();
1716 nodes.clear();
1789 final ArrayList<Node> nodes = mNodes;
1790 final int count = nodes.size();
1795 final Node node = nodes.get(i);
1802 final Node node = nodes.get(i);
1830 // Finds all the roots in the graph: all nodes wit
[all...]
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DPathParser.java64 PathDataNode[] nodes = createNodesFromPathData(pathData);
65 if (nodes != null) {
67 PathDataNode.nodesToPath(nodes, path);
H A DVectorDrawableCompat.java1557 public String NodesToString(PathParser.PathDataNode[] nodes) { argument
1559 for (int i = 0; i < nodes.length; i++) {
1560 result += nodes[i].type + ":";
1561 float[] params = nodes[i].params;
1604 public void setPathData(PathParser.PathDataNode[] nodes) { argument
1605 if (!PathParser.canMorph(mNodes, nodes)) {
1607 mNodes = PathParser.deepCopyNodes(nodes);
1609 PathParser.updateNodes(mNodes, nodes);
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DPropertyNodesVerifierElem.java215 for (List<PropertyNode> nodes : mOrderedNodeMap.values()) {
216 for (PropertyNode node : nodes) {
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/
H A DVectorDrawable_Delegate.java996 private void setPathData(PathParser_Delegate.PathDataNode[] nodes) { argument
997 if (!PathParser_Delegate.canMorph(mNodes, nodes)) {
999 mNodes = PathParser_Delegate.deepCopyNodes(nodes);
1001 PathParser_Delegate.updateNodes(mNodes, nodes);
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DPathParser_Delegate.java58 private PathParser_Delegate(@NonNull PathDataNode[] nodes) { argument
59 mPathDataNodes = nodes;
107 PathDataNode[] nodes = createNodesFromPathData(pathString);
108 PathParser_Delegate delegate = new PathParser_Delegate(nodes);
/frameworks/base/libs/hwui/tests/unit/
H A DFrameBuilderTests.cpp285 std::vector<sp<RenderNode>> nodes; local
290 nodes.push_back(TestUtils::createNode(100, 100, 700, 500, // 600x400
297 nodes.push_back(TestUtils::createNode(0, 0, 800, 600,
303 nodes.push_back(TestUtils::createNode(0, 0, 800, 600,
308 for (auto& node : nodes) {
314 frameBuilder.deferRenderNodeScene(nodes, contentDrawBounds);
1575 * Construct a tree of nodes, where the root (A) has a receiver background (B), and a child (C)
/frameworks/base/core/java/android/view/
H A DAccessibilityInteractionController.java464 // focus instead fetching all provider nodes to do the search here.
873 private void enforceNodeTreeConsistent(List<AccessibilityNodeInfo> nodes) { argument
876 final int nodeCount = nodes.size();
878 AccessibilityNodeInfo node = nodes.get(i);
882 // If the nodes are a tree it does not matter from
940 // Check for disconnected nodes.
1076 // so remove these disconnected nodes form the result.
/frameworks/support/compat/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java3691 * indicating changes to live region nodes and their children.
4036 List<Object> nodes = IMPL.findAccessibilityNodeInfosByViewId(mInfo, viewId);
4037 if (nodes != null) {
4039 for (Object node : nodes) {
/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 648 milliseconds