Home
last modified time | relevance | path

Searched refs:Model (Results 1 – 13 of 13) sorted by relevance

/tools/trebuchet/trebuchet/viewer/src/main/kotlin/traceviewer/ui/
DTraceViewerWindow.kt24 import trebuchet.model.Model in <lambda>()
36 private var _model: Model? = null in <lambda>()
63 object : SwingWorker<Model, Void>() { in <lambda>()
64 override fun doInBackground(): Model { in <lambda>()
95 var model: Model? in <lambda>()
DTimelineView.kt19 import trebuchet.model.Model
27 class TimelineView(val model: Model, val renderState: RenderState) : JScrollPane(), MouseListener,
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/task/
DImportTask.kt24 import trebuchet.model.Model
33 fun import(source: BufferProducer): Model { in import()
65 private fun finish(): Model { in finish()
66 val model = Model(fragments) in finish()
/tools/trebuchet/trebuchet/analyzer/src/
DAnalyzer.kt18 import trebuchet.model.Model in <lambda>()
23 fun timeMergeShot(model: Model) { in <lambda>()
32 fun measureStartup(model: Model) { in measureStartup()
50 fun measureRotator(model: Model) { in measureRotator()
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/extras/
DImportUtils.kt19 import trebuchet.model.Model
34 fun parseTrace(file: File, verbose : Boolean = true): Model { in parseTrace()
59 fun openSample(name: String): Model { in openSample()
/tools/trebuchet/trebuchet/startup-common/test/
DStartupCommonTests.kt24 import trebuchet.model.Model
28 fun parseString(source: String): Model { in parseString()
/tools/trebuchet/trebuchet/startup-analyzer/src/
DStartupAnalyzer.kt28 import trebuchet.model.Model in <lambda>()
48 fun measureStartup(model: Model) { in <lambda>()
/tools/trebuchet/trebuchet/system-server-analyzer/src/
DSystemServerAnalyzer.kt30 import trebuchet.model.Model in <lambda>()
76 fun measureServiceStartup(model: Model, thresholdMs: Int = 0, output: PrintStream = System.out, csv… in measureServiceStartup()
/tools/trebuchet/trebuchet/startup-common/src/
DStartupCommon.kt28 import trebuchet.model.Model in <lambda>()
106 fun Model.findProcess(queryName: String, in findProcess() method
133 fun Model.getStartupEvents() : List<StartupEvent> { in Model() method
/tools/trebuchet/core/model/src/main/kotlin/trebuchet/model/
DCpuModel.kt20 class CpuModel constructor(val model: Model, fragment: CpuModelFragment) {
DProcessModel.kt22 class ProcessModel constructor(val model: Model, fragment: ProcessModelFragment) {
DModel.kt21 class Model constructor(fragments: Iterable<ModelFragment>) { class
/tools/trebuchet/core/common/src/test/kotlin/trebuchet/io/
DStringStreamTest.kt24 import trebuchet.model.Model