Searched refs:node (Results 76 - 100 of 115) sorted by relevance

12345

/frameworks/base/core/java/android/view/
H A DDisplayListCanvas.java51 static DisplayListCanvas obtain(@NonNull RenderNode node) { argument
52 if (node == null) throw new IllegalArgumentException("node cannot be null");
57 canvas.mNode = node;
H A DHardwareRenderer.java363 abstract void buildLayer(RenderNode node); argument
H A DThreadedRenderer.java92 // applied as translation when updating the root render node.
365 void buildLayer(RenderNode node) { argument
366 nBuildLayer(mNativeProxy, node.getNativeDisplayList());
521 private static native void nBuildLayer(long nativeProxy, long node); argument
H A DRenderNodeAnimator.java125 * Creates a new render node animator for a field on a Paint property.
293 private void setTarget(RenderNode node) { argument
299 mTarget = node;
/frameworks/base/services/core/java/com/android/server/content/
H A DContentService.java337 ObserverCall(ObserverNode node, IContentObserver observer, boolean selfChange) { argument
338 mNode = node;
1058 // If this is the leaf node add the observer
1072 ObserverNode node = mChildren.get(i);
1073 if (node.mName.equals(segment)) {
1074 node.addObserverLocked(uri, index + 1, observer, notifyForDescendants,
1081 ObserverNode node = new ObserverNode(segment);
1082 mChildren.add(node);
1083 node.addObserverLocked(uri, index + 1, observer, notifyForDescendants,
1152 // This is the leaf node, notif
[all...]
/frameworks/base/core/java/android/widget/
H A DSimpleMonthView.java808 protected void onPopulateNodeForVirtualView(int virtualViewId, AccessibilityNodeInfo node) { argument
812 // The day is invalid, kill the node.
814 node.setContentDescription("");
815 node.setBoundsInParent(mTempRect);
816 node.setVisibleToUser(false);
820 node.setText(getDayText(virtualViewId));
821 node.setContentDescription(getDayDescription(virtualViewId));
822 node.setBoundsInParent(mTempRect);
826 node.addAction(AccessibilityAction.ACTION_CLICK);
829 node
[all...]
H A DRadialTimePickerView.java1188 // insert an extra node for it.
1207 protected void onPopulateNodeForVirtualView(int virtualViewId, AccessibilityNodeInfo node) { argument
1208 node.setClassName(getClass().getName());
1209 node.addAction(AccessibilityAction.ACTION_CLICK);
1214 node.setContentDescription(description);
1217 node.setBoundsInParent(mTempRect);
1220 node.setSelected(selected);
1224 node.setTraversalBefore(RadialTimePickerView.this, nextId);
/frameworks/base/libs/hwui/renderthread/
H A DRenderProxy.h86 ANDROID_API void buildLayer(RenderNode* node);
H A DRenderProxy.cpp289 CREATE_BRIDGE2(buildLayer, CanvasContext* context, RenderNode* node) { argument
290 args->context->buildLayer(args->node);
294 void RenderProxy::buildLayer(RenderNode* node) { argument
297 args->node = node;
/frameworks/base/core/java/android/text/
H A DAutoText.java225 // There is a node for this letter, and this is the
233 // There is a node for this letter, and we need
243 // No node for this letter yet. Make one.
245 char node = newTrieNode();
246 mTrie[herep] = node;
/frameworks/compile/libbcc/lib/Core/
H A DSource.cpp179 llvm::NamedMDNode *node = local
181 node->addOperand(llvm::MDNode::get(context, val));
/frameworks/data-binding/compilerCommon/src/main/grammar-gen/android/databinding/parser/
H A DBindingExpressionBaseListener.java488 @Override public void visitTerminal(@NotNull TerminalNode node) { } argument
494 @Override public void visitErrorNode(@NotNull ErrorNode node) { } argument
/frameworks/base/core/java/android/util/
H A DPathParser.java279 * @param node The source array of PathDataNode.
282 public static void nodesToPath(PathDataNode[] node, Path path) { argument
285 for (int i = 0; i < node.length; i++) {
286 addCommand(path, current, previousCommand, node[i].mType, node[i].mParams);
287 previousCommand = node[i].mType;
/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/graphics/drawable/static/src/android/support/graphics/drawable/
H A DPathParser.java307 * @param node The source array of PathDataNode.
310 public static void nodesToPath(PathDataNode[] node, Path path) { argument
313 for (int i = 0; i < node.length; i++) {
314 addCommand(path, current, previousCommand, node[i].mType, node[i].mParams);
315 previousCommand = node[i].mType;
/frameworks/av/services/audioflinger/
H A DEffects.cpp967 mDescriptor.uuid.clockSeq, mDescriptor.uuid.node[0], mDescriptor.uuid.node[1],
968 mDescriptor.uuid.node[2],
969 mDescriptor.uuid.node[3],mDescriptor.uuid.node[4],mDescriptor.uuid.node[5]);
974 mDescriptor.type.clockSeq, mDescriptor.type.node[0], mDescriptor.type.node[1],
975 mDescriptor.type.node[2],
976 mDescriptor.type.node[
[all...]
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyEffects.h172 size_t readParamValue(cnode *node,
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DColladaParser.java227 private void getNode(Element node, Transform parent, String indent) { argument
228 String name = node.getAttribute("name");
229 String id = node.getAttribute("id");
243 Node childNode = node.getFirstChild();
268 } else if (fieldName.equals("node")) {
276 // This will find the actual texture node, which is sometimes hidden behind a sampler
/frameworks/av/include/media/stagefright/
H A DOMXCodec.h73 const sp<IOMX> &omx, IOMX::node_id node, bool isEncoder,
234 OMXCodec(const sp<IOMX> &omx, IOMX::node_id node,
H A DACodec.h85 const sp<IOMX> &omx, IOMX::node_id node,
419 const sp<IOMX> &omx, IOMX::node_id node,
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternView.java1360 protected void onPopulateNodeForVirtualView(int virtualViewId, AccessibilityNodeInfo node) { argument
1365 node.setText(getTextForVirtualView(virtualViewId));
1366 node.setContentDescription(getTextForVirtualView(virtualViewId));
1369 node.setFocusable(true);
1372 // Mark this node of interest by making it clickable.
1373 node.addAction(AccessibilityAction.ACTION_CLICK);
1374 node.setClickable(isClickable(virtualViewId));
1381 node.setBoundsInParent(bounds);
/frameworks/base/tools/aapt2/
H A DMain.cpp326 virtual void visit(xml::Text* node) override {}
328 virtual void visit(xml::Namespace* node) override {
329 for (const auto& child : node->children) {
334 virtual void visit(xml::Element* node) override {
335 for (const xml::Attribute& attr : node->attributes) {
341 mTable->addResource(nameRef, {}, mSource.line(node->lineNumber),
347 for (const auto& child : node->children) {
/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;
/frameworks/compile/libbcc/bcinfo/
H A DMetadataExtractor.cpp41 llvm::StringRef getStringOperand(const llvm::Metadata *node) { argument
42 if (auto *mds = llvm::dyn_cast_or_null<const llvm::MDString>(node)) {
61 // Name of metadata node where pragma info resides (should be synced with
65 // Name of metadata node where exported variable names reside (should be
69 // Name of metadata node where exported function names reside (should be
73 // Name of metadata node where exported ForEach name information resides
78 // Name of metadata node where exported ForEach signature information resides
82 // Name of metadata node where RS object slot info resides (should be
88 // Name of metadata node where the checksum for this build is stored. (should
/frameworks/av/media/libstagefright/
H A DOMXCodec.cpp324 IOMX::node_id node = 0; local
350 ALOGV("Attempting to allocate OMX node '%s'", componentName);
367 status_t err = omx->allocateNode(componentName, observer, &node);
369 ALOGV("Successfully allocated OMX node '%s'", componentName);
372 omx, node, quirks, flags,
1421 const sp<IOMX> &omx, IOMX::node_id node,
1429 mOMXLivesLocally(omx->livesLocally(node, getpid())),
1430 mNode(node),
1462 const sp<IOMX> &omx, IOMX::node_id node, bool isEncoder,
1543 node, OMX_IndexParamStandardComponentRol
1420 OMXCodec( const sp<IOMX> &omx, IOMX::node_id node, uint32_t quirks, uint32_t flags, bool isEncoder, const char *mime, const char *componentName, const sp<MediaSource> &source, const sp<ANativeWindow> &nativeWindow) argument
1461 setComponentRole( const sp<IOMX> &omx, IOMX::node_id node, bool isEncoder, const char *mime) argument
4301 IOMX::node_id node; local
[all...]

Completed in 1105 milliseconds

12345