Searched refs:node (Results 1 - 25 of 115) sorted by relevance

12345

/frameworks/base/tools/aapt2/
H A DProguardRules.cpp36 virtual void visit(xml::Namespace* node) override {
37 for (const auto& child : node->children) {
42 virtual void visit(xml::Element* node) override {
43 if (!node->namespaceUri.empty()) {
45 node->namespaceUri);
48 std::u16string package = maybePackage.value() + u"." + node->name;
50 addClass(node->lineNumber, package);
53 } else if (util::isJavaClassName(node->name)) {
54 addClass(node->lineNumber, node
189 collectProguardRulesForManifest(const Source& source, xml::Node* node, KeepSet* keepSet) argument
195 collectProguardRules(ResourceType type, const Source& source, xml::Node* node, KeepSet* keepSet) argument
[all...]
H A Dpublic_attr_map.py31 for node in tree.iter('public'):
32 if node.get('type') == 'attr':
33 sdkLevel = findSdkLevelForAttribute(node.get('id', '0'))
35 attrs.append("{{ u\"{}\", {} }}".format(node.get('name'), sdkLevel))
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DConfigParsingUtils.cpp133 cnode *node; local
136 node = config_find(root, DEVICES_TAG);
137 if (node != NULL) {
138 node = node->first_child;
139 while (node) {
140 ALOGV("loadHwModule() loading device %s", node->name);
141 status_t tmpStatus = module->loadDevice(node);
145 node = node
187 cnode *node = config_find(root, AUDIO_HW_MODULE_TAG); local
208 cnode *node = config_find(root, GLOBAL_CONFIG_TAG); local
[all...]
H A DHwModule.cpp49 cnode *node = root->first_child; local
53 while (node) {
54 if (strcmp(node->name, SAMPLING_RATES_TAG) == 0) {
55 profile->loadSamplingRates((char *)node->value);
56 } else if (strcmp(node->name, FORMATS_TAG) == 0) {
57 profile->loadFormats((char *)node->value);
58 } else if (strcmp(node->name, CHANNELS_TAG) == 0) {
59 profile->loadInChannels((char *)node->value);
60 } else if (strcmp(node->name, DEVICES_TAG) == 0) {
61 profile->mSupportedDevices.loadDevicesFromTag((char *)node
96 cnode *node = root->first_child; local
142 cnode *node = root->first_child; local
[all...]
/frameworks/compile/mclinker/unittests/
H A DInputTreeTest.cpp68 InputTree::iterator node = m_pTestee->root(); local
69 InputTree::const_iterator const_node = node;
70 --node;
73 ASSERT_TRUE(isGroup(node));
78 --node;
80 m_pTestee->enterGroup(node, InputTree::Downward);
82 InputTree::const_iterator const_node2 = node;
84 ASSERT_FALSE(node.isRoot());
86 ASSERT_FALSE(isGroup(node));
95 InputTree::iterator node local
120 InputTree::iterator node = m_pTestee->root(); local
139 InputTree::iterator node = m_pTestee->root(); local
[all...]
H A DFactoriesTest.cpp40 NodeAlloc::NodeType* node = m_pNodeAlloc->produce(); local
43 node = m_pNodeAlloc->produce();
46 node = m_pNodeAlloc->produce();
52 NodeAlloc::NodeType* node = 0; local
54 node = m_pNodeAlloc->produce();
55 node->data = (int*)malloc(sizeof(int));
56 *(node->data) = i;
71 NodeAlloc::NodeType* node = 0; local
73 node = m_pNodeAlloc->produce();
74 node
93 NodeAlloc::NodeType* node = 0; local
117 NodeAlloc::NodeType* node = 0; local
153 NodeAlloc::NodeType* node = 0; local
[all...]
/frameworks/rs/
H A DrsMap.h57 LinkNode* node = bucket[index]; local
60 while (node != nullptr) {
61 if (node->entry.first == key) {
62 return node->entry.second;
64 prev = node;
65 node = node->next;
68 node = new LinkNode();
69 node->entry.first = key;
70 node
122 LinkNode* node; member in class:android::renderscript::Map::iterator
128 LinkNode* node = bucket[i]; local
145 LinkNode* node = bucket[index]; local
[all...]
/frameworks/av/media/libstagefright/
H A DOMXClient.cpp42 virtual bool livesLocally(node_id node, pid_t pid);
48 node_id *node);
50 virtual status_t freeNode(node_id node);
53 node_id node, OMX_COMMANDTYPE cmd, OMX_S32 param);
56 node_id node, OMX_INDEXTYPE index,
60 node_id node, OMX_INDEXTYPE index,
64 node_id node, OMX_INDEXTYPE index,
68 node_id node, OMX_INDEXTYPE index,
72 node_id node, OMX_STATETYPE* state);
75 node_id node, OMX_U3
203 livesLocally(node_id node, pid_t pid) argument
217 allocateNode( const char *name, const sp<IOMXObserver> &observer, node_id *node) argument
246 freeNode(node_id node) argument
260 sendCommand( node_id node, OMX_COMMANDTYPE cmd, OMX_S32 param) argument
265 getParameter( node_id node, OMX_INDEXTYPE index, void *params, size_t size) argument
271 setParameter( node_id node, OMX_INDEXTYPE index, const void *params, size_t size) argument
277 getConfig( node_id node, OMX_INDEXTYPE index, void *params, size_t size) argument
283 setConfig( node_id node, OMX_INDEXTYPE index, const void *params, size_t size) argument
289 getState( node_id node, OMX_STATETYPE* state) argument
294 storeMetaDataInBuffers( node_id node, OMX_U32 port_index, OMX_BOOL enable, MetadataBufferType *type) argument
299 prepareForAdaptivePlayback( node_id node, OMX_U32 port_index, OMX_BOOL enable, OMX_U32 maxFrameWidth, OMX_U32 maxFrameHeight) argument
306 configureVideoTunnelMode( node_id node, OMX_U32 portIndex, OMX_BOOL enable, OMX_U32 audioHwSync, native_handle_t **sidebandHandle) argument
313 enableGraphicBuffers( node_id node, OMX_U32 port_index, OMX_BOOL enable) argument
318 getGraphicBufferUsage( node_id node, OMX_U32 port_index, OMX_U32* usage) argument
323 useBuffer( node_id node, OMX_U32 port_index, const sp<IMemory> &params, buffer_id *buffer, OMX_U32 allottedSize) argument
329 useGraphicBuffer( node_id node, OMX_U32 port_index, const sp<GraphicBuffer> &graphicBuffer, buffer_id *buffer) argument
336 updateGraphicBufferInMeta( node_id node, OMX_U32 port_index, const sp<GraphicBuffer> &graphicBuffer, buffer_id buffer) argument
343 createInputSurface( node_id node, OMX_U32 port_index, sp<IGraphicBufferProducer> *bufferProducer, MetadataBufferType *type) argument
359 setInputSurface( node_id node, OMX_U32 port_index, const sp<IGraphicBufferConsumer> &bufferConsumer, MetadataBufferType *type) argument
365 signalEndOfInputStream(node_id node) argument
369 allocateBuffer( node_id node, OMX_U32 port_index, size_t size, buffer_id *buffer, void **buffer_data) argument
376 allocateBufferWithBackup( node_id node, OMX_U32 port_index, const sp<IMemory> &params, buffer_id *buffer, OMX_U32 allottedSize) argument
383 freeBuffer( node_id node, OMX_U32 port_index, buffer_id buffer) argument
388 fillBuffer(node_id node, buffer_id buffer, int fenceFd) argument
392 emptyBuffer( node_id node, buffer_id buffer, OMX_U32 range_offset, OMX_U32 range_length, OMX_U32 flags, OMX_TICKS timestamp, int fenceFd) argument
401 getExtensionIndex( node_id node, const char *parameter_name, OMX_INDEXTYPE *index) argument
408 setInternalOption( node_id node, OMX_U32 port_index, InternalOptionType type, const void *data, size_t size) argument
[all...]
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiObject.java148 AccessibilityNodeInfo node = findAccessibilityNodeInfo(mConfig.getWaitForSelectorTimeout());
149 if(node == null) {
152 return node.getChildCount();
164 AccessibilityNodeInfo node = null;
168 node = getQueryController().findAccessibilityNodeInfo(getSelector());
169 if (node != null) {
180 return node;
332 * @param node
333 * @return null if node is null, else a Rect containing visible bounds
335 private Rect getVisibleBounds(AccessibilityNodeInfo node) { argument
373 getScrollableParent(AccessibilityNodeInfo node) argument
[all...]
H A DAccessibilityNodeInfoDumper.java47 * @param root The root accessibility node.
69 * @param root The root accessibility node.
101 private static void dumpNodeRec(AccessibilityNodeInfo node, XmlSerializer serializer,int index, argument
103 serializer.startTag("", "node");
104 if (!nafExcludedClass(node) && !nafCheck(node))
107 serializer.attribute("", "text", safeCharSeqToString(node.getText()));
108 serializer.attribute("", "resource-id", safeCharSeqToString(node.getViewIdResourceName()));
109 serializer.attribute("", "class", safeCharSeqToString(node.getClassName()));
110 serializer.attribute("", "package", safeCharSeqToString(node
150 nafExcludedClass(AccessibilityNodeInfo node) argument
169 nafCheck(AccessibilityNodeInfo node) argument
195 childNafCheck(AccessibilityNodeInfo node) argument
[all...]
H A DAccessibilityNodeInfoHelper.java28 * Returns the node's bounds clipped to the size of the display
30 * @param node
33 * @return null if node is null, else a Rect containing visible bounds
35 static Rect getVisibleBoundsInScreen(AccessibilityNodeInfo node, int width, int height) { argument
36 if (node == null) {
39 // targeted node's bounds
41 node.getBoundsInScreen(nodeRect);
/frameworks/av/media/libstagefright/include/
H A DOMX.h34 virtual bool livesLocally(node_id node, pid_t pid);
39 const char *name, const sp<IOMXObserver> &observer, node_id *node);
41 virtual status_t freeNode(node_id node);
44 node_id node, OMX_COMMANDTYPE cmd, OMX_S32 param);
47 node_id node, OMX_INDEXTYPE index,
51 node_id node, OMX_INDEXTYPE index,
55 node_id node, OMX_INDEXTYPE index,
59 node_id node, OMX_INDEXTYPE index,
63 node_id node, OMX_STATETYPE* state);
66 node_id node, OMX_U3
[all...]
/frameworks/av/media/libstagefright/omx/
H A DOMX.cpp128 ALOGV("Would have dispatched a message to a node that's already gone.");
197 bool OMX::livesLocally(node_id /* node */, pid_t pid) {
230 const char *name, const sp<IOMXObserver> &observer, node_id *node) {
233 *node = 0;
250 *node = makeNodeID(instance);
251 mDispatchers.add(*node, new CallbackDispatcher(instance));
253 instance->setHandle(*node, handle);
261 status_t OMX::freeNode(node_id node) { argument
262 OMXNodeInstance *instance = findInstance(node);
269 // same time that a client attempts to free the node explicitl
229 allocateNode( const char *name, const sp<IOMXObserver> &observer, node_id *node) argument
289 sendCommand( node_id node, OMX_COMMANDTYPE cmd, OMX_S32 param) argument
294 getParameter( node_id node, OMX_INDEXTYPE index, void *params, size_t size) argument
302 setParameter( node_id node, OMX_INDEXTYPE index, const void *params, size_t size) argument
310 getConfig( node_id node, OMX_INDEXTYPE index, void *params, size_t size) argument
317 setConfig( node_id node, OMX_INDEXTYPE index, const void *params, size_t size) argument
324 getState( node_id node, OMX_STATETYPE* state) argument
330 enableGraphicBuffers( node_id node, OMX_U32 port_index, OMX_BOOL enable) argument
335 getGraphicBufferUsage( node_id node, OMX_U32 port_index, OMX_U32* usage) argument
340 storeMetaDataInBuffers( node_id node, OMX_U32 port_index, OMX_BOOL enable, MetadataBufferType *type) argument
345 prepareForAdaptivePlayback( node_id node, OMX_U32 portIndex, OMX_BOOL enable, OMX_U32 maxFrameWidth, OMX_U32 maxFrameHeight) argument
352 configureVideoTunnelMode( node_id node, OMX_U32 portIndex, OMX_BOOL tunneled, OMX_U32 audioHwSync, native_handle_t **sidebandHandle) argument
359 useBuffer( node_id node, OMX_U32 port_index, const sp<IMemory> &params, buffer_id *buffer, OMX_U32 allottedSize) argument
366 useGraphicBuffer( node_id node, OMX_U32 port_index, const sp<GraphicBuffer> &graphicBuffer, buffer_id *buffer) argument
373 updateGraphicBufferInMeta( node_id node, OMX_U32 port_index, const sp<GraphicBuffer> &graphicBuffer, buffer_id buffer) argument
380 createInputSurface( node_id node, OMX_U32 port_index, sp<IGraphicBufferProducer> *bufferProducer, MetadataBufferType *type) argument
394 setInputSurface( node_id node, OMX_U32 port_index, const sp<IGraphicBufferConsumer> &bufferConsumer, MetadataBufferType *type) argument
401 signalEndOfInputStream(node_id node) argument
405 allocateBuffer( node_id node, OMX_U32 port_index, size_t size, buffer_id *buffer, void **buffer_data) argument
412 allocateBufferWithBackup( node_id node, OMX_U32 port_index, const sp<IMemory> &params, buffer_id *buffer, OMX_U32 allottedSize) argument
419 freeBuffer(node_id node, OMX_U32 port_index, buffer_id buffer) argument
424 fillBuffer(node_id node, buffer_id buffer, int fenceFd) argument
428 emptyBuffer( node_id node, buffer_id buffer, OMX_U32 range_offset, OMX_U32 range_length, OMX_U32 flags, OMX_TICKS timestamp, int fenceFd) argument
437 getExtensionIndex( node_id node, const char *parameter_name, OMX_INDEXTYPE *index) argument
445 setInternalOption( node_id node, OMX_U32 port_index, InternalOptionType type, const void *data, size_t size) argument
454 OnEvent( node_id node, OMX_IN OMX_EVENTTYPE eEvent, OMX_IN OMX_U32 nData1, OMX_IN OMX_U32 nData2, OMX_IN OMX_PTR pEventData) argument
501 OnEmptyBufferDone( node_id node, buffer_id buffer, OMX_IN OMX_BUFFERHEADERTYPE *pBuffer, int fenceFd) argument
516 OnFillBufferDone( node_id node, buffer_id buffer, OMX_IN OMX_BUFFERHEADERTYPE *pBuffer, int fenceFd) argument
538 node_id node = (node_id)++mNodeCounter; local
544 findInstance(node_id node) argument
552 findDispatcher(node_id node) argument
560 invalidateNodeID(node_id node) argument
565 invalidateNodeID_l(node_id node) argument
[all...]
/frameworks/base/core/java/android/animation/
H A DAnimatorSet.java69 * to a single node representing that Animator, not create a new Node
219 for (Node node : mNodes) {
220 childList.add(node.animation);
234 for (Node node : mNodes) {
235 Animator animation = node.animation;
335 for (Node node : mSortedNodes) {
336 node.animation.cancel();
361 for (Node node : mSortedNodes) {
365 node.animation.addListener(mSetListener);
372 for (Node node
734 DependencyListener(AnimatorSet animatorSet, Node node, int rule) argument
998 public Node node; field in class:AnimatorSet.Dependency
1003 Dependency(Node node, int rule) argument
[all...]
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyEffects.cpp393 size_t AudioPolicyEffects::readParamValue(cnode *node, argument
398 if (strncmp(node->name, SHORT_TAG, sizeof(SHORT_TAG) + 1) == 0) {
400 *(short *)((char *)param + pos) = (short)atoi(node->value);
403 } else if (strncmp(node->name, INT_TAG, sizeof(INT_TAG) + 1) == 0) {
405 *(int *)((char *)param + pos) = atoi(node->value);
408 } else if (strncmp(node->name, FLOAT_TAG, sizeof(FLOAT_TAG) + 1) == 0) {
410 *(float *)((char *)param + pos) = (float)atof(node->value);
413 } else if (strncmp(node->name, BOOL_TAG, sizeof(BOOL_TAG) + 1) == 0) {
415 if (strncmp(node->value, "false", strlen("false") + 1) == 0) {
422 } else if (strncmp(node
504 cnode *node = root->first_child; local
522 cnode *node = root->first_child; local
559 cnode *node = config_find(root, PREPROCESSING_TAG); local
586 cnode *node = config_find(root, OUTPUT_SESSION_PROCESSING_TAG); local
612 cnode *node = config_find(root, UUID_TAG); local
626 cnode *node = config_find(root, EFFECTS_TAG); local
[all...]
/frameworks/av/include/media/
H A DIOMX.h52 virtual bool livesLocally(node_id node, pid_t pid) = 0;
62 node_id *node) = 0;
64 virtual status_t freeNode(node_id node) = 0;
67 node_id node, OMX_COMMANDTYPE cmd, OMX_S32 param) = 0;
70 node_id node, OMX_INDEXTYPE index,
74 node_id node, OMX_INDEXTYPE index,
78 node_id node, OMX_INDEXTYPE index,
82 node_id node, OMX_INDEXTYPE index,
86 node_id node, OMX_STATETYPE* state) = 0;
91 node_id node, OMX_U3
204 IOMX::node_id node; member in struct:android::omx_message
[all...]
/frameworks/compile/mclinker/lib/Core/
H A DInputTree.cpp26 pMover.connect(pRoot, pTree.m_Root.node.right);
29 pTree.m_Root.node.left = pTree.m_Root.node.right = &pTree.m_Root.node;
36 NodeBase* node = createNode(); local
37 pMover.connect(pRoot, node);
44 BinaryTree<Input>::node_type* node = createNode(); local
45 node->data = &pInput;
46 pMover.connect(pRoot, node);
/frameworks/base/core/java/android/content/
H A DUriMatcher.java125 * Creates the root node of the URI tree.
177 UriMatcher node = this;
180 ArrayList<UriMatcher> children = node.mChildren;
187 node = child;
202 node.mChildren.add(child);
203 node = child;
206 node.mCode = code;
214 * @return The code for the matched node (added using addURI),
215 * or -1 if there is no matched node.
222 UriMatcher node
[all...]
/frameworks/av/services/audiopolicy/engineconfigurable/wrapper/
H A DParameterManagerWrapper.cpp143 cnode *node; local
144 for (node = root->first_child; node != NULL; node = node->next) {
146 ALOG_ASSERT(node != NULL, "error in parsing file");
147 const char *typeName = node->name;
148 char *valueNames = strndup(node->value, strlen(node->value));
188 cnode *node local
198 cnode *node = config_find(root, gExclusiveCriterionTypeTag.c_str()); local
208 cnode *node; local
243 cnode *node = config_find(root, gCriterionTag.c_str()); local
296 cnode *node = config_find(root, gPolicyConfTag.c_str()); local
[all...]
/frameworks/compile/mclinker/include/mcld/
H A DInputTree.h49 // skip the Group node
58 // skip the Group node
100 bfs_iterator it = bfs_iterator(BinaryTreeBase<Input>::m_Root.node.left);
107 return bfs_iterator(BinaryTreeBase<Input>::m_Root.node.right);
112 const_bfs_iterator(BinaryTreeBase<Input>::m_Root.node.left);
119 return const_bfs_iterator(BinaryTreeBase<Input>::m_Root.node.right);
123 dfs_iterator it = dfs_iterator(BinaryTreeBase<Input>::m_Root.node.left);
130 return dfs_iterator(BinaryTreeBase<Input>::m_Root.node.right);
135 const_dfs_iterator(BinaryTreeBase<Input>::m_Root.node.left);
142 return const_dfs_iterator(BinaryTreeBase<Input>::m_Root.node
177 node_type* node = BinaryTreeBase<Input>::createNode(); local
302 BinTreeTy::node_type* node = createNode(); local
315 BinTreeTy::node_type* node = createNode(); local
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
H A DOMANode.java36 for (OMANode node = this; node != null; node = node.getParent()) {
37 path.addFirst(node.getName());
77 OMANode node = buildNode(in, null);
78 if (node == null || node.isLeaf()) {
81 unmarshal(in, (OMAConstructed) node);
82 return (OMAConstructed) node;
[all...]
/frameworks/av/media/libmedia/
H A DIOMX.cpp68 virtual bool livesLocally(node_id node, pid_t pid) { argument
71 data.writeInt32((int32_t)node);
101 const char *name, const sp<IOMXObserver> &observer, node_id *node) {
110 *node = (node_id)reply.readInt32();
112 *node = 0;
118 virtual status_t freeNode(node_id node) { argument
121 data.writeInt32((int32_t)node);
128 node_id node, OMX_COMMANDTYPE cmd, OMX_S32 param) {
131 data.writeInt32((int32_t)node);
140 node_id node, OMX_INDEXTYP
100 allocateNode( const char *name, const sp<IOMXObserver> &observer, node_id *node) argument
127 sendCommand( node_id node, OMX_COMMANDTYPE cmd, OMX_S32 param) argument
139 getParameter( node_id node, OMX_INDEXTYPE index, void *params, size_t size) argument
160 setParameter( node_id node, OMX_INDEXTYPE index, const void *params, size_t size) argument
174 getConfig( node_id node, OMX_INDEXTYPE index, void *params, size_t size) argument
195 setConfig( node_id node, OMX_INDEXTYPE index, const void *params, size_t size) argument
209 getState( node_id node, OMX_STATETYPE* state) argument
220 enableGraphicBuffers( node_id node, OMX_U32 port_index, OMX_BOOL enable) argument
233 getGraphicBufferUsage( node_id node, OMX_U32 port_index, OMX_U32* usage) argument
246 useBuffer( node_id node, OMX_U32 port_index, const sp<IMemory> &params, buffer_id *buffer, OMX_U32 allottedSize) argument
270 useGraphicBuffer( node_id node, OMX_U32 port_index, const sp<GraphicBuffer> &graphicBuffer, buffer_id *buffer) argument
292 updateGraphicBufferInMeta( node_id node, OMX_U32 port_index, const sp<GraphicBuffer> &graphicBuffer, buffer_id buffer) argument
307 createInputSurface( node_id node, OMX_U32 port_index, sp<IGraphicBufferProducer> *bufferProducer, MetadataBufferType *type) argument
363 setInputSurface( node_id node, OMX_U32 port_index, const sp<IGraphicBufferConsumer> &bufferConsumer, MetadataBufferType *type) argument
389 signalEndOfInputStream(node_id node) argument
403 storeMetaDataInBuffers( node_id node, OMX_U32 port_index, OMX_BOOL enable, MetadataBufferType *type) argument
421 prepareForAdaptivePlayback( node_id node, OMX_U32 port_index, OMX_BOOL enable, OMX_U32 max_width, OMX_U32 max_height) argument
437 configureVideoTunnelMode( node_id node, OMX_U32 portIndex, OMX_BOOL tunneled, OMX_U32 audioHwSync, native_handle_t **sidebandHandle ) argument
456 allocateBuffer( node_id node, OMX_U32 port_index, size_t size, buffer_id *buffer, void **buffer_data) argument
479 allocateBufferWithBackup( node_id node, OMX_U32 port_index, const sp<IMemory> &params, buffer_id *buffer, OMX_U32 allottedSize) argument
502 freeBuffer( node_id node, OMX_U32 port_index, buffer_id buffer) argument
514 fillBuffer(node_id node, buffer_id buffer, int fenceFd) argument
528 emptyBuffer( node_id node, buffer_id buffer, OMX_U32 range_offset, OMX_U32 range_length, OMX_U32 flags, OMX_TICKS timestamp, int fenceFd) argument
550 getExtensionIndex( node_id node, const char *parameter_name, OMX_INDEXTYPE *index) argument
571 setInternalOption( node_id node, OMX_U32 port_index, InternalOptionType type, const void *optionData, size_t size) argument
606 node_id node = (node_id)data.readInt32(); local
645 node_id node; local
660 node_id node = (node_id)data.readInt32(); local
671 node_id node = (node_id)data.readInt32(); local
690 node_id node = (node_id)data.readInt32(); local
741 node_id node = (node_id)data.readInt32(); local
755 node_id node = (node_id)data.readInt32(); local
769 node_id node = (node_id)data.readInt32(); local
784 node_id node = (node_id)data.readInt32(); local
805 node_id node = (node_id)data.readInt32(); local
826 node_id node = (node_id)data.readInt32(); local
843 node_id node = (node_id)data.readInt32(); local
883 node_id node = (node_id)data.readInt32(); local
901 node_id node = (node_id)data.readInt32(); local
913 node_id node = (node_id)data.readInt32(); local
929 node_id node = (node_id)data.readInt32(); local
946 node_id node = (node_id)data.readInt32(); local
964 node_id node = (node_id)data.readInt32(); local
986 node_id node = (node_id)data.readInt32(); local
1009 node_id node = (node_id)data.readInt32(); local
1021 node_id node = (node_id)data.readInt32(); local
1034 node_id node = (node_id)data.readInt32(); local
1052 node_id node = (node_id)data.readInt32(); local
1114 IOMX::node_id node = data.readInt32(); local
[all...]
/frameworks/base/libs/hwui/utils/
H A DLinearAllocator.cpp128 auto node = mDtorList; local
129 mDtorList = node->next;
130 node->dtor(node->addr);
198 auto node = new (*this) DestructorNode(); local
199 node->dtor = dtor;
200 node->addr = addr;
201 node->next = mDtorList;
202 mDtorList = node;
206 auto node local
[all...]
/frameworks/support/v4/java/android/support/v4/widget/
H A DExploreByTouchHelper.java57 /** Virtual node identifier value for invalid nodes. */
60 /** Virtual node identifier value for the host view's node. */
106 * @return The accessibility node provider for this helper.
267 * Constructs and returns an {@link AccessibilityEvent} for the host node.
318 * construct a node.
335 * @return An {@link AccessibilityNodeInfoCompat} for the parent node.
338 final AccessibilityNodeInfoCompat node = AccessibilityNodeInfoCompat.obtain(mView);
339 ViewCompat.onInitializeAccessibilityNodeInfo(mView, node);
341 // Allow the client to populate the host node
696 onPopulateNodeForVirtualView( int virtualViewId, AccessibilityNodeInfoCompat node) argument
706 onPopulateNodeForHost(AccessibilityNodeInfoCompat node) argument
[all...]
/frameworks/base/libs/hwui/tests/
H A Dmain.cpp44 static DisplayListCanvas* startRecording(RenderNode* node) { argument
46 renderer->setViewport(node->stagingProperties().getWidth(),
47 node->stagingProperties().getHeight());
52 static void endRecording(DisplayListCanvas* renderer, RenderNode* node) { argument
54 node->setStagingDisplayList(renderer->finishRecording());
154 sp<RenderNode> node = new RenderNode(); local
155 node->mutateStagingProperties().setLeftTopRightBottom(x, y, x + width, y + height);
156 node->mutateStagingProperties().setElevation(dp(16));
157 node->mutateStagingProperties().mutableOutline().setRoundRect(0, 0, width, height, dp(10), 1);
158 node
195 sp<RenderNode> node = new RenderNode(); local
229 sp<RenderNode> node = new RenderNode(); local
278 sp<RenderNode> node = new RenderNode(); local
[all...]

Completed in 484 milliseconds

12345