HomeSort by relevance Sort by last modified time
    Searched refs:profiler (Results 1 - 25 of 192) sorted by null

1 2 3 4 5 6 7 8

  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
dic_node_profiler.h 23 #define PROF_SPACE_SUBSTITUTION(profiler) profiler.profSpaceSubstitution()
24 #define PROF_SPACE_OMISSION(profiler) profiler.profSpaceOmission()
25 #define PROF_ADDITIONAL_PROXIMITY(profiler) profiler.profAdditionalProximity()
26 #define PROF_SUBSTITUTION(profiler) profiler.profSubstitution()
27 #define PROF_OMISSION(profiler) profiler.profOmission(
    [all...]
  /external/slf4j/slf4j-ext/src/test/java/org/slf4j/profiler/
ProfilerTest.java 25 package org.slf4j.profiler;
41 Profiler profiler = new Profiler("SMOKE"); local
42 profiler.stop();
43 StopWatch gSW = profiler.globalStopWatch;
46 profiler.sanityCheck();
48 assertEquals(0, profiler.childTimeInstrumentList.size());
49 assertNull(profiler.getLastTimeInstrument());
53 Profiler profiler = new Profiler("BAS") local
85 Profiler profiler = new Profiler("BAS"); local
    [all...]
BasicProfilerDemo.java 25 package org.slf4j.profiler;
44 + Profiler [BASIC]
56 // create a profiler called "BASIC"
57 Profiler profiler = new Profiler("BASIC"); local
58 profiler.start("A");
61 profiler.start("B");
64 profiler.start("OTHER");
66 profiler.stop().print()
    [all...]
NestedProfilerDemo.java 25 package org.slf4j.profiler;
43 + Profiler [DEMO]
45 |---+ Profiler [SORT_AND_PRUNE]
58 // create a profiler called "DEMO"
59 Profiler profiler = new Profiler("DEMO"); local
61 // register this profiler in the thread context's profiler registry
63 profiler.registerWith(profilerRegistry)
    [all...]
NestedProfilerDemo2.java 25 package org.slf4j.profiler;
44 Profiler profiler = new Profiler("DEMO"); local
45 // associate a logger with the profiler
46 profiler.setLogger(logger);
49 profiler.registerWith(profilerRegistry);
51 profiler.start("RANDOM");
56 profiler.startNested(SortAndPruneComposites.NESTED_PROFILER_NAME);
62 profiler.stop().log()
    [all...]
PackageTest.java 25 package org.slf4j.profiler;
  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/profiler/
DurationUnit.java 25 package org.slf4j.profiler;
TimeInstrumentStatus.java 30 package org.slf4j.profiler;
ProfilerRegistry.java 25 package org.slf4j.profiler;
39 Map<String, Profiler> profilerMap = new HashMap<String, Profiler>();
41 public void put(Profiler profiler) {
42 put(profiler.getName(), profiler); local
45 public void put(String name, Profiler profiler) {
46 profilerMap.put(name, profiler);
    [all...]
TimeInstrument.java 25 package org.slf4j.profiler;
29 * {@link Profiler} and {@link StopWatch} classes. It settles the
30 * general feel of the profiler package.
73 * this time instrument. Note that {@link StopWatch} instances cannot log while {@link Profiler}
  /external/vogar/src/vogar/target/
Runner.java 30 boolean run(Profiler profiler);
MainRunner.java 45 public boolean run(Profiler profiler) {
48 if (profiler != null) {
49 profiler.start();
57 if (profiler != null) {
58 profiler.stop();
CaliperRunner.java 43 public boolean run(Profiler profiler) {
64 // as otherwise the profiler just profiles the main Caliper process rather than the
71 if (profiler != null) {
72 profiler.start();
80 if (profiler != null) {
81 profiler.stop();
  /packages/apps/Camera2/src/com/android/camera/stats/profiler/
Profiler.java 17 package com.android.camera.stats.profiler;
23 public interface Profiler {
Writer.java 17 package com.android.camera.stats.profiler;
Profile.java 17 package com.android.camera.stats.profiler;
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
ThreadSampler.java 17 package dalvik.system.profiler;
22 * The {@code ThreadSampler} interfaces allows a profiler to choose
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/profile/
base.h 35 #include <profile/impl/profiler.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/profile/
base.h 35 #include <profile/impl/profiler.h>
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/profile/
base.h 35 #include <profile/impl/profiler.h>
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/profile/
base.h 35 #include <profile/impl/profiler.h>
  /external/autotest/client/bin/
profilers.py 8 def load_profiler(self, profiler, args, dargs):
9 prof_dir = os.path.join(self.job.autodir, "profilers", profiler)
12 self.job.install_pkg(profiler, "profiler", prof_dir)
17 raise profiler_manager.ProfilerNotPresentError(profiler)
20 profiler, "autotest_lib.client.profilers.%s" % profiler)
22 newprofiler = getattr(profiler_module, profiler)(self.job)
24 newprofiler.name = profiler
27 newprofiler.tmpdir = os.path.join(self.tmpdir, profiler)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/app/
FirstRunDetector.java 23 import com.android.camera.stats.profiler.Profile;
24 import com.android.camera.stats.profiler.Profiler;
25 import com.android.camera.stats.profiler.Profilers;
46 private FirstRunDetector(Profiler profiler) {
47 mProfile = profiler.create("FirstRunDetector getTimeOfFirstRun");
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_hotshot.py 65 def run_test(self, callable, events, profiler=None):
66 if profiler is None:
67 profiler = self.new_profiler()
68 self.assertTrue(not profiler._prof.closed)
69 profiler.runcall(callable)
70 self.assertTrue(not profiler._prof.closed)
71 profiler.close()
72 self.assertTrue(profiler._prof.closed)
78 profiler = self.new_profiler()
79 profiler.runcall(f, profiler
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_hotshot.py 65 def run_test(self, callable, events, profiler=None):
66 if profiler is None:
67 profiler = self.new_profiler()
68 self.assertTrue(not profiler._prof.closed)
69 profiler.runcall(callable)
70 self.assertTrue(not profiler._prof.closed)
71 profiler.close()
72 self.assertTrue(profiler._prof.closed)
78 profiler = self.new_profiler()
79 profiler.runcall(f, profiler
    [all...]

Completed in 417 milliseconds

1 2 3 4 5 6 7 8