Home
last modified time | relevance | path

Searched refs:PerformanceStats (Results 1 – 25 of 41) sorted by relevance

12

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.runtime/bundles/org.eclipse.core.runtime/src/org/eclipse/core/runtime/
H A DPerformanceStats.java48 public class PerformanceStats { class
96 …private static final PerformanceStats EMPTY_STATS = new PerformanceStats("", ""); //$NON-NLS-1$ //…
111 private final static Map<PerformanceStats, PerformanceStats> statMap =
112 Collections.synchronizedMap(new HashMap<PerformanceStats,PerformanceStats>());
202 public static PerformanceStats[] getAllStats() { in getAllStats()
222 PerformanceStats newStats = new PerformanceStats(eventName, blameObject); in getStats()
296 PerformanceStats stats = it.next(); in removeStats()
349 PerformanceStats failedStat = new PerformanceStats(event, blame, contextName); in createFailureStats()
350 PerformanceStats old = statMap.get(failedStat); in createFailureStats()
386 if (!(obj instanceof PerformanceStats)) in equals()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.resources/bundles/org.eclipse.core.resources/src/org/eclipse/core/internal/events/
H A DResourceStats.java17 import org.eclipse.core.runtime.PerformanceStats;
27 private static PerformanceStats currentStats;
35 public static boolean TRACE_BUILDERS = PerformanceStats.isEnabled(ResourceStats.EVENT_BUILDERS);
36 public static boolean TRACE_LISTENERS = PerformanceStats.isEnabled(ResourceStats.EVENT_LISTENERS);
38 public static boolean TRACE_SNAPSHOT = PerformanceStats.isEnabled(ResourceStats.EVENT_SNAPSHOT);
69 PerformanceStats.getStats(EVENT_LISTENERS, listener.getClass().getName()); in listenerAdded()
77 PerformanceStats.removeStats(EVENT_LISTENERS, listener.getClass().getName()); in listenerRemoved()
81 currentStats = PerformanceStats.getStats(EVENT_BUILDERS, builder); in startBuild()
86 currentStats = PerformanceStats.getStats(EVENT_LISTENERS, listener); in startNotify()
91 currentStats = PerformanceStats.getStats(EVENT_SNAPSHOT, ResourcesPlugin.getWorkspace()); in startSnapshot()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.runtime/bundles/org.eclipse.core.tools/src/org/eclipse/core/tools/runtime/
H A DEventsView.java19 import org.eclipse.core.runtime.PerformanceStats;
63 return PerformanceStats.getAllStats(); in getElements()
94 if (!(element instanceof PerformanceStats)) { in getColumnText()
97 PerformanceStats stats = (PerformanceStats) element; in getColumnText()
115 if (!(element instanceof PerformanceStats)) { in getForeground()
118 PerformanceStats stats = (PerformanceStats) element; in getForeground()
192 PerformanceStats element = (PerformanceStats) iter.next(); in computeTotalLine()
208 PerformanceStats.clear(); in createActions()
236 PerformanceStats.addListener(statsListener); in createPartControl()
249 PerformanceStats.removeListener(statsListener); in dispose()
[all …]
H A DEventsSorter.java19 import org.eclipse.core.runtime.PerformanceStats;
70 Comparator comparator = new Comparator<PerformanceStats>() { in sort()
78 public int compare(PerformanceStats s1, PerformanceStats s2) { in sort()
99 int compareColumnValue(int column, PerformanceStats s1, PerformanceStats s2) { in sort()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.runtime/bundles/org.eclipse.core.runtime/src/org/eclipse/core/internal/runtime/
H A DPerformanceStatsProcessor.java20 import org.eclipse.core.runtime.PerformanceStats.PerformanceListener;
39 private final ArrayList<PerformanceStats> changes = new ArrayList<>();
45 private final HashMap<PerformanceStats,Long> failures = new HashMap<>();
66 public static void changed(PerformanceStats stats) { in changed()
81 public static void failed(PerformanceStats stats, String pluginId, long elapsed) { in failed()
96 PerformanceStats[] allStats = PerformanceStats.getAllStats(); in printStats()
97 for (PerformanceStats stats : allStats) { in printStats()
103 for (PerformanceStats stats : allStats) { in printStats()
193 PerformanceStats[] events; in run()
194 PerformanceStats[] failedEvents; in run()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ua/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/
H A DAbstractIntroPartImplementation.java18 import org.eclipse.core.runtime.PerformanceStats;
234 PerformanceStats setStandbyStateStats = null; in standbyStateChanged()
237 if (logUIcreationTime && PerformanceStats.ENABLED) { in standbyStateChanged()
238 PerformanceStats stats = PerformanceStats.getStats( in standbyStateChanged()
249 setStandbyStateStats = PerformanceStats.getStats( in standbyStateChanged()
260 if (PerformanceStats.ENABLED) { in standbyStateChanged()
274 if (PerformanceStats.ENABLED) { in standbyStateChanged()
275 PerformanceStats stats = PerformanceStats.getStats( in standbyStateChanged()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.runtime/bundles/org.eclipse.core.tools/src/org/eclipse/core/tools/
H A DTableSelectionProviderDecorator.java17 import org.eclipse.core.runtime.PerformanceStats;
73 if (obj instanceof PerformanceStats) { in getSelection()
74 copyText.append(prettyPluginStats((PerformanceStats) obj)); in getSelection()
92 private String prettyPluginStats(PerformanceStats stats) { in prettyPluginStats()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/
H A DProposalSorterHandle.java25 import org.eclipse.core.runtime.PerformanceStats;
59 private static final boolean MEASURE_PERFORMANCE= PerformanceStats.isEnabled(PERFORMANCE_EVENT);
191 PerformanceStats stats= startMeter(SORT, sorter); in sortProposals()
217 private IStatus stopMeter(final PerformanceStats stats, String operation) { in stopMeter()
226 private PerformanceStats startMeter(String context, AbstractProposalSorter sorter) { in startMeter()
227 final PerformanceStats stats; in startMeter()
229 stats= PerformanceStats.getStats(PERFORMANCE_EVENT, sorter); in startMeter()
H A DCompletionProposalComputerDescriptor.java32 import org.eclipse.core.runtime.PerformanceStats;
81 private static final boolean MEASURE_PERFORMANCE= PerformanceStats.isEnabled(PERFORMANCE_EVENT);
344 PerformanceStats stats= startMeter(context, computer); in computeCompletionProposals()
391 PerformanceStats stats= startMeter(context, computer); in computeContextInformation()
434 PerformanceStats stats= startMeter(SESSION_STARTED, computer); in sessionStarted()
467 PerformanceStats stats= startMeter(SESSION_ENDED, computer); in sessionEnded()
483 private PerformanceStats startMeter(Object context, IJavaCompletionProposalComputer computer) { in startMeter()
484 final PerformanceStats stats; in startMeter()
486 stats= PerformanceStats.getStats(PERFORMANCE_EVENT, computer); in startMeter()
499 private void stopMeter(final PerformanceStats stats, String operation) { in stopMeter()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/misc/
H A DUIStats.java17 import org.eclipse.core.runtime.PerformanceStats;
93 if (events[i] != null && PerformanceStats.ENABLED) {
94 debug[i] = PerformanceStats.isEnabled(events[i]);
139 PerformanceStats.getStats(events[event], blame).addRun(elapsed, label); in end()
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/cpp/src/arrow/flight/
H A Dflight_benchmark.cc77 struct PerformanceStats { struct
82 PerformanceStats() : latencies(acc::extended_p_square_probabilities = quantiles) {} in PerformanceStats() argument
130 PerformanceStats* stats) { in RunDoGetTest()
176 PerformanceStats* stats) { in RunDoPutTest()
232 Status DoSinglePerfRun(FlightClient* client, bool test_put, PerformanceStats* stats) { in DoSinglePerfRun()
301 PerformanceStats stats; in RunPerformanceTest()
/dports/www/firefox-legacy/firefox-52.8.0esr/toolkit/components/perfmonitoring/
H A Dmoz.build13 'PerformanceStats-content.js',
14 'PerformanceStats.jsm',
H A DPerformanceWatcher.jsm12 * than PerformanceStats. As PerformanceStats, this API does not provide any
57 let { PerformanceStats, performanceStatsService } = Cu.import("resource://gre/modules/PerformanceSt…
283 this._monitor = PerformanceStats.getMonitor(["jank", "cpow"]);
/dports/lang/spidermonkey60/firefox-60.9.0/toolkit/components/perfmonitoring/
H A Dmoz.build15 'PerformanceStats-content.js',
16 'PerformanceStats.jsm',
H A DPerformanceWatcher.jsm12 * than PerformanceStats. As PerformanceStats, this API does not provide any
45 let { PerformanceStats, performanceStatsService } = ChromeUtils.import("resource://gre/modules/Perf…
243 this._monitor = PerformanceStats.getMonitor(["jank", "cpow"]);
H A DREADME.md14PerformanceStats.jsm. If you really need to use it from C++ code, you should use the performance …
115 ## PerformanceStats.jsm-level
117 PerformanceStats provides a JS-friendly API on top of nsIPerformanceStatsService. The main differen…
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ua/org.eclipse.ui.intro/src/org/eclipse/ui/intro/config/
H A DCustomizableIntroPart.java20 import org.eclipse.core.runtime.PerformanceStats;
130 if (PerformanceStats.ENABLED) in CustomizableIntroPart()
131 PerformanceStats.getStats( in CustomizableIntroPart()
209 PerformanceStats stats = PerformanceStats.getStats( in createPartControl()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/core/refactoring/participants/
H A DProcessorBasedRefactoring.java31 import org.eclipse.core.runtime.PerformanceStats;
253 …final PerformanceStats stats= PerformanceStats.getStats(PERF_CHECK_CONDITIONS, getName() + ", " + … in checkFinalConditions()
302 …final PerformanceStats stats= PerformanceStats.getStats(PERF_CREATE_CHANGES, getName() + ", " + pa… in createChange()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/
H A DOpenable.java24 import org.eclipse.core.runtime.PerformanceStats;
115 PerformanceStats performanceStats = CompletionEngine.PERF in codeComplete()
116 ? PerformanceStats.getStats(JavaModelManager.COMPLETION_PERF, this) in codeComplete()
146 PerformanceStats performanceStats = SelectionEngine.PERF in codeSelect()
147 ? PerformanceStats.getStats(JavaModelManager.SELECTION_PERF, this) in codeSelect()
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/arrow/flight/
H A Dflight_benchmark.cc83 struct PerformanceStats { struct
130 PerformanceStats* stats) { in RunDoGetTest()
235 PerformanceStats* stats) { in RunDoPutTest()
265 PerformanceStats* stats) { in DoSinglePerfRun()
337 PerformanceStats stats; in RunPerformanceTest()
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/cpp/src/arrow/flight/
H A Dflight_benchmark.cc63 struct PerformanceStats { struct
64 PerformanceStats() : total_records(0), total_bytes(0) {} in PerformanceStats() function
204 PerformanceStats stats; in RunPerformanceTest()
/dports/net/megacmd/MEGAcmd-1.4.1_Win/sdk/include/mega/win32/
H A Dmegawaiter.h49 struct PerformanceStats struct
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/
H A DCommonNavigator.java20 import org.eclipse.core.runtime.PerformanceStats;
183 final PerformanceStats stats= PerformanceStats.getStats(PERF_CREATE_PART_CONTROL, this); in createPartControl()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/
H A DRefactorActionGroup.java26 import org.eclipse.core.runtime.PerformanceStats;
238 final PerformanceStats stats= PerformanceStats.getStats(PERF_REFACTOR_ACTION_GROUP, this); in RefactorActionGroup()
361 final PerformanceStats stats= PerformanceStats.getStats(PERF_REFACTOR_ACTION_GROUP, this); in RefactorActionGroup()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/
H A DJavaSearchQuery.java23 import org.eclipse.core.runtime.PerformanceStats;
197 final PerformanceStats stats= PerformanceStats.getStats(PERF_SEARCH_PARTICIPANT, participant); in run()

12