Home
last modified time | relevance | path

Searched defs:node (Results 1 – 25 of 157) sorted by relevance

1234567

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/euicc/asn1/
DAsn1NodeTest.java40 Asn1Node node = Asn1Node.newBuilder(0x65).build(); in testCreateConstructedNodeWithShortTag() local
51 Asn1Node node = Asn1Node.newBuilder(0x3F34).build(); in testCreateConstructedNodeWithLongTag() local
62 Asn1Node node = in testChildren() local
90 Asn1Node node = in testNonExitingChildren() local
124 Asn1Node node = in testBuilderAndGetters() local
158 Asn1Node node = Asn1Node.newBuilder(0x30).addChildAsString(0x12, "string").build(); in testGettersInvalidData() local
186 Asn1Node node = new Asn1Decoder(nodeHex).nextNode(); in testWriteToBytes() local
197 Asn1Node node = Asn1Node.newBuilder(0xBF37).addChildAsBytes(0x5A, new byte[257]).build(); in testLongFormLength() local
249 Asn1Node node = Asn1Node.newBuilder(0xBF37).build(); in testAsInteger_ConstructedTag() local
256 Asn1Node node = Asn1Node.newBuilder(0xBF37).build(); in testAsLong_ConstructedTag() local
[all …]
DAsn1DecoderTest.java52 Asn1Node node = root.getChild(0x5A); in testNormalOperation() local
81 Asn1Node node = root.getChild(0x5A); in testHighTagNumberForm() local
200 Asn1Node node = root.getChild(0x5A); in testLongFormLength() local
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
DUiObject.java151 AccessibilityNodeInfo node = findAccessibilityNodeInfo(mConfig.getWaitForSelectorTimeout()); in getChildCount() local
167 AccessibilityNodeInfo node = null; in findAccessibilityNodeInfo() local
338 private Rect getVisibleBounds(AccessibilityNodeInfo node) { in getVisibleBounds()
376 private AccessibilityNodeInfo getScrollableParent(AccessibilityNodeInfo node) { in getScrollableParent()
397 AccessibilityNodeInfo node = findAccessibilityNodeInfo(mConfig.getWaitForSelectorTimeout()); in click() local
437 AccessibilityNodeInfo node = findAccessibilityNodeInfo(mConfig.getWaitForSelectorTimeout()); in clickAndWaitForNewWindow() local
455 AccessibilityNodeInfo node = findAccessibilityNodeInfo(mConfig.getWaitForSelectorTimeout()); in clickTopLeft() local
472 AccessibilityNodeInfo node = findAccessibilityNodeInfo(mConfig.getWaitForSelectorTimeout()); in longClickBottomRight() local
489 AccessibilityNodeInfo node = findAccessibilityNodeInfo(mConfig.getWaitForSelectorTimeout()); in clickBottomRight() local
506 AccessibilityNodeInfo node = findAccessibilityNodeInfo(mConfig.getWaitForSelectorTimeout()); in longClick() local
[all …]
DAccessibilityNodeInfoDumper.java101 private static void dumpNodeRec(AccessibilityNodeInfo node, XmlSerializer serializer,int index, in dumpNodeRec()
150 private static boolean nafExcludedClass(AccessibilityNodeInfo node) { in nafExcludedClass()
169 private static boolean nafCheck(AccessibilityNodeInfo node) { in nafCheck()
195 private static boolean childNafCheck(AccessibilityNodeInfo node) { in childNafCheck()
/frameworks/base/apct-tests/perftests/core/src/android/graphics/perftests/
DRenderNodePerfTest.java38 final RenderNode node = RenderNode.create("benchmark", null); in testMeasureRenderNodeJniOverhead() local
50 RenderNode node = RenderNode.create(null, null); in testCreateRenderNodeNoName() local
59 RenderNode node = RenderNode.create("LinearLayout", null); in testCreateRenderNode() local
67 RenderNode node = RenderNode.create("LinearLayout", null); in testIsValid() local
76 RenderNode node = RenderNode.create("LinearLayout", null); in testStartEnd() local
105 RenderNode node = RenderNode.create("LinearLayout", null); in testHasIdentityMatrix() local
114 RenderNode node = RenderNode.create("LinearLayout", null); in testSetOutline() local
DCanvasPerfTest.java42 RenderNode node = RenderNode.create("benchmark", null); in testBasicViewGroupDraw() local
71 RenderNode node = RenderNode.create("benchmark", null); in testRecordSimpleBitmapView() local
/frameworks/support/coordinatorlayout/src/main/java/androidx/coordinatorlayout/widget/
DDirectedAcyclicGraph.java53 public void addNode(@NonNull T node) { in addNode()
62 public boolean contains(@NonNull T node) { in contains()
75 public void addEdge(@NonNull T node, @NonNull T incomingEdge) { in addEdge()
97 public List getIncomingEdges(@NonNull T node) { in getIncomingEdges()
108 public List<T> getOutgoingEdges(@NonNull T node) { in getOutgoingEdges()
129 public boolean hasOutgoingEdges(@NonNull T node) { in hasOutgoingEdges()
173 private void dfs(final T node, final ArrayList<T> result, final HashSet<T> tmpMarked) { in dfs()
/frameworks/base/wifi/java/android/net/wifi/hotspot2/omadm/
DPpsMoParser.java412 private static PasspointConfiguration parsePpsNode(XMLNode node) in parsePpsNode()
476 private static String parseUrn(XMLNode node) throws ParsingException { in parseUrn()
533 private static PPSNode buildPpsNode(XMLNode node) throws ParsingException { in buildPpsNode()
590 private static String getPpsNodeValue(PPSNode node) throws ParsingException { in getPpsNodeValue()
652 private static HomeSp parseHomeSP(PPSNode node) throws ParsingException { in parseHomeSP()
716 static private Map<String, Long> parseNetworkIds(PPSNode node) in parseNetworkIds()
740 static private Pair<String, Long> parseNetworkIdInstance(PPSNode node) in parseNetworkIdInstance()
775 private static Pair<List<Long>, List<Long>> parseHomeOIList(PPSNode node) in parseHomeOIList()
804 private static Pair<Long, Boolean> parseHomeOIInstance(PPSNode node) throws ParsingException { in parseHomeOIInstance()
847 private static String[] parseOtherHomePartners(PPSNode node) throws ParsingException { in parseOtherHomePartners()
[all …]
/frameworks/support/coordinatorlayout/src/androidTest/java/androidx/coordinatorlayout/widget/
DDirectedAcyclicGraphTest.java45 final TestNode node = new TestNode("node"); in test_addNode() local
53 final TestNode node = new TestNode("node"); in test_addNodeAgain() local
63 final TestNode node = new TestNode("node"); in test_addEdge() local
73 final TestNode node = new TestNode("node"); in test_addEdgeWithNotAddedEdgeNode() local
85 final TestNode node = new TestNode("node"); in test_getIncomingEdges() local
99 final TestNode node = new TestNode("node"); in test_getOutgoingEdges() local
134 final TestNode node = new TestNode("node"); in test_hasOutgoingEdges() local
/frameworks/base/tools/incident_report/
Dgeneric_message.cpp30 Node node; in addInt32() local
39 Node node; in addInt64() local
49 Node node; in addMessage() local
59 Node node; in addString() local
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
DConfigParsingUtils.cpp36 cnode *node = root->first_child; in loadAudioPortGain() local
82 cnode *node = root->first_child; in loadAudioPortGains() local
103 cnode *node = root->first_child; in loadHwModuleDevice() local
153 cnode *node = root->first_child; in loadHwModuleProfile() local
225 cnode *node = config_find(root, DEVICES_TAG); in loadHwModule() local
271 cnode *node = config_find(root, AUDIO_HW_MODULE_TAG); in loadHwModules() local
323 cnode *node = config_find(root, GLOBAL_CONFIG_TAG); in loadModuleGlobalConfig() local
370 cnode *node = config_find(root, GLOBAL_CONFIG_TAG); in loadGlobalConfig() local
/frameworks/compile/mclinker/unittests/
DInputTreeTest.cpp68 InputTree::iterator node = m_pTestee->root(); in TEST_F() local
95 InputTree::iterator node = m_pTestee->root(); in TEST_F() local
120 InputTree::iterator node = m_pTestee->root(); in TEST_F() local
139 InputTree::iterator node = m_pTestee->root(); in TEST_F() local
DFactoriesTest.cpp40 NodeAlloc::NodeType* node = m_pNodeAlloc->produce(); in TEST_F() local
52 NodeAlloc::NodeType* node = 0; in TEST_F() local
71 NodeAlloc::NodeType* node = 0; in TEST_F() local
93 NodeAlloc::NodeType* node = 0; in TEST_F() local
117 NodeAlloc::NodeType* node = 0; in TEST_F() local
153 NodeAlloc::NodeType* node = 0; in TEST_F() local
/frameworks/base/apct-tests/perftests/core/src/android/text/
DStaticLayoutPerfTest.java254 final RenderNode node = RenderNode.create("benchmark", null); in testDraw_FixedText_NoStyled() local
269 final RenderNode node = RenderNode.create("benchmark", null); in testDraw_RandomText_Styled() local
285 final RenderNode node = RenderNode.create("benchmark", null); in testDraw_RandomText_NoStyled() local
301 final RenderNode node = RenderNode.create("benchmark", null); in testDraw_RandomText_Styled_WithoutCache() local
318 final RenderNode node = RenderNode.create("benchmark", null); in testDraw_RandomText_NoStyled_WithoutCache() local
335 final RenderNode node = RenderNode.create("benchmark", null); in testDraw_PrecomputedText_Styled() local
352 final RenderNode node = RenderNode.create("benchmark", null); in testDraw_PrecomputedText_NoStyled() local
369 final RenderNode node = RenderNode.create("benchmark", null); in testDraw_PrecomputedText_Styled_WithoutCache() local
387 final RenderNode node = RenderNode.create("benchmark", null); in testDraw_PrecomputedText_NoStyled_WithoutCache() local
/frameworks/base/libs/hwui/tests/microbench/
DFrameBuilderBench.cpp42 auto node = TestUtils::createNode<RecordingCanvas>( in createTestNode() local
63 auto node = createTestNode(); in BM_FrameBuilder_defer() local
76 auto node = createTestNode(); in BM_FrameBuilder_deferAndRender() local
118 auto node = getSyncedSceneNode(sceneName); in BM_FrameBuilder_defer_scene() local
133 auto node = getSyncedSceneNode(sceneName); in BM_FrameBuilder_deferAndRender_scene() local
/frameworks/support/jetifier/jetifier/processor/src/main/kotlin/com/android/tools/build/jetifier/processor/transform/pom/
DPomDependencyExtensions.kt27 val node = Element("dependency") in PomDependency() constant
/frameworks/base/libs/hwui/tests/common/
DTestUtils.h160 virtual void onMaybeRemovedFromTree(RenderNode* node) {} in onMaybeRemovedFromTree()
216 sp<RenderNode> node = new RenderNode(); in createNode() local
239 sp<RenderNode> node = new RenderNode(); in createNode() local
251 static void recordNode(RenderNode& node, std::function<void(Canvas&)> contentCallback) { in recordNode()
297 static void syncHierarchyPropertiesAndDisplayList(sp<RenderNode>& node) { in syncHierarchyPropertiesAndDisplayList()
301 static sp<RenderNode>& getSyncedNode(sp<RenderNode>& node) { in getSyncedNode()
359 static void syncHierarchyPropertiesAndDisplayListImpl(RenderNode* node) { in syncHierarchyPropertiesAndDisplayListImpl()
/frameworks/av/media/libeffects/factory/
DEffectsConfigLoader.c80 cnode *node; in loadLibraries() local
153 cnode *node; in loadLibrary() local
236 cnode *node; in addSubEffect() local
291 cnode *node; in loadEffects() local
307 cnode *node; in loadEffect() local
/frameworks/base/libs/hwui/renderthread/
DCanvasContext.cpp89 void CanvasContext::destroyLayer(RenderNode* node) { in destroyLayer()
160 for (auto& node : mRenderNodes) { in ~CanvasContext() local
166 void CanvasContext::addRenderNode(RenderNode* node, bool placeFront) { in addRenderNode()
172 void CanvasContext::removeRenderNode(RenderNode* node) { in removeRenderNode()
329 for (const sp<RenderNode>& node : mRenderNodes) { in prepareTree() local
549 void CanvasContext::prepareAndDraw(RenderNode* node) { in prepareAndDraw()
566 void CanvasContext::markLayerInUse(RenderNode* node) { in markLayerInUse()
574 for (auto& node : mPrefetchedLayers) { in freePrefetchedLayers() local
584 void CanvasContext::buildLayer(RenderNode* node) { in buildLayer()
617 for (const sp<RenderNode>& node : mRenderNodes) { in destroyHardwareResources() local
/frameworks/rs/
DrsMap.h57 LinkNode* node = bucket[index]; variable
122 LinkNode* node; variable
128 LinkNode* node = bucket[i]; in begin() local
145 LinkNode* node = bucket[index]; in find() local
/frameworks/base/core/proto/android/os/
Dpagetypeinfo.proto50 optional int32 node = 1; field
65 optional int32 node = 1; field
/frameworks/av/services/audiopolicy/engineconfigurable/wrapper/
DParameterManagerWrapper.cpp142 cnode *node; in loadCriterionType() local
187 cnode *node = config_find(root, gInclusiveCriterionTypeTag.c_str()); in loadInclusiveCriterionType() local
197 cnode *node = config_find(root, gExclusiveCriterionTypeTag.c_str()); in loadExclusiveCriterionType() local
207 cnode *node; in parseChildren() local
242 cnode *node = config_find(root, gCriterionTag.c_str()); in loadCriteria() local
295 cnode *node = config_find(root, gPolicyConfTag.c_str()); in loadConfig() local
/frameworks/native/vulkan/libvulkan/
Ddebug_report.cpp41 Node* node, in RemoveCallback()
64 const Node* node = &head_; in Message() local
132 auto node = callbacks.AddCallback( in CreateDebugReportCallbackEXT() local
156 auto node = callbacks.FromHandle(callback); in DestroyDebugReportCallbackEXT() local
/frameworks/support/navigation/common/src/main/java/androidx/navigation/
DNavGraph.java111 public void addDestination(@NonNull NavDestination node) { in addDestination()
128 mNodes.put(node.getId(), node); in addDestination() local
246 public void remove(@NonNull NavDestination node) { in remove()
/frameworks/base/libs/hwui/tests/unit/
DLeakCheckTests.cpp33 auto node = TestUtils::createNode(0, 0, 100, 100, [](RenderProperties& props, Canvas& canvas) { in RENDERTHREAD_OPENGL_PIPELINE_TEST() local
52 auto node = TestUtils::createNode(0, 0, 200, 200, [](RenderProperties& props, Canvas& canvas) { in RENDERTHREAD_OPENGL_PIPELINE_TEST() local

1234567