HomeSort by relevance Sort by last modified time
    Searched defs:Profile (Results 26 - 50 of 104) sorted by null

12 3 4 5

  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
GLRootView.java 43 import com.android.gallery3d.util.Profile;
319 Profile.enable(20); // take a sample every 20ms
345 Profile.hold();
384 Profile.commit();
386 Profile.drop();
538 Profile.disableAll();
539 Profile.dumpToFile("/sdcard/gallery.prof");
540 Profile.reset();
  /external/clang/include/clang/AST/
NestedNameSpecifier.h 213 void Profile(llvm::FoldingSetNodeID &ID) const {
TemplateName.h 140 void Profile(llvm::FoldingSetNodeID &ID, ASTContext &Context);
142 static void Profile(llvm::FoldingSetNodeID &ID,
319 void Profile(llvm::FoldingSetNodeID &ID) {
355 void Profile(llvm::FoldingSetNodeID &ID);
357 static void Profile(llvm::FoldingSetNodeID &ID,
420 void Profile(llvm::FoldingSetNodeID &ID) {
421 Profile(ID, getQualifier(), hasTemplateKeyword(), getTemplateDecl());
424 static void Profile(llvm::FoldingSetNodeID &ID, NestedNameSpecifier *NNS,
518 void Profile(llvm::FoldingSetNodeID &ID) {
520 Profile(ID, getQualifier(), getIdentifier())
    [all...]
CanonicalType.h 182 void Profile(llvm::FoldingSetNodeID &ID) const {
  /external/clang/lib/AST/
DeclarationName.cpp 41 void Profile(llvm::FoldingSetNodeID &ID) {
71 void Profile(llvm::FoldingSetNodeID &FSID) {
  /external/clang/lib/StaticAnalyzer/Checkers/
PthreadLockChecker.cpp 47 void Profile(llvm::FoldingSetNodeID &ID) const {
SimpleStreamChecker.cpp 45 void Profile(llvm::FoldingSetNodeID &ID) const {
MacOSKeychainAPIChecker.cpp 51 void Profile(llvm::FoldingSetNodeID &ID) const {
142 void Profile(llvm::FoldingSetNodeID &ID) const override {
StreamChecker.cpp 53 void Profile(llvm::FoldingSetNodeID &ID) const {
  /external/clang/lib/StaticAnalyzer/Core/
RangeConstraintManager.cpp 51 void Profile(llvm::FoldingSetNodeID &ID) const {
93 /// Profile - Generates a hash profile of this RangeSet for use
95 void Profile(llvm::FoldingSetNodeID &ID) const { ranges.Profile(ID); }
  /external/deqp/framework/opengl/
gluRenderContext.hpp 47 enum Profile
50 PROFILE_CORE, //!< OpenGL Core Profile
51 PROFILE_COMPATIBILITY, //!< OpenGL Compatibility Profile
68 * \brief Rendering API version and profile.
74 ApiType (int major, int minor, Profile profile) : m_bits(pack(major, minor, profile)) {}
78 Profile getProfile (void) const { return Profile((m_bits>>PROFILE_SHIFT) & ((1u<<PROFILE_BITS)-1u)); }
94 static deUint32 pack (int major, int minor, Profile profile)
    [all...]
  /external/llvm/include/llvm/ADT/
ImmutableList.h 43 static inline void Profile(FoldingSetNodeID& ID, const T& H,
49 void Profile(FoldingSetNodeID& ID) {
50 Profile(ID, Head, Tail);
134 void Profile(FoldingSetNodeID& ID) const {
167 // Profile the new list to see if it already exists in our cache.
172 ListTy::Profile(ID, Head, TailImpl);
ImmutableMap.h 22 /// and second elements in a pair are used to generate profile information,
52 static inline void Profile(FoldingSetNodeID& ID, value_type_ref V) {
53 ImutContainerInfo<T>::Profile(ID, V.first);
54 ImutContainerInfo<S>::Profile(ID, V.second);
241 static inline void Profile(FoldingSetNodeID& ID, const ImmutableMap& M) {
245 inline void Profile(FoldingSetNodeID& ID) const {
246 return Profile(ID,*this);
396 static inline void Profile(FoldingSetNodeID& ID, const ImmutableMapRef &M) {
400 inline void Profile(FoldingSetNodeID& ID) const {
401 return Profile(ID, *this)
    [all...]
FoldingSet.h 37 /// FoldingSetNode. The node class must also define a Profile method used to
38 /// establish the unique bits of data for the node. The Profile method is
52 /// void Profile(FoldingSetNodeID &ID) const {
212 static void Profile(const T &X, FoldingSetNodeID &ID) {
213 X.Profile(ID);
215 static void Profile(T &X, FoldingSetNodeID &ID) {
216 X.Profile(ID);
219 // Equals - Test if the profile for X would match ID, using TempID
221 // just calls Profile and does a regular comparison. Implementations
228 // just calls Profile and does a regular hash computation
    [all...]
  /external/llvm/lib/Support/
APInt.cpp 166 void APInt::Profile(FoldingSetNodeID& ID) const {
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
profile.py 6 # Based on prior profile module by Sjoerd Mullender...
33 __all__ = ["run", "runctx", "help", "Profile"]
45 # Note that an instance of Profile() is *not* needed to call them.
59 prof = Profile()
73 statement and filename have the same semantics as profile.run
75 prof = Profile()
88 print "Documentation for the profile module can be found "
111 class Profile:
280 if not isinstance(rframe, Profile.fake_frame):
385 code = self.fake_code('profile', 0, name
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
profile.py 6 # Based on prior profile module by Sjoerd Mullender...
33 __all__ = ["run", "runctx", "help", "Profile"]
45 # Note that an instance of Profile() is *not* needed to call them.
59 prof = Profile()
73 statement and filename have the same semantics as profile.run
75 prof = Profile()
88 print "Documentation for the profile module can be found "
111 class Profile:
280 if not isinstance(rframe, Profile.fake_frame):
385 code = self.fake_code('profile', 0, name
    [all...]
  /external/clang/include/clang/Analysis/
AnalysisContext.h 261 virtual void Profile(llvm::FoldingSetNodeID &ID) = 0;
303 void Profile(llvm::FoldingSetNodeID &ID) override;
305 static void Profile(llvm::FoldingSetNodeID &ID, AnalysisDeclContext *ctx,
329 void Profile(llvm::FoldingSetNodeID &ID) override;
331 static void Profile(llvm::FoldingSetNodeID &ID, AnalysisDeclContext *ctx,
361 void Profile(llvm::FoldingSetNodeID &ID) override;
363 static void Profile(llvm::FoldingSetNodeID &ID, AnalysisDeclContext *ctx,
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramState.h 130 /// Profile - Profile the contents of a ProgramState object for use in a
133 static void Profile(llvm::FoldingSetNodeID& ID, const ProgramState *V) {
134 V->Env.Profile(ID);
136 V->GDM.Profile(ID);
139 /// Profile - Used to profile the contents of this object for inclusion
141 void Profile(llvm::FoldingSetNodeID& ID) const {
142 Profile(ID, this);
SVals.h 104 inline void Profile(llvm::FoldingSetNodeID& ID) const {
  /external/clang/lib/Analysis/
AnalysisDeclContext.cpp 324 void StackFrameContext::Profile(llvm::FoldingSetNodeID &ID) {
325 Profile(ID, getAnalysisDeclContext(), getParent(), CallSite, Block, Index);
328 void ScopeContext::Profile(llvm::FoldingSetNodeID &ID) {
329 Profile(ID, getAnalysisDeclContext(), getParent(), Enter);
332 void BlockInvocationContext::Profile(llvm::FoldingSetNodeID &ID) {
333 Profile(ID, getAnalysisDeclContext(), getParent(), BD, ContextData);
346 LOC::Profile(ID, ctx, parent, d);
364 StackFrameContext::Profile(ID, ctx, parent, s, blk, idx);
388 BlockInvocationContext::Profile(ID, ctx, parent, BD, ContextData);
  /external/llvm/include/llvm/Analysis/
ScalarEvolution.h 143 static void Profile(const SCEV &X, FoldingSetNodeID& ID) {
    [all...]
  /external/llvm/lib/ProfileData/
CoverageMappingReader.cpp 495 SectionData Profile;
502 EC = loadTestingFormat(ObjectBuffer->getBuffer(), Profile, Coverage,
505 EC = loadBinaryFormat(ObjectBuffer->getMemBufferRef(), Profile, Coverage,
512 Profile, Coverage, Reader->MappingRecords, Reader->Filenames);
515 Profile, Coverage, Reader->MappingRecords, Reader->Filenames);
518 Profile, Coverage, Reader->MappingRecords, Reader->Filenames);
521 Profile, Coverage, Reader->MappingRecords, Reader->Filenames);
  /external/llvm/tools/llvm-readobj/
ARMAttributeParser.cpp 137 StringRef Profile;
139 default: Profile = "Unknown"; break;
140 case 'A': Profile = "Application"; break;
141 case 'R': Profile = "Real-time"; break;
142 case 'M': Profile = "Microcontroller"; break;
143 case 'S': Profile = "Classic"; break;
144 case 0: Profile = "None"; break;
147 PrintAttribute(Tag, Encoded, Profile);
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
Profile.java 26 // The Profile class is used to collect profiling information for a thread. It
34 public class Profile {
36 private static final String TAG = "Profile";

Completed in 377 milliseconds

12 3 4 5