Searched refs:node (Results 51 - 75 of 143) sorted by relevance

123456

/frameworks/base/packages/Osu/src/com/android/hotspot2/pps/
H A DPolicy.java37 public Policy(OMANode node) throws OMAException { argument
39 OMANode rpNode = node.getChild(TAG_PreferredRoamingPartnerList);
46 throw new OMAException("Not expecting leaf node in " +
53 OMANode bhtNode = node.getChild(TAG_MinBackhaulThreshold);
60 throw new OMAException("Not expecting leaf node in " +
67 mPolicyUpdate = new UpdateInfo(node.getChild(TAG_PolicyUpdate));
69 OMANode sxNode = node.getChild(TAG_SPExclusionList);
76 throw new OMAException("Not expecting leaf node in " + TAG_SPExclusionList);
82 OMANode rptNode = node.getChild(TAG_RequiredProtoPortTuple);
89 throw new OMAException("Not expecting leaf node i
139 PreferredRoamingPartner(OMANode node) argument
168 MinBackhaul(OMANode node) argument
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/pps/
H A DPolicy.java37 public Policy(OMANode node) throws OMAException { argument
39 OMANode rpNode = node.getChild(TAG_PreferredRoamingPartnerList);
47 throw new OMAException("Not expecting leaf node in " +
54 OMANode bhtNode = node.getChild(TAG_MinBackhaulThreshold);
62 throw new OMAException("Not expecting leaf node in " +
69 mPolicyUpdate = new UpdateInfo(node.getChild(TAG_PolicyUpdate));
71 OMANode sxNode = node.getChild(TAG_SPExclusionList);
79 throw new OMAException("Not expecting leaf node in " + TAG_SPExclusionList);
86 OMANode rptNode = node.getChild(TAG_RequiredProtoPortTuple);
94 throw new OMAException("Not expecting leaf node i
150 PreferredRoamingPartner(OMANode node) argument
181 MinBackhaul(OMANode node) argument
[all...]
/frameworks/support/v4/tests/java/android/support/v4/widget/
H A DExploreByTouchHelperTest.java61 final AccessibilityNodeInfoCompat node =
63 assertNotNull(node);
70 node.getBoundsInParent(nodeBoundsInParent);
75 node.getBoundsInScreen(nodeBoundsInScreen);
82 // Generate a node for the new position.
136 protected void onPopulateNodeForVirtualView(int virtualViewId, AccessibilityNodeInfoCompat node) { argument
138 node.setContentDescription("test");
141 node.setBoundsInParent(hostBounds);
/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
H A DAssistVisualizer.java47 TextEntry(AssistStructure.ViewNode node, int parentLeft, int parentTop, Matrix matrix) { argument
48 int left = parentLeft+node.getLeft();
49 int top = parentTop+node.getTop();
50 bounds = new Rect(left, top, left+node.getWidth(), top+node.getHeight());
54 this.className = node.getClassName();
55 this.textSize = node.getTextSize();
56 this.textColor = node.getTextColor();
57 this.text = node.getText() != null ? node
[all...]
/frameworks/base/tools/aapt/
H A DXMLNode.cpp806 SourcePos(mFilename, child->getStartLineNumber()).error("Child to CDATA node.");
817 SourcePos(mFilename, child->getStartLineNumber()).error("Child to CDATA node.");
829 SourcePos(mFilename, getStartLineNumber()).error("Child to CDATA node.");
893 SourcePos(mFilename, getStartLineNumber()).error("Adding characters to element node.");
934 sp<XMLNode> node = mChildren.itemAt(i);
935 if (node->getType() == TYPE_CDATA) {
936 // This is a CDATA node...
937 const char16_t* p = node->mChars.string();
942 // (int)(p-node->mChars.string()),
943 // String8(node
[all...]
/frameworks/av/media/libstagefright/omx/tests/
H A DOMXHarness.cpp76 IOMX::node_id node, omx_message *msg, int64_t timeoutUs) {
78 node, NULL, NULL, msg, timeoutUs);
123 IOMX::node_id node,
133 if ((*it).node == node) {
161 IOMX::node_id node, OMX_U32 portIndex,
170 node, OMX_IndexParamPortDefinition, def, sizeof(*def));
183 IOMX::node_id node, OMX_U32 portIndex,
188 status_t err = getPortDefinition(node, portIndex, &def);
198 node, portInde
75 dequeueMessageForNode( IOMX::node_id node, omx_message *msg, int64_t timeoutUs) argument
122 dequeueMessageForNodeIgnoringBuffers( IOMX::node_id node, Vector<Buffer> *inputBuffers, Vector<Buffer> *outputBuffers, omx_message *msg, int64_t timeoutUs) argument
160 getPortDefinition( IOMX::node_id node, OMX_U32 portIndex, OMX_PARAM_PORTDEFINITIONTYPE *def) argument
181 allocatePortBuffers( const sp<MemoryDealer> &dealer, IOMX::node_id node, OMX_U32 portIndex, Vector<Buffer> *buffers) argument
207 setRole(IOMX::node_id node, const char *role) argument
223 NodeReaper(const sp<Harness> &harness, IOMX::node_id node) argument
267 IOMX::node_id node; local
[all...]
/frameworks/base/core/java/android/app/assist/
H A DAssistStructure.java99 ViewNode node; field in class:AssistStructure.ViewStackEntry
165 void pushViewStackEntry(ViewNode node, int pos) { argument
175 entry.node = node;
176 entry.numChildren = node.getChildCount();
202 // Write next view node if appropriate.
207 + mCurViewStackEntry.curChild + " in " + mCurViewStackEntry.node);
208 ViewNode child = mCurViewStackEntry.node.mChildren[mCurViewStackEntry.curChild];
217 if (DEBUG_PARCEL_TREE) Log.d(TAG, "Done with " + mCurViewStackEntry.node
833 * Returns true if assist data has been blocked starting at this node i
1058 ViewNodeBuilder(AssistStructure assist, ViewNode node, boolean async) argument
1361 dump(String prefix, ViewNode node) argument
[all...]
/frameworks/base/tools/preload/
H A Dsorttable.js199 getInnerText: function(node) {
206 hasInputs = (typeof node.getElementsByTagName == 'function') &&
207 node.getElementsByTagName('input').length;
209 if (node.getAttribute("sorttable_customkey") != null) {
210 return node.getAttribute("sorttable_customkey");
212 else if (typeof node.textContent != 'undefined' && !hasInputs) {
213 return node.textContent.replace(/^\s+|\s+$/g, '');
215 else if (typeof node.innerText != 'undefined' && !hasInputs) {
216 return node.innerText.replace(/^\s+|\s+$/g, '');
218 else if (typeof node
[all...]
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiSelector.java307 * Set the search criteria to match the widget by its node
600 * can also be a single level referencing only one node. In such cases the return
604 * reference child node.
657 boolean isMatchFor(AccessibilityNodeInfo node, int index) { argument
668 if (node.isChecked() != getBoolean(criterion)) {
673 s = node.getClassName();
679 s = node.getClassName();
685 if (node.isClickable() != getBoolean(criterion)) {
690 if (node.isCheckable() != getBoolean(criterion)) {
695 if (node
[all...]
/frameworks/base/tools/aapt2/xml/
H A DXmlDom.cpp57 static void addToStack(Stack* stack, XML_Parser parser, std::unique_ptr<Node> node) { argument
58 node->lineNumber = XML_GetCurrentLineNumber(parser);
59 node->columnNumber = XML_GetCurrentColumnNumber(parser);
61 Node* thisNode = node.get();
63 stack->nodeStack.top()->addChild(std::move(node));
65 stack->root = std::move(node);
141 // See if we can just append the text to a previous text node.
249 std::unique_ptr<Namespace> node = util::make_unique<Namespace>(); local
253 node->namespacePrefix.assign(str16, len);
258 node
265 std::unique_ptr<Element> node = util::make_unique<Element>(); local
284 std::unique_ptr<Text> node = util::make_unique<Text>(); local
329 findRootElement(Node* node) argument
[all...]
/frameworks/wilhelm/src/itf/
H A DIAndroidEffectCapabilities.c118 thiz->mFxDescriptors[i].type.node[0],
119 thiz->mFxDescriptors[i].type.node[1],
120 thiz->mFxDescriptors[i].type.node[2],
121 thiz->mFxDescriptors[i].type.node[3],
122 thiz->mFxDescriptors[i].type.node[4],
123 thiz->mFxDescriptors[i].type.node[5],
/frameworks/av/media/libeffects/proxy/
H A DEffectProxy.cpp129 uuid_print.timeHiAndVersion, uuid_print.clockSeq, uuid_print.node[0],
130 uuid_print.node[1], uuid_print.node[2], uuid_print.node[3],
131 uuid_print.node[4], uuid_print.node[5]);
134 uuid_print.timeHiAndVersion, uuid_print.clockSeq, uuid_print.node[0],
135 uuid_print.node[1], uuid_print.node[2], uuid_print.node[
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityCache.java160 Log.i(LOG_TAG, "Refreshing cached node.");
172 // The node changed so we will just refresh it right now.
182 * window and the accessibility id of the node.
184 * @param windowId The id of the window hosting the node.
185 * @param accessibilityNodeId The info accessibility node id.
253 * @param info The node to cache.
271 // If the added node is in the cache we have to be careful if
351 * Clears a subtree rooted at the node with the given id that is
393 * node, and for every window there is a single accessibility focused node
[all...]
/frameworks/base/native/android/
H A Dnet.c76 const char *node, const char *service,
84 return android_getaddrinfofornet(node, service, hints, netid, 0, res);
75 android_getaddrinfofornetwork(net_handle_t network, const char *node, const char *service, const struct addrinfo *hints, struct addrinfo **res) argument
/frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
H A DMgmtTreeRoot.java8 public MgmtTreeRoot(XMLNode node, String dtdRev) { argument
10 node.getTextualAttributes());
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSIsThreadablePass.cpp115 llvm::NamedMDNode *node = variable
117 node->addOperand(llvm::MDNode::get(context, val));
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
H A DSdkUtil.java108 Node node = allClasses.item(j);
109 if (node.getNodeType() != Node.ELEMENT_NODE || !"class"
110 .equals(node.getNodeName())) {
113 //L.d("checking node %s", node.getAttributes().getNamedItem("name").getNodeValue());
114 int classSince = getSince(node);
115 String classDesc = node.getAttributes().getNamedItem("name").getNodeValue();
117 final NodeList childNodes = node.getChildNodes();
153 private static int getSince(Node node) { argument
154 final Node since = node
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
H A DManagementTreeRoot.java22 * A specialized OMAConstructed OMA-DM node used as the MgmtTree root node in Passpoint
28 public ManagementTreeRoot(XMLNode node, String dtdRev) { argument
30 node.getTextualAttributes());
/frameworks/native/vulkan/libvulkan/
H A Ddebug_report.h48 void RemoveCallback(Node* node, const VkAllocationCallbacks& allocator);
62 static VkDebugReportCallbackEXT GetHandle(const Node* node) { argument
63 return VkDebugReportCallbackEXT(reinterpret_cast<uintptr_t>(node));
66 static VkDebugReportCallbackEXT GetDriverHandle(const Node* node) { argument
67 return node->driver_handle;
/frameworks/minikin/tools/
H A Dmk_hyb_file.py197 for node in node_list:
198 succ = sorted([ch_map[c] + edge_start for c in node.succ.keys()])
214 node.ix = ix
215 self.node_map[ix] = node
230 node = result[ix]
231 node.bfs_ix = ix
233 for c, next in node.succ.items():
234 assert ch_map[c] not in mapped, 'duplicate edge ' + node.str + ' ' + hex(ord(c))
249 # construct string representation of node
250 node
[all...]
/frameworks/base/libs/hwui/tests/unit/
H A DFrameBuilderTests.cpp130 auto node = TestUtils::createNode(0, 0, 100, 200, local
138 frameBuilder.deferRenderNode(*TestUtils::getSyncedNode(node));
158 auto node = TestUtils::createNode(0, 0, 100, 200, local
166 frameBuilder.deferRenderNode(*TestUtils::getSyncedNode(node));
174 auto node = TestUtils::createNode(0, 0, 200, 200, local
183 frameBuilder.deferRenderNode(*TestUtils::getSyncedNode(node));
201 auto node = TestUtils::createNode(0, 0, 200, 200, local
218 frameBuilder.deferRenderNode(*TestUtils::getSyncedNode(node));
237 auto node = TestUtils::createNode(0, 0, 100, 100, local
244 frameBuilder.deferRenderNode(5, 10, Rect(50, 50), // translate + clip node
349 auto node = TestUtils::createNode(10, 10, 110, 110, local
374 auto node = TestUtils::createNode(0, 0, 200, 200, local
416 auto node = TestUtils::createNode(0, 0, 50, 50, local
450 auto node = TestUtils::createNode(0, 0, 100, 100, local
492 auto node = TestUtils::createNode(0, 0, 400, 400, local
523 auto node = TestUtils::createNode(0, 0, 200, 2000, local
579 auto node = TestUtils::createNode(0, 0, 400, 400, local
619 auto node = TestUtils::createNode(0, 0, 200, 200, local
651 auto node = TestUtils::createNode(0, 0, 200, 200, local
673 auto node = TestUtils::createNode(0, 0, 200, 200, local
794 auto node = TestUtils::createNode(0, 0, 200, 200, local
843 auto node = TestUtils::createNode(0, 0, 200, 200, local
919 auto node = TestUtils::createNode(0, 0, 800, 800, local
943 auto node = TestUtils::createNode(0, 0, 200, 200, local
994 auto node = TestUtils::createNode(0, 0, 200, 200, local
1027 auto node = TestUtils::createNode(0, 0, 200, 200, local
1079 auto node = TestUtils::createNode(0, 0, 200, 200, local
1126 auto node = TestUtils::createNode(0, 0, 200, 200, local
1145 auto node = TestUtils::createNode(0, 0, 200, 200, local
1211 auto node = TestUtils::createNode(0, 0, 600, 600, // 500x500 triggers clipping local
1263 auto node = TestUtils::createNode(10, 10, 110, 110, local
1433 auto node = TestUtils::createNode(10, 10, 110, 110, local
1466 auto node = TestUtils::createNode(0, 0, 100, 100, local
1965 auto node = TestUtils::createNode(0, 0, 100, 100, local
2109 auto node = TestUtils::createNode(0, 0, 10000, 10000, local
2195 auto node = TestUtils::createNode(20, 20, 30, 30, local
[all...]
H A DLayerUpdateQueueTests.cpp32 // sync node properties, so properties() reflects correct width and height
34 sp<RenderNode> node = TestUtils::createNode(0, 0, width, height, nullptr); local
35 TestUtils::syncHierarchyPropertiesAndDisplayList(node);
36 return node;
/frameworks/base/libs/hwui/renderthread/
H A DCanvasContext.h100 void prepareAndDraw(RenderNode* node);
102 void buildLayer(RenderNode* node, TreeObserver* observer);
104 void markLayerInUse(RenderNode* node);
131 void addRenderNode(RenderNode* node, bool placeFront) { argument
133 mRenderNodes.emplace(mRenderNodes.begin() + pos, node);
136 void removeRenderNode(RenderNode* node) { argument
137 mRenderNodes.erase(std::remove(mRenderNodes.begin(), mRenderNodes.end(), node),
/frameworks/av/media/libmedia/
H A DAudioEffect.cpp462 guid->node[0] = (uint8_t)tmp[4];
463 guid->node[1] = (uint8_t)tmp[5];
464 guid->node[2] = (uint8_t)tmp[6];
465 guid->node[3] = (uint8_t)tmp[7];
466 guid->node[4] = (uint8_t)tmp[8];
467 guid->node[5] = (uint8_t)tmp[9];
483 guid->node[0],
484 guid->node[1],
485 guid->node[2],
486 guid->node[
[all...]
/frameworks/base/libs/hwui/
H A DAnimationContext.cpp46 void AnimationContext::addAnimatingRenderNode(RenderNode& node) { argument
47 if (!node.animators().hasAnimationHandle()) {
48 AnimationHandle* handle = new AnimationHandle(node, *this);

Completed in 871 milliseconds

123456