HomeSort by relevance Sort by last modified time
    Searched refs:Profiler (Results 51 - 75 of 84) sorted by null

1 23 4

  /external/python/cpython2/Lib/
cProfile.py 3 """Python interface for the 'lsprof' profiler.
15 """Run statement under profiler optionally saving results in filename
40 """Run statement under profiler, supplying your own globals and locals,
62 print "in the Python Library Reference, section 'The Python Profiler'."
66 class Profile(_lsprof.Profiler):
69 Builds a profiler object using the specified timer function.
130 # a profiler to profile a statement, given as a string.
197 # When invoked as main program, invoke the profiler on a script
  /prebuilts/gdb/darwin-x86/lib/python2.7/
cProfile.py 3 """Python interface for the 'lsprof' profiler.
15 """Run statement under profiler optionally saving results in filename
40 """Run statement under profiler, supplying your own globals and locals,
62 print "in the Python Library Reference, section 'The Python Profiler'."
66 class Profile(_lsprof.Profiler):
69 Builds a profiler object using the specified timer function.
130 # a profiler to profile a statement, given as a string.
197 # When invoked as main program, invoke the profiler on a script
  /prebuilts/gdb/linux-x86/lib/python2.7/
cProfile.py 3 """Python interface for the 'lsprof' profiler.
15 """Run statement under profiler optionally saving results in filename
40 """Run statement under profiler, supplying your own globals and locals,
62 print "in the Python Library Reference, section 'The Python Profiler'."
66 class Profile(_lsprof.Profiler):
69 Builds a profiler object using the specified timer function.
130 # a profiler to profile a statement, given as a string.
197 # When invoked as main program, invoke the profiler on a script
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cProfile.py 3 """Python interface for the 'lsprof' profiler.
15 """Run statement under profiler optionally saving results in filename
40 """Run statement under profiler, supplying your own globals and locals,
62 print "in the Python Library Reference, section 'The Python Profiler'."
66 class Profile(_lsprof.Profiler):
69 Builds a profiler object using the specified timer function.
130 # a profiler to profile a statement, given as a string.
197 # When invoked as main program, invoke the profiler on a script
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cProfile.py 3 """Python interface for the 'lsprof' profiler.
15 """Run statement under profiler optionally saving results in filename
40 """Run statement under profiler, supplying your own globals and locals,
62 print "in the Python Library Reference, section 'The Python Profiler'."
66 class Profile(_lsprof.Profiler):
69 Builds a profiler object using the specified timer function.
130 # a profiler to profile a statement, given as a string.
197 # When invoked as main program, invoke the profiler on a script
  /external/v8/src/
log.cc 25 #include "src/profiler/profiler-listener.h"
26 #include "src/profiler/tick-sample.h"
27 #include "src/runtime-profiler.h"
545 // The Profiler samples pc and sp values for the main thread.
550 class Profiler: public base::Thread {
552 explicit Profiler(Isolate* isolate);
602 // Tells whether profiler is engaged, that is, processing thread is stated.
614 // Ticker used to provide ticks to the profiler and the sliding state
629 void SetProfiler(Profiler* profiler)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
ProfileGrammarParser.cs 59 : this( input, new Profiler(null), new RecognizerSharedState() )
65 Profiler p = (Profiler)dbg;
78 Profiler p = (Profiler)dbg;
89 ((Profiler)dbg).ExamineRuleMemoization(input, ruleIndex, ProfileGrammarParser.ruleNames[ruleIndex]);
95 ((Profiler)dbg).Memoize(input, ruleIndex, ruleStartIndex, ProfileGrammarParser.ruleNames[ruleIndex]);
    [all...]
  /external/autotest/frontend/afe/
admin.py 274 admin.site.register(models.Profiler, ProfilerAdmin)
rpc_interface.py 609 return models.Profiler.add_object(name=name, description=description).id
613 models.Profiler.smart_get(id).update_object(data)
617 models.Profiler.smart_get(id).delete()
622 models.Profiler.list_objects(filter_data))
    [all...]
rpc_utils.py 278 profiler_objects = [models.Profiler.smart_get(profiler)
279 for profiler in profilers]
    [all...]
models.py 881 class Profiler(dbmodels.Model, model_logic.ModelExtensions):
884 name: profiler name
898 """Metadata for class Profiler."""
    [all...]
  /prebuilts/tools/common/m2/repository/org/antlr/antlr-runtime/3.5.2/
antlr-runtime-3.5.2.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/antlr-runtime/3.5.2/
antlr-runtime-3.5.2.jar 
  /packages/apps/Camera2/src/com/android/camera/
CaptureModule.java 77 import com.android.camera.stats.profiler.Profile;
78 import com.android.camera.stats.profiler.Profiler;
79 import com.android.camera.stats.profiler.Profilers;
344 private final Profiler mProfiler = Profilers.instance().guard();
    [all...]
CameraActivity.java 129 import com.android.camera.stats.profiler.Profile;
130 import com.android.camera.stats.profiler.Profiler;
131 import com.android.camera.stats.profiler.Profilers;
291 private final Profiler mProfiler = Profilers.instance().guard();
    [all...]
  /external/swiftshader/src/Main/
SwiftConfig.cpp 30 extern Profiler profiler;
457 profiler.reset();
466 html += "<p>FPS: " + ftoa(profiler.FPS) + "</p>\n";
467 html += "<p>Frame: " + itoa(profiler.framesTotal) + "</p>\n";
470 int texTime = (int)(1000 * profiler.cycles[PERF_TEX] / profiler.cycles[PERF_PIXEL] + 0.5);
471 int shaderTime = (int)(1000 * profiler.cycles[PERF_SHADER] / profiler.cycles[PERF_PIXEL] + 0.5);
472 int pipeTime = (int)(1000 * profiler.cycles[PERF_PIPE] / profiler.cycles[PERF_PIXEL] + 0.5)
    [all...]
  /frameworks/base/core/java/android/app/
ActivityThread.java 245 Profiler mProfiler;
562 /** Initial values for {@link Profiler}. */
570 static final class Profiler {
    [all...]
  /external/boringssl/ios-arm/crypto/fipsmodule/
aes-armv4.S 38 @ Profiler-assisted and platform-specific optimization resulted in 16%
  /external/boringssl/linux-arm/crypto/fipsmodule/
aes-armv4.S 39 @ Profiler-assisted and platform-specific optimization resulted in 16%
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/checkstyle/
checkstyle.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 
  /prebuilts/sdk/tools/jacks/
jack-4.32.CANDIDATE.jar 
  /prebuilts/tools/common/m2/repository/org/antlr/antlr4/4.5.3/
antlr4-4.5.3.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/antlr4/4.5.3/
antlr4-4.5.3.jar 

Completed in 574 milliseconds

1 23 4