Searched refs:node (Results 151 - 175 of 206) sorted by relevance

123456789

/frameworks/base/cmds/statsd/src/logd/
H A DLogEvent.cpp149 bool LogEvent::write(const AttributionNodeInternal& node) { argument
154 if (android_log_write_int32(mContext, node.uid()) < 0) {
157 if (android_log_write_string8(mContext, node.tag().c_str()) < 0) {
H A DLogEvent.h112 bool write(const AttributionNodeInternal& node);
/frameworks/base/libs/hwui/
H A DDisplayList.h118 virtual bool reuseDisplayList(RenderNode* node, renderthread::CanvasContext* context) { argument
/frameworks/minikin/libs/minikin/
H A DHyphenator.cpp365 uint32_t node = 0; // index into Trie table local
368 uint32_t entry = trie->data[node + c];
370 node = (entry & link_mask) >> link_shift;
374 uint32_t pat_ix = trie->data[node] >> pattern_shift;
/frameworks/base/core/java/android/text/
H A DAutoText.java224 // There is a node for this letter, and this is the
232 // There is a node for this letter, and we need
242 // No node for this letter yet. Make one.
244 char node = newTrieNode();
245 mTrie[herep] = node;
/frameworks/compile/libbcc/lib/
H A DSource.cpp72 bccAssert(wrapperMDNode->getNumOperands() == 0); // expect to have just now created this node
231 llvm::NamedMDNode *node = local
233 node->addOperand(llvm::MDNode::get(context, val));
/frameworks/data-binding/compilerCommon/src/main/grammar-gen/android/databinding/parser/
H A DBindingExpressionBaseListener.java512 @Override public void visitTerminal(TerminalNode node) { } argument
518 @Override public void visitErrorNode(ErrorNode node) { } argument
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DMonthView.java743 AccessibilityNodeInfoCompat node) {
746 node.setContentDescription(getItemDescription(virtualViewId));
747 node.setBoundsInParent(mTempRect);
748 node.addAction(AccessibilityNodeInfo.ACTION_CLICK);
751 node.setSelected(true);
742 onPopulateNodeForVirtualView(int virtualViewId, AccessibilityNodeInfoCompat node) argument
/frameworks/support/compat/src/main/java/androidx/core/graphics/
H A DPathParser.java333 * @param node The source array of PathDataNode.
336 public static void nodesToPath(PathDataNode[] node, Path path) { argument
339 for (int i = 0; i < node.length; i++) {
340 addCommand(path, current, previousCommand, node[i].mType, node[i].mParams);
341 previousCommand = node[i].mType;
/frameworks/support/emoji/core/src/main/java/androidx/emoji/text/
H A DEmojiProcessor.java495 * Pointer to the node after last codepoint.
500 * The node where ACTION_FLUSH is called. Required since after flush action is
536 MetadataRepo.Node node = mCurrentNode.get(codePoint);
539 if (node != null) {
540 mCurrentNode = node;
569 if (node == null) {
573 mCurrentNode = node;
593 * @return the metadata node when ACTION_FLUSH is returned
600 * @return current pointer to the metadata node in the trie
/frameworks/base/libs/hwui/tests/unit/
H A DRenderNodeDrawableTests.cpp68 auto node = TestUtils::createSkiaNode( local
74 canvas->drawRenderNode(node.get()); // canvas takes reference/sole ownership
80 auto node = TestUtils::createSkiaNode( local
88 canvas->drawRenderNode(node.get()); // canvas takes reference/sole ownership
123 canvas.insertReorderBarrier(true); // reorder a node ahead of drawrect op
151 // attach a layer to the render node
244 case 0: // this is node "B"
250 case 1: // this is node "P"
257 case 2: // this is node "C"
758 // having a node tha
946 auto node = TestUtils::createSkiaNode(0, 0, CANVAS_WIDTH, CANVAS_HEIGHT, local
1176 auto node = TestUtils::createSkiaNode(0, 0, CANVAS_WIDTH, CANVAS_HEIGHT, local
[all...]
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyEffects.h173 size_t readParamValue(cnode *node,
/frameworks/base/services/core/java/com/android/server/content/
H A DContentService.java498 ObserverCall(ObserverNode node, IContentObserver observer, boolean selfChange, int observerUserId) { argument
499 mNode = node;
1442 // If this is the leaf node add the observer
1456 ObserverNode node = mChildren.get(i);
1457 if (node.mName.equals(segment)) {
1458 node.addObserverLocked(uri, index + 1, observer, notifyForDescendants,
1465 ObserverNode node = new ObserverNode(segment);
1466 mChildren.add(node);
1467 node.addObserverLocked(uri, index + 1, observer, notifyForDescendants,
1557 // This is the leaf node, notif
[all...]
/frameworks/base/core/java/android/view/
H A DRenderNodeAnimator.java124 * Creates a new render node animator for a field on a Paint property.
288 private void setTarget(RenderNode node) { argument
294 mTarget = node;
H A DViewDebug.java532 RenderNode node = RenderNode.create("ViewDebug", null);
533 profileViewAndChildren(view, node, out, true);
534 node.destroy();
537 private static void profileViewAndChildren(View view, RenderNode node, BufferedWriter out, argument
547 ? profileViewDraw(view, node) : 0;
559 profileViewAndChildren(group.getChildAt(i), node, out, false);
594 private static long profileViewDraw(View view, RenderNode node) { argument
601 DisplayListCanvas canvas = node.start(dm.widthPixels, dm.heightPixels);
605 node.end(canvas);
/frameworks/base/core/jni/
H A Dandroid_view_ThreadedRenderer.cpp293 RenderNode* node = mPendingAnimatingRenderNodes[i].get(); local
294 context->addAnimatingRenderNode(*node);
656 RootRenderNode* node = new RootRenderNode(env); local
657 node->incStrong(0);
658 node->setName("RootRenderNode");
659 return reinterpret_cast<jlong>(node);
794 RenderNode* node = reinterpret_cast<RenderNode*>(nodePtr); local
795 proxy->buildLayer(node);
/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/certificate/
H A DCertUtils.java122 * Parses a byte array as the content of an XML file, and returns the root node of the XML file.
125 * @return the root node of the XML file
142 * Gets the text contents of certain XML child nodes, given a XML root node and a list of tags
162 * @param rootNode the root node that serves as the starting point to locate the child nodes
163 * @param nodeTags the list of tags representing the relative path from the root node
187 "The XML file must contain exactly one node with the path "
195 "The XML file must contain at least one node with the path "
207 Node node = nodeList.item(i);
209 result.add(node.getTextContent().replaceAll("\\s", ""));
/frameworks/av/services/soundtrigger/
H A DSoundTriggerHalHidl.cpp418 memcpy(halUuid->node.data(), &uuid->node[0], sizeof(uuid->node));
428 memcpy(&uuid->node[0], halUuid->node.data(), sizeof(uuid->node));
/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java1240 final RenderNode node = RenderNode.create("BitmapTemporary", null);
1241 node.setLeftTopRightBottom(0, 0, width, height);
1242 node.setClipToBounds(false);
1243 final DisplayListCanvas canvas = node.start(width, height);
1249 node.end(canvas);
1250 Bitmap bitmap = ThreadedRenderer.createHardwareBitmap(node, width, height);
/frameworks/base/tools/aapt2/xml/
H A DXmlDom.cpp71 // Drop an empty text node.
162 // See if we can just append the text to a previous text node.
392 Element* FindRootElement(Node* node) { argument
393 if (node == nullptr) {
397 while (node->parent != nullptr) {
398 node = node->parent;
400 return NodeCast<Element>(node);
/frameworks/base/core/java/android/widget/
H A DRadialTimePickerView.java1210 // insert an extra node for it.
1229 protected void onPopulateNodeForVirtualView(int virtualViewId, AccessibilityNodeInfo node) { argument
1230 node.setClassName(getClass().getName());
1231 node.addAction(AccessibilityAction.ACTION_CLICK);
1236 node.setContentDescription(description);
1239 node.setBoundsInParent(mTempRect);
1242 node.setSelected(selected);
1246 node.setTraversalBefore(RadialTimePickerView.this, nextId);
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternView.java1437 protected void onPopulateNodeForVirtualView(int virtualViewId, AccessibilityNodeInfo node) { argument
1442 node.setText(getTextForVirtualView(virtualViewId));
1443 node.setContentDescription(getTextForVirtualView(virtualViewId));
1446 node.setFocusable(true);
1449 // Mark this node of interest by making it clickable.
1450 node.addAction(AccessibilityAction.ACTION_CLICK);
1451 node.setClickable(isClickable(virtualViewId));
1458 node.setBoundsInParent(bounds);
/frameworks/base/services/autofill/java/com/android/server/autofill/
H A DSession.java414 * - proper node is focused
430 final ViewNode node = nodes[i];
431 if (node == null) {
434 "fillContextWithAllowedValuesLocked(): no node for " + viewState.id);
456 node.setAutofillOverlay(overlay);
1736 final ViewNode node = Helper.findViewNodeByAutofillId(context.getStructure(), id);
1737 if (node != null) {
1738 final AutofillValue value = node.getAutofillValue();
1760 final ViewNode node = Helper.findViewNodeByAutofillId(context.getStructure(), id);
1761 if (node !
[all...]
/frameworks/base/core/java/android/view/autofill/
H A DAutofillManager.java2358 final AccessibilityNodeInfo node = findVirtualNodeByAccessibilityId(view, virtualId);
2359 if (node == null) {
2362 if (!node.isEditable()) {
2366 node.getBoundsInScreen(newBounds);
2396 final AccessibilityNodeInfo node = findVirtualNodeByAccessibilityId(view, virtualId);
2397 if (node == null) {
2401 AutofillValue.forText(node.getText()));
2413 final AccessibilityNodeInfo node = findVirtualNodeByAccessibilityId(view, virtualId);
2414 if (node == null) {
/frameworks/base/core/java/com/google/android/util/
H A DAbstractMessageParser.java1360 TrieNode node = children.get(key);
1361 if (node == null) {
1362 node = new TrieNode(text + String.valueOf(ch));
1363 children.put(key, node);
1365 return node;

Completed in 1671 milliseconds

123456789