HomeSort by relevance Sort by last modified time
    Searched defs:ProfileInfo (Results 1 - 4 of 4) sorted by null

  /external/chromium/chrome/browser/profiles/
profile_manager.h 120 struct ProfileInfo {
121 ProfileInfo(Profile* profile, bool created)
125 ~ProfileInfo() {}
135 DISALLOW_COPY_AND_ASSIGN(ProfileInfo);
144 // Registers profile with given info. Returns pointer to created ProfileInfo
146 ProfileInfo* RegisterProfile(Profile* profile, bool created);
155 // Maps profile path to ProfileInfo (if profile has been created). Use
157 typedef std::map<FilePath, linked_ptr<ProfileInfo> > ProfilesInfoMap;
  /external/chromium_org/chrome/browser/profiles/
profile_manager.h 266 struct ProfileInfo {
267 ProfileInfo(Profile* profile, bool created);
269 ~ProfileInfo();
281 DISALLOW_COPY_AND_ASSIGN(ProfileInfo);
293 // Registers profile with given info. Returns pointer to created ProfileInfo
295 ProfileInfo* RegisterProfile(Profile* profile, bool created);
297 // Returns ProfileInfo associated with given |path|, registred earlier with
299 ProfileInfo* GetProfileInfoByPath(const base::FilePath& path) const;
343 // Maps profile path to ProfileInfo (if profile has been created). Use
346 typedef std::map<base::FilePath, linked_ptr<ProfileInfo> > ProfilesInfoMap
    [all...]
profile_manager.cc 493 ProfileInfo* profile_info = GetProfileInfoByPath(default_profile_dir);
567 // Create the profile if needed and collect its ProfileInfo.
569 ProfileInfo* info = NULL;
629 ProfileManager::ProfileInfo* ProfileManager::RegisterProfile(
632 ProfileInfo* info = new ProfileInfo(profile, created);
634 std::make_pair(profile->GetPath(), linked_ptr<ProfileInfo>(info)));
638 ProfileManager::ProfileInfo* ProfileManager::GetProfileInfoByPath(
645 ProfileInfo* profile_info = GetProfileInfoByPath(path);
    [all...]
  /external/llvm/include/llvm/Analysis/
ProfileInfo.h 1 //===- llvm/Analysis/ProfileInfo.h - Profile Info Interface -----*- C++ -*-===//
10 // This file defines the generic ProfileInfo interface, which is used as the
16 // ProfileInfo, which requires that they notify it when changes to the CFG are
52 /// ProfileInfo Class - This class holds and maintains profiling
93 llvm_unreachable("Invalid ProfileInfo::Edge");
172 dbgs() << "**** This is ProfileInfo " << this << " speaking:\n";
219 dbgs() << "**** ProfileInfo " << this << ", over and out.\n";
237 typedef ProfileInfoT<Function, BasicBlock> ProfileInfo;

Completed in 57 milliseconds