Home
last modified time | relevance | path

Searched refs:children (Results 1 – 25 of 37) sorted by relevance

12

/tools/trebuchet/core/common/src/test/kotlin/trebuchet/importers/ftrace/
DFtraceImporterTest.kt86 assertEquals(2, doFrameSlice.children.size) in testImportBeginEnd()
87 assertEquals("input", doFrameSlice.children[0].name) in testImportBeginEnd()
88 assertEquals(0, doFrameSlice.children[0].children.size) in testImportBeginEnd()
89 assertEquals("traversal", doFrameSlice.children[1].name) in testImportBeginEnd()
90 assertEquals(1, doFrameSlice.children[1].children.size) in testImportBeginEnd()
91 assertEquals("draw", doFrameSlice.children[1].children[0].name) in testImportBeginEnd()
122 assertEquals(2, doFrameSlice.children.size) in testImportBeginEndNoTgids()
123 assertEquals("input", doFrameSlice.children[0].name) in testImportBeginEndNoTgids()
124 assertEquals(0, doFrameSlice.children[0].children.size) in testImportBeginEndNoTgids()
125 assertEquals("traversal", doFrameSlice.children[1].name) in testImportBeginEndNoTgids()
[all …]
/tools/metalava/metalava/src/main/java/com/android/tools/metalava/
DComparisonVisitor.kt209 oldTree.children, in pop()
210 newTree.children, in pop()
271 compare(visitor, parameters, newTree.children, newTree.item(), inherited, filter) in pop()
350 oldTree.children, in pop()
567 item.children.sortWith(treeComparator) in pop()
568 for (child in item.children) { in pop()
578 item.children.sortWith(treeComparator) in pop()
579 val children = item.children in pop() constant
580 var i = children.count() - 2 in pop()
582 val child = children[i] in pop()
[all …]
DAnnotationsMerger.kt626 val children = getChildren(annotationElement) in <lambda>() constant
627 assert(children.size == 2) { children.size } in <lambda>()
628 val valueElement1 = children[0] in <lambda>()
629 val valueElement2 = children[1] in <lambda>()
653 val children = getChildren(annotationElement) in <lambda>() constant
654 assert(children.size == 1) { children.size } in <lambda>()
655 val valueElement = children[0] in <lambda>()
765 val children = getChildren(annotationElement) in <lambda>() constant
766 parseChild(children[0]) in <lambda>()
767 if (children.size == 2) { in <lambda>()
[all …]
/tools/metalava/metalava-testing/src/main/java/com/android/tools/metalava/testing/
DTemporaryFolderOwner.kt41 fun newFolder(children: String = ""): File { in newFolder()
42 val dir = File(temporaryFolder.root.path, children) in newFolder()
46 temporaryFolder.newFolder(children) in newFolder()
50 fun newFile(children: String = ""): File { in newFile()
51 val dir = File(temporaryFolder.root.path, children) in newFile()
55 temporaryFolder.newFile(children) in newFile()
/tools/trebuchet/core/common/src/test/kotlin/trebuchet/model/
DSliceGroupBuilderTest.kt65 assertEquals(1, slice.children.size) in testNestedBuild()
66 assertEquals(child, slice.children.first()) in testNestedBuild()
67 assertEquals(0, child.children.size) in testNestedBuild()
/tools/metalava/metalava/src/main/java/com/android/tools/metalava/apilevels/
DApiToExtensionsMap.kt53 fun isEmpty(): Boolean = root.children.isEmpty() && root.extensions.isEmpty() in isEmpty()
70 var node = root.children.findNode(parts[0]) ?: return lastSeenExtensions in isEmpty()
76 node = node.children.findNode(part) ?: break in isEmpty()
250 var node = root.children.addNode(parts[0]) in fromXml()
252 node = node.children.addNode(name) in fromXml()
331 val children: MutableSet<Node> = mutableSetOf() in String() constant in com.android.tools.metalava.apilevels.Node
/tools/trebuchet/core/model/src/main/kotlin/trebuchet/model/base/
DSliceGroup.kt20 val children: List<SliceGroup> constant
29 children.forEach { selfTime -= it.duration } in <lambda>()
/tools/security/fuzzing/llm/tinyxml2_fuzzer/
Dtinyxml_parse_fuzzer.cpp9 std::vector<XMLElement> children; member
27 for (const auto& child : element.children) { in serializeXML()
58 element->children.push_back(child); in GenerateXML()
Dgen_corpus.py19 children = "".join(generate_random_xml(depth + 1) for _ in range(random.randint(0, 2)))
/tools/trebuchet/trebuchet/viewer/src/main/kotlin/traceviewer/ui/tracks/
DMultiLineTrack.kt64 if (slice.children.isNotEmpty()) { in addSlice()
66 slice.children.forEach { addSlice(it) } in addSlice()
/tools/test/graphicsbenchmark/performance_tests/helper/src/com/android/game/qualification/
DGameCoreConfigurationXmlParser.java114 NodeList children = nodeList.item(0).getChildNodes(); in parseList() local
115 for (int i = 0; i < children.getLength(); i++) { in parseList()
116 Node child = children.item(i); in parseList()
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/queries/
DSliceQueries.kt212 it.children.traverseSlices(visitor) in traverseSlices()
246 it.children.iterSlices(consumer) in List()
256 if (it.children.any(predicate)) return true in List()
404 yieldSlices(it.children) in yieldSlices()
/tools/metalava/metalava-model/src/main/java/com/android/tools/metalava/model/
DMergedCodebase.kt19 class MergedCodebase(val children: List<Codebase>) constant in com.android.tools.metalava.model.MergedCodebase
/tools/asuite/aidegen/lib/
Dproject_info.py269 children = set()
285 children.update(dep[name][constant.KEY_DEPENDENCIES])
286 if children:
287 dep.update(self.get_dep_modules(children, depth + 1))
/tools/metalava/metalava-model/src/testFixtures/java/com/android/tools/metalava/model/junit4/
DCustomizableParameterizedRunner.kt132 private val children: List<Runner> = mutableListOf(parameterized) constant
223 override fun getChildren() = children in getChildren()
/tools/trebuchet/core/model/src/main/kotlin/trebuchet/model/fragments/
DSliceGroupBuilder.kt69 override val children: List<SliceGroup> constant in trebuchet.model.fragments.SliceGroupBuilder.MutableSliceGroup
/tools/trebuchet/trebuchet/system-server-analyzer/src/
DSystemServerAnalyzer.kt81 val childDurations = it.children.sumByDouble { service -> in measureServiceStartup()
/tools/asuite/atest/tf_proto/
Dtest_record.proto38 repeated ChildReference children = 3; field
40 // The number of children this TestRecord was expected to have. Unset if not
/tools/tradefederation/core/proto/
Dtest_record.proto38 repeated ChildReference children = 3; field
40 // The number of children this TestRecord was expected to have. Unset if not
/tools/tradefederation/core/javatests/com/android/tradefed/device/
DNativeDeviceTest.java478 Collection<IFileEntry> children = new ArrayList<>(); in testPullDir_nothingToDo() local
479 when(fakeEntry.getChildren(false)).thenReturn(children); in testPullDir_nothingToDo()
538 Collection<IFileEntry> children = new ArrayList<>(); in testPullDir() local
540 children.add(fakeFile); in testPullDir()
545 children.add(fakeDir); in testPullDir()
552 when(fakeEntry.getChildren(false)).thenReturn(children); in testPullDir()
615 Collection<IFileEntry> children = new ArrayList<>(); in testPullDir_pullFail() local
617 children.add(fakeFile); in testPullDir_pullFail()
622 children.add(fakeDir); in testPullDir_pullFail()
631 when(fakeEntry.getChildren(false)).thenReturn(children); in testPullDir_pullFail()
/tools/tradefederation/core/common_util/com/android/tradefed/util/
DFileUtil.java174 File[] children = file.listFiles(); in chmodRWXRecursively() local
175 for (File child : children) { in chmodRWXRecursively()
288 File[] children = file.listFiles(); in setReadableRecursive() local
289 if (children != null) { in setReadableRecursive()
/tools/metalava/metalava-model-turbine/src/main/java/com/android/tools/metalava/model/turbine/
DTurbineCodebaseInitialiser.kt394 val children = cls.children() in <lambda>() constant
395 createInnerClasses(classItem, children.values.asList(), classTypeItemFactory) in <lambda>()
/tools/asuite/atest/bazel/runner/src/main/protobuf/
Dbuild_event_stream.proto32 // set of ids of children events such that apart from the initial event each
34 // invocation is complete if and only if all direct and indirect children of the
419 // target pattern that was expanded and the children id will contain the
452 // children id will contain the configured targets it was configured to.
562 // children events.
690 // Invariant: `time` >= sum of `time`s of all direct children.
1145 // events as children. More details, which are specific to the kind of event
1151 repeated BuildEventId children = 2; field
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/wifi/wifi_performance_test_utils/
Dbokeh_figure.py361 all_plots = bokeh.layouts.column(children=plot_array,
/tools/metalava/metalava/src/main/java/com/android/tools/metalava/compatibility/
DCompatibilityCheck.kt1015 baseApi?.let { MergedCodebase(oldCodebases.children + baseApi) } ?: oldCodebases in checkCompatibility()
1019 MergedCodebase(oldCodebases.children + newCodebase) in checkCompatibility()

12