Uses of Class
de.uka.ipd.sdq.ByCounter.execution.CountingResult

Packages that use CountingResult
de.uka.ipd.sdq.ByCounter.execution Provides the main BytecodeCounter class and classes for the execution of instrumented classes. 
de.uka.ipd.sdq.ByCounter.reporting Provides classes for reporting ByCounter results. 
de.uka.ipd.sdq.ByCounter.utils Provides utility methods for ByCounter used in different packages. 
 

Uses of CountingResult in de.uka.ipd.sdq.ByCounter.execution
 

Methods in de.uka.ipd.sdq.ByCounter.execution that return CountingResult
static CountingResult CountingResult.add(CountingResult left, CountingResult right)
          The returned CountingResult is completely different from the summands w.r.t. the method name, etc.
static CountingResult CountingResult.addMethodsAndInstructionsOnly(CountingResult left, CountingResult right)
          The returned CountingResult is completely different from the summands w.r.t. the method name, etc.
 CountingResult CountingResult.clone()
           
 CountingResult CountingArtefactInformation.getCountingResult()
          Delegating getter for counting results that correspond to this artefact
 CountingResult CountingResultIndexing.getCountingResultByMethodStartTimestamp(java.sql.Timestamp timestamp)
          Gets the CountingArtefactInformation by the time of method execution beginning.
 CountingResult CollectionStrategyForceInlining.getForcedInlining_CountingResult()
           
 CountingResult CountingResultIndexing.retrieveCountingResultByMethodStartTime(long time)
          Gets the CountingArtefactInformation by the time of method execution beginning.
 CountingResult CountingResultIndexing.retrieveCountingResultByStartTime_evaluateCallingTree(long callerStartTime, boolean suppressDebugMessages)
          Gets a CountingResult that is the accumulation of all reported results of the calling tree specified by the callerStartTime.
 

Methods in de.uka.ipd.sdq.ByCounter.execution that return types with arguments of type CountingResult
 java.util.HashMap<CountingArtefactInformation,CountingResult> CountingResultIndexing.getAllCountingResultsByArtefacts()
          Gets the mapping of CountingArtefactInformation to CountingResults.
abstract  java.util.SortedSet<CountingResult> AbstractCollectionStrategy.retrieveAllCountingResults()
           
 java.util.SortedSet<CountingResult> CollectionStrategyDefault.retrieveAllCountingResults()
           
 java.util.SortedSet<CountingResult> CollectionStrategyForceInlining.retrieveAllCountingResults()
          
 java.util.SortedSet<CountingResult> CollectionStrategyWishedInlining.retrieveAllCountingResults()
           
 java.util.SortedSet<CountingResult> CountingResultCollector.retrieveAllCountingResults()
          Get all results the CountingResultCollector holds.
 java.util.SortedSet<CountingResult> CountingResultIndexing.retrieveCountingResultsByMethodName(java.lang.String name)
          Gets the CountingResults that exist for the given method name.
 

Methods in de.uka.ipd.sdq.ByCounter.execution with parameters of type CountingResult
 void CountingResult.add_methodsInstructionsOnly(CountingResult toBeAdded)
          Adds the counts of this CountingResult instance to the counting results of the CountingResult instance given as parameter
 void CountingResult.add(CountingResult toBeAdded)
          Adds the counts of this CountingResult instance to the counting results of the CountingResult instance given as parameter
static CountingResult CountingResult.add(CountingResult left, CountingResult right)
          The returned CountingResult is completely different from the summands w.r.t. the method name, etc.
 void CountingResultIndexing.add(CountingResult res, long reportingStart)
          Add to indexing infrastructure.
static CountingResult CountingResult.addMethodsAndInstructionsOnly(CountingResult left, CountingResult right)
          The returned CountingResult is completely different from the summands w.r.t. the method name, etc.
static ArrayParameters ArrayParameters.copyFromCountingResult(CountingResult cr)
          Copies array specific parameters from the CountingResult
 boolean CountingResult.shallowEquals(CountingResult vr)
          TODO replace return type to indicate precise location of difference (using the sum 1+2+4+8+16+etc.)
 

Uses of CountingResult in de.uka.ipd.sdq.ByCounter.reporting
 

Methods in de.uka.ipd.sdq.ByCounter.reporting that return CountingResult
static CountingResult CountingResultCSVWriter.readCountingResultFromCSV(java.io.File csvFile)
          Constructs an instance of CountingResult as written by CountingResultCSVWriter.writeResultToFile(CountingResult, boolean, long).
 

Methods in de.uka.ipd.sdq.ByCounter.reporting with parameters of type CountingResult
 void PdfReport.generatePdf(CountingResult[] cResults, MethodExecutionRecord methodExecution)
           
 long ChartResultWriter.writeResultToFile(CountingResult cr, boolean usePrevTimestamp, long prevTimestampToUse)
          (non-Javadoc)
 long CountingResultCSVWriter.writeResultToFile(CountingResult cr, boolean usePrevTimestamp, long prevTimestampToUse)
           
 long ICountingResultWriter.writeResultToFile(CountingResult cr, boolean usePrevTimestamp, long prevTimestampToUse)
           
 long PdfReport.writeResultToFile(CountingResult cr, boolean usePrevTimestamp, long prevTimestampToUse)
           
 

Uses of CountingResult in de.uka.ipd.sdq.ByCounter.utils
 

Methods in de.uka.ipd.sdq.ByCounter.utils that return CountingResult
static CountingResult CountingResultPersistance.deserialiseCountingResult(java.lang.String path)
           
 

Methods in de.uka.ipd.sdq.ByCounter.utils with parameters of type CountingResult
static java.lang.String CountingResultPersistance.serialiseCountingResult(CountingResult cr)
          Delegates to the fully parameterised method
static java.lang.String CountingResultPersistance.serialiseCountingResult(CountingResult cr, java.lang.String nameCore, java.lang.Long timestamp)
          Delegates to the fully parameterised method
static java.lang.String CountingResultPersistance.serialiseCountingResult(CountingResult cr, java.lang.String directory, java.lang.String nameCore, java.lang.String suffix, java.lang.String fileExtension, boolean useCountingResultMethodBeginningTimestamp, boolean useCountingResultMethodReportingTimestamp, boolean useTimestampParameter, java.lang.Long timestampToUse)