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

1 2 3 4

  /external/llvm/lib/Support/
APSInt.cpp 20 void APSInt::Profile(FoldingSetNodeID& ID) const {
22 APInt::Profile(ID);
  /external/chromium_org/third_party/npapi/npspy/common/
profile.cpp 40 #include "profile.h"
42 Profile::Profile()
46 Profile::~Profile()
  /external/chromium_org/third_party/npapi/npspy/include/
profile.h 41 class Profile
44 Profile();
45 ~Profile();
  /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/chromium_org/v8/tools/
profile.js 30 * Creates a profile object for processing profiling-related events
35 function Profile() {
48 Profile.prototype.skipThisFunction = function(name) {
59 Profile.Operation = {
71 Profile.CodeState = {
81 * See the Profile.Operation enum for the list of
90 Profile.prototype.handleUnknownCode = function(
102 Profile.prototype.addLibrary = function(
118 Profile.prototype.addStaticCode = function(
135 Profile.prototype.addCode = function
    [all...]
  /external/v8/tools/
profile.js 30 * Creates a profile object for processing profiling-related events
35 function Profile() {
48 Profile.prototype.skipThisFunction = function(name) {
59 Profile.Operation = {
71 Profile.CodeState = {
81 * See the Profile.Operation enum for the list of
90 Profile.prototype.handleUnknownCode = function(
102 Profile.prototype.addLibrary = function(
118 Profile.prototype.addStaticCode = function(
135 Profile.prototype.addCode = function
    [all...]
  /external/chromium/android/autofill/
profile_android.cc 30 // We only need the Profile constructor (but that is needed since
31 // ProfileImplAndroid is a subclass of Profile). To avoid compiling the file,
34 // Taken from chrome/browser/profiles/profile.cc
35 Profile::Profile()
49 Profile* ProfileImplAndroid::GetOriginalProfile()
74 Profile* Profile::CreateProfile(const FilePath& path) {
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/profiles/
Profile.java 10 * Wrapper that allows passing a Profile reference around in the Java layer.
12 public class Profile {
16 private Profile(int nativeProfileAndroid) {
21 private static Profile create(int nativeProfileAndroid) {
22 return new Profile(nativeProfileAndroid);
  /external/chromium_org/chrome/browser/profiles/
profile.cc 5 #include "chrome/browser/profiles/profile.h"
30 Profile::Profile()
36 Profile::~Profile() {
40 Profile* Profile::FromBrowserContext(content::BrowserContext* browser_context) {
42 return static_cast<Profile*>(browser_context);
46 Profile* Profile::FromWebUI(content::WebUI* web_ui)
    [all...]
  /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, TemplateArgument(Arguments, size()));
46 void SubstTemplateTemplateParmPackStorage::Profile(llvm::FoldingSetNodeID &ID,
51 ArgPack.Profile(ID, Context);
  /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 41 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/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/chromium_org/third_party/mesa/src/src/egl/main/
eglcontext.h 58 EGLint Profile;
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporterVisitor.h 73 virtual void Profile(llvm::FoldingSetNodeID &ID) const = 0;
121 void Profile(llvm::FoldingSetNodeID &ID) const;
147 void Profile(llvm::FoldingSetNodeID &ID) const;
170 void Profile(llvm::FoldingSetNodeID &ID) const {
188 void Profile(llvm::FoldingSetNodeID &ID) const {
260 void Profile(llvm::FoldingSetNodeID &ID) const {
290 virtual void Profile(llvm::FoldingSetNodeID &ID) const {
322 void Profile(llvm::FoldingSetNodeID &ID) const;
  /external/compiler-rt/make/platform/
darwin_fat.mk 26 Configs := Debug Release Profile
45 CFLAGS.Profile := $(CFLAGS) -pg -g
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.cpp 34 /// Profile - Used to gather unique data for the abbreviation folding set.
36 void DIEAbbrevData::Profile(FoldingSetNodeID &ID) const {
45 /// Profile - Used to gather unique data for the abbreviation folding set.
47 void DIEAbbrev::Profile(FoldingSetNodeID &ID) const {
53 Data[i].Profile(ID);
  /external/mesa3d/src/egl/main/
eglcontext.h 58 EGLint Profile;

Completed in 523 milliseconds

1 2 3 4