HomeSort by relevance Sort by last modified time
    Searched defs:Profile (Results 1 - 25 of 590) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/swiftshader/third_party/LLVM/lib/Support/
APSInt.cpp 20 void APSInt::Profile(FoldingSetNodeID& ID) const {
22 APInt::Profile(ID);
  /external/javasqlite/src/main/java/SQLite/
Profile.java 4 * Callback interface for SQLite's profile function.
7 public interface Profile {
10 * Callback to profile (ie log) one SQL statement
17 public void profile(String stmt, long est); method in interface:Profile
  /external/llvm/lib/Support/
APSInt.cpp 40 void APSInt::Profile(FoldingSetNodeID& ID) const {
42 APInt::Profile(ID);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/hotshot/
__init__.py 8 "use the 'profile' module instead.", stacklevel=2)
10 class Profile:
20 if self.__class__ is Profile:
43 """Add an arbitrary labelled value to the profile log."""
46 # These methods offer the same interface as the profile.Profile class,
50 """Profile an exec-compatible string in the script
71 """Profile a single call of a callable.
stats.py 3 import profile
25 p = Profile()
35 # have to the seconds that the profile/pstats module work
74 class Profile(profile.Profile):
  /external/python/cpython2/Lib/hotshot/
__init__.py 8 "use the 'profile' module instead.", stacklevel=2)
10 class Profile:
20 if self.__class__ is Profile:
43 """Add an arbitrary labelled value to the profile log."""
46 # These methods offer the same interface as the profile.Profile class,
50 """Profile an exec-compatible string in the script
71 """Profile a single call of a callable.
stats.py 3 import profile
25 p = Profile()
35 # have to the seconds that the profile/pstats module work
74 class Profile(profile.Profile):
  /packages/apps/Camera2/src/com/android/camera/stats/profiler/
Profile.java 20 * A profile is the primary mechanism used to start, stop,
23 public interface Profile {
28 public Profile start();
41 * Stop the profile.
46 * Stop the profile for a given reason.
  /prebuilts/gdb/darwin-x86/lib/python2.7/hotshot/
__init__.py 8 "use the 'profile' module instead.", stacklevel=2)
10 class Profile:
20 if self.__class__ is Profile:
43 """Add an arbitrary labelled value to the profile log."""
46 # These methods offer the same interface as the profile.Profile class,
50 """Profile an exec-compatible string in the script
71 """Profile a single call of a callable.
stats.py 3 import profile
25 p = Profile()
35 # have to the seconds that the profile/pstats module work
74 class Profile(profile.Profile):
  /prebuilts/gdb/linux-x86/lib/python2.7/hotshot/
__init__.py 8 "use the 'profile' module instead.", stacklevel=2)
10 class Profile:
20 if self.__class__ is Profile:
43 """Add an arbitrary labelled value to the profile log."""
46 # These methods offer the same interface as the profile.Profile class,
50 """Profile an exec-compatible string in the script
71 """Profile a single call of a callable.
stats.py 3 import profile
25 p = Profile()
35 # have to the seconds that the profile/pstats module work
74 class Profile(profile.Profile):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/hotshot/
__init__.py 8 "use the 'profile' module instead.", stacklevel=2)
10 class Profile:
20 if self.__class__ is Profile:
43 """Add an arbitrary labelled value to the profile log."""
46 # These methods offer the same interface as the profile.Profile class,
50 """Profile an exec-compatible string in the script
71 """Profile a single call of a callable.
stats.py 3 import profile
25 p = Profile()
35 # have to the seconds that the profile/pstats module work
74 class Profile(profile.Profile):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/hotshot/
__init__.py 8 "use the 'profile' module instead.", stacklevel=2)
10 class Profile:
20 if self.__class__ is Profile:
43 """Add an arbitrary labelled value to the profile log."""
46 # These methods offer the same interface as the profile.Profile class,
50 """Profile an exec-compatible string in the script
71 """Profile a single call of a callable.
stats.py 3 import profile
25 p = Profile()
35 # have to the seconds that the profile/pstats module work
74 class Profile(profile.Profile):
  /external/v8/tools/
profile.js 30 * Creates a profile object for processing profiling-related events
35 function Profile() {
49 Profile.prototype.skipThisFunction = function(name) {
60 Profile.Operation = {
72 Profile.CodeState = {
82 * See the Profile.Operation enum for the list of
91 Profile.prototype.handleUnknownCode = function(
103 Profile.prototype.addLibrary = function(
119 Profile.prototype.addStaticCode = function(
136 Profile.prototype.addCode = function
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
cProfile.py 4 Compatible with the 'profile' module.
7 __all__ = ["run", "runctx", "help", "Profile"]
25 prof = Profile()
43 statement and filename have the same semantics as profile.run
45 prof = Profile()
61 print "Documentation for the profile/cProfile modules can be found "
66 class Profile(_lsprof.Profiler):
67 """Profile(custom_timer=None, time_unit=None, subcalls=True, builtins=True)
130 # a profiler to profile a statement, given as a string.
145 # This method is more useful to profile a single function call.
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DynamicTypeInfo.h 40 void Profile(llvm::FoldingSetNodeID &ID) const {
  /external/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
MPITypes.h 34 void Profile(llvm::FoldingSetNodeID &Id) const {
  /external/llvm/unittests/ADT/
FoldingSet.cpp 43 void Profile(FoldingSetNodeID &ID) const {
57 T.Profile(ID);
72 S.Profile(ID);
123 Finder.Profile(ID);
  /external/python/cpython2/Lib/
cProfile.py 4 Compatible with the 'profile' module.
7 __all__ = ["run", "runctx", "help", "Profile"]
25 prof = Profile()
43 statement and filename have the same semantics as profile.run
45 prof = Profile()
61 print "Documentation for the profile/cProfile modules can be found "
66 class Profile(_lsprof.Profiler):
67 """Profile(custom_timer=None, time_unit=None, subcalls=True, builtins=True)
130 # a profiler to profile a statement, given as a string.
145 # This method is more useful to profile a single function call
    [all...]
  /external/python/cpython3/Lib/
cProfile.py 4 Compatible with the 'profile' module.
7 __all__ = ["run", "runctx", "Profile"]
10 import profile as _pyprofile
16 return _pyprofile._Utils(Profile).run(statement, filename, sort)
19 return _pyprofile._Utils(Profile).runctx(statement, globals, locals,
27 class Profile(_lsprof.Profiler):
28 """Profile(custom_timer=None, time_unit=None, subcalls=True, builtins=True)
90 # a profiler to profile a statement, given as a string.
105 # This method is more useful to profile a single function call.
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DynamicTypeInfo.h 40 void Profile(llvm::FoldingSetNodeID &ID) const {
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/StaticAnalyzer/Core/PathSensitive/
DynamicTypeInfo.h 40 void Profile(llvm::FoldingSetNodeID &ID) const {

Completed in 672 milliseconds

1 2 3 4 5 6 7 8 91011>>