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

1 2 3 4 5 6

  /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...]
  /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 39 void APSInt::Profile(FoldingSetNodeID& ID) const {
41 APInt::Profile(ID);
  /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.
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DynamicTypeInfo.h 40 void Profile(llvm::FoldingSetNodeID &ID) const {
Environment.h 42 /// Profile an EnvironmentEntry for inclusion in a FoldingSet.
43 static void Profile(llvm::FoldingSetNodeID &ID,
49 void Profile(llvm::FoldingSetNodeID &ID) const {
50 Profile(ID, *this);
79 /// Profile - Profile the contents of an Environment object for use
81 static void Profile(llvm::FoldingSetNodeID& ID, const Environment* env) {
82 env->ExprBindings.Profile(ID);
85 /// Profile - Used to profile the contents of this object for inclusio
    [all...]
  /external/clang/lib/AST/
TemplateName.cpp 30 void SubstTemplateTemplateParmStorage::Profile(llvm::FoldingSetNodeID &ID) {
31 Profile(ID, Parameter, Replacement);
34 void SubstTemplateTemplateParmStorage::Profile(llvm::FoldingSetNodeID &ID,
41 void SubstTemplateTemplateParmPackStorage::Profile(llvm::FoldingSetNodeID &ID,
43 Profile(ID, Context, Parameter, getArgumentPack());
46 void SubstTemplateTemplateParmPackStorage::Profile(llvm::FoldingSetNodeID &ID,
51 ArgPack.Profile(ID, Context);
  /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 namespace
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 namespace
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 namespace
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 namespace
25 p = Profile()
35 # have to the seconds that the profile/pstats module work
74 class Profile(profile.Profile):
  /external/clang/lib/StaticAnalyzer/Core/
BlockCounter.cpp 40 void Profile(llvm::FoldingSetNodeID &ID) const {
BasicValueFactory.cpp 23 void CompoundValData::Profile(llvm::FoldingSetNodeID& ID, QualType T,
25 T.Profile(ID);
29 void LazyCompoundValData::Profile(llvm::FoldingSetNodeID& ID,
41 static inline void Profile(const SValData& X, llvm::FoldingSetNodeID& ID) {
42 X.first.Profile(ID);
48 static inline void Profile(const SValPair& X, llvm::FoldingSetNodeID& ID) {
49 X.first.Profile(ID);
50 X.second.Profile(ID);
77 X.Profile(ID);
112 CompoundValData::Profile(ID, T, Vals)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
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...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
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...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
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/llvm/include/llvm/ProfileData/
SampleProfWriter.h 1 //===- SampleProfWriter.h - Write LLVM sample profile data ----------------===//
29 /// \brief Sample-based profile writer. Base class.
48 const FunctionSamples &Profile = I.second;
49 if (std::error_code EC = write(FName, Profile))
57 /// Profile writer factory.
72 /// \brief Write a file header for the profile file.
76 /// \brief Output stream where to emit the profile to.
80 /// \brief Sample-based profile writer (text format).
105 /// \brief Sample-based profile writer (binary format).
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.cpp 38 /// Profile - Used to gather unique data for the abbreviation folding set.
40 void DIEAbbrevData::Profile(FoldingSetNodeID &ID) const {
51 /// Profile - Used to gather unique data for the abbreviation folding set.
53 void DIEAbbrev::Profile(FoldingSetNodeID &ID) const {
59 Data[i].Profile(ID);
  /external/llvm/unittests/ProfileData/
SampleProfTest.cpp 44 void readProfile(std::unique_ptr<MemoryBuffer> &Profile) {
45 auto ReaderOrErr = SampleProfileReader::create(Profile, getGlobalContext());
75 auto Profile = MemoryBuffer::getMemBufferCopy(Data);
76 readProfile(Profile);
  /external/mesa3d/src/egl/main/
eglcontext.h 58 EGLint Profile;

Completed in 434 milliseconds

1 2 3 4 5 6