/external/chromium_org/ui/gfx/ |
color_profile_win.cc | 23 std::string profileData; 24 if (!base::ReadFileToString(base::FilePath(path), &profileData)) 26 size_t length = profileData.size(); 31 profile->assign(profileData.data(), profileData.data() + length);
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
profiledata.cc | 48 #include "profiledata.h" 53 // All of these are initialized in profiledata.h. 54 const int ProfileData::kMaxStackDepth; 55 const int ProfileData::kAssociativity; 56 const int ProfileData::kBuckets; 57 const int ProfileData::kBufferLength; 59 ProfileData::Options::Options() 65 void ProfileData::Evict(const Entry& entry) { 79 ProfileData::ProfileData() [all...] |
profiledata.h | 78 class ProfileData { 105 ProfileData(); 106 ~ProfileData(); 180 DISALLOW_COPY_AND_ASSIGN(ProfileData);
|
profiler.cc | 67 #include "profiledata.h" 98 // This lock implements the locking requirements described in the ProfileData 108 ProfileData collector_; 168 ProfileData::Options collector_options; 231 ProfileData::State collector_state; 269 void* stack[ProfileData::kMaxStackDepth];
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
profiledata.cc | 48 #include "profiledata.h" 53 // All of these are initialized in profiledata.h. 54 const int ProfileData::kMaxStackDepth; 55 const int ProfileData::kAssociativity; 56 const int ProfileData::kBuckets; 57 const int ProfileData::kBufferLength; 59 ProfileData::Options::Options() 65 void ProfileData::Evict(const Entry& entry) { 79 ProfileData::ProfileData() [all...] |
profiledata.h | 78 class ProfileData { 105 ProfileData(); 106 ~ProfileData(); 180 DISALLOW_COPY_AND_ASSIGN(ProfileData);
|
profiler.cc | 65 #include "profiledata.h" 96 // This lock implements the locking requirements described in the ProfileData 106 ProfileData collector_; 166 ProfileData::Options collector_options; 229 ProfileData::State collector_state; 267 void* stack[ProfileData::kMaxStackDepth];
|
/external/llvm/lib/Analysis/ |
ProfileDataLoaderPass.cpp | 65 virtual void readEdge(unsigned, ProfileData&, ProfileData::Edge, 67 virtual unsigned matchEdges(Module&, ProfileData&, ArrayRef<unsigned>); 68 virtual void setBranchWeightMetadata(Module&, ProfileData&); 94 ProfileData &PB, ProfileData::Edge e, 108 unsigned ProfileMetadataLoaderPass::matchEdges(Module &M, ProfileData &PB, 134 ProfileData &PB) { 152 ProfileData::Edge edge = PB.getEdge(BB, TI->getSuccessor(s)); 173 ProfileData PB [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/ |
profiledata_unittest.cc | 33 // This file contains the unit tests for the ProfileData class. 46 #include "profiledata.h" 106 // must be the same as with ProfileData::Slot. 323 ProfileData::State state; 329 void ExpectSameState(const ProfileData::State& before, 330 const ProfileData::State& after) { 337 ProfileData collector_; 378 ProfileData::State state_before; 395 ProfileData::State state_after; 410 ProfileData::Options options [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/ |
profiledata_unittest.cc | 33 // This file contains the unit tests for the ProfileData class. 46 #include "profiledata.h" 106 // must be the same as with ProfileData::Slot. 323 ProfileData::State state; 329 void ExpectSameState(const ProfileData::State& before, 330 const ProfileData::State& after) { 337 ProfileData collector_; 378 ProfileData::State state_before; 395 ProfileData::State state_after; 410 ProfileData::Options options [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/util/ |
ProfileData.java | 30 // ProfileData keeps profiling samples in a tree structure. 33 public class ProfileData { 35 private static final String TAG = "ProfileData"; 54 public ProfileData() {
|
Profile.java | 68 private ProfileData mProfileData = new ProfileData();
|
/external/chromium_org/chrome/browser/extensions/ |
user_script_listener.h | 91 struct ProfileData; 92 typedef std::map<void*, ProfileData> ProfileDataMap;
|
user_script_listener.cc | 58 struct UserScriptListener::ProfileData { 66 ProfileData() : user_scripts_ready(false) {} 174 ProfileData& data = profile_data_[profile_id]; 185 ProfileData& data = profile_data_[profile_id];
|
/external/llvm/include/llvm/Analysis/ |
ProfileDataLoader.h | 62 && "A ProfileData::Edge can not be between two functions"); 63 assert(e.second && "A ProfileData::Edge must have a real sink"); 92 typedef ProfileDataT<Function, BasicBlock> ProfileData;
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ |
ImageDecoder.h | 158 static bool rgbColorProfile(const char* profileData, unsigned profileLength) 162 return !memcmp(&profileData[16], "RGB ", 4); 165 static bool inputDeviceColorProfile(const char* profileData, unsigned profileLength) 169 return !memcmp(&profileData[12], "mntr", 4) || !memcmp(&profileData[12], "scnr", 4);
|
/external/chromium/base/allocator/ |
allocator.gyp | 124 '<(tcmalloc_dir)/src/profiledata.cc', 125 '<(tcmalloc_dir)/src/profiledata.h', 302 '<(tcmalloc_dir)/src/profiledata.cc', 303 '<(tcmalloc_dir)/src/profiledata.h',
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/ |
PNGImageDecoder.cpp | 283 char* profileData = reinterpret_cast<char*>(profile); 286 else if (!ImageDecoder::rgbColorProfile(profileData, profileLength)) 288 else if (!ImageDecoder::inputDeviceColorProfile(profileData, profileLength)) 293 colorProfile.append(profileData, profileLength);
|
/packages/apps/Gallery2/ |
proguard.flags | 81 -keep class com.android.gallery3d.util.ProfileData { *; }
|
/prebuilts/devtools/tools/lib/ |
traceview.jar | |
/external/chromium_org/base/allocator/ |
allocator.gyp | 154 '<(tcmalloc_dir)/src/profiledata.cc', 155 '<(tcmalloc_dir)/src/profiledata.h', 383 '<(tcmalloc_dir)/src/profiledata.cc', 384 '<(tcmalloc_dir)/src/profiledata.h',
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/ |
JPEGImageDecoder.cpp | 229 char* profileData = reinterpret_cast<char*>(profile); 232 else if (!ImageDecoder::rgbColorProfile(profileData, profileLength)) 234 else if (!ImageDecoder::inputDeviceColorProfile(profileData, profileLength)) 239 colorProfile.append(profileData, profileLength);
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/ |
WEBPImageDecoder.cpp | 365 const char* profileData = reinterpret_cast<const char*>(chunkIterator.chunk.bytes); 372 else if (!ImageDecoder::rgbColorProfile(profileData, profileSize)) 374 else if (!ImageDecoder::inputDeviceColorProfile(profileData, profileSize)) 378 createColorTransform(profileData, profileSize);
|
/external/chromium_org/third_party/tcmalloc/vendor/ |
Makefile.in | 328 src/profile-handler.cc src/profiledata.cc src/profiledata.h \ 349 @WITH_CPU_PROFILER_TRUE@ profile-handler.lo profiledata.lo \ 504 src/profile-handler.cc src/profiledata.cc src/profiledata.h \ 519 @WITH_CPU_PROFILER_TRUE@ libtcmalloc_and_profiler_la-profiledata.lo \ [all...] |
/external/chromium_org/third_party/skia/gyp/ |
poppler.gyp | 86 '../third_party/externals/poppler/poppler/ProfileData.cc',
|