HomeSort by relevance Sort by last modified time
    Searched refs:profile (Results 201 - 225 of 4127) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/profile/
base.h 31 /** @file profile/base.h
33 * This file is a GNU profile extension to the Standard C++ Library.
42 #include <profile/impl/profiler.h>
48 * @brief GNU profile code, replaces standard behavior with profile behavior.
57 * @brief GNU profile code for public use.
61 // Import all the profile versions of components in namespace std.
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/profile/
base.h 31 /** @file profile/base.h
33 * This file is a GNU profile extension to the Standard C++ Library.
42 #include <profile/impl/profiler.h>
48 * @brief GNU profile code, replaces standard behavior with profile behavior.
57 * @brief GNU profile code for public use.
61 // Import all the profile versions of components in namespace std.
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/profile/
base.h 24 /** @file profile/base.h
26 * This file is a GNU profile extension to the Standard C++ Library.
35 #include <profile/impl/profiler.h>
41 * @brief GNU profile code, replaces standard behavior with profile behavior.
50 * @brief GNU profile code for public use.
54 // Import all the profile versions of components in namespace std.
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/profile/
base.h 31 /** @file profile/base.h
33 * This file is a GNU profile extension to the Standard C++ Library.
42 #include <profile/impl/profiler.h>
48 * @brief GNU profile code, replaces standard behavior with profile behavior.
57 * @brief GNU profile code for public use.
61 // Import all the profile versions of components in namespace std.
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/profile/
base.h 24 /** @file profile/base.h
26 * This file is a GNU profile extension to the Standard C++ Library.
35 #include <profile/impl/profiler.h>
41 * @brief GNU profile code, replaces standard behavior with profile behavior.
50 * @brief GNU profile code for public use.
54 // Import all the profile versions of components in namespace std.
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/profile/
base.h 24 /** @file profile/base.h
26 * This file is a GNU profile extension to the Standard C++ Library.
35 #include <profile/impl/profiler.h>
41 * @brief GNU profile code, replaces standard behavior with profile behavior.
50 * @brief GNU profile code for public use.
54 // Import all the profile versions of components in namespace std.
  /external/chromium_org/components/autofill/core/browser/android/
auxiliary_profile_unittest_android.cc 44 AutofillProfile* profile = GetAndLoadProfile(); local
46 EXPECT_EQ(profile->GetRawInfo(NAME_FIRST), first_name);
47 EXPECT_EQ(profile->GetRawInfo(NAME_MIDDLE), middle_name);
48 EXPECT_EQ(profile->GetRawInfo(NAME_LAST), last_name);
52 AutofillProfile* profile = GetAndLoadProfile(); local
54 EXPECT_EQ(profile->GetRawInfo(NAME_FIRST), base::string16());
55 EXPECT_EQ(profile->GetRawInfo(NAME_MIDDLE), base::string16());
56 EXPECT_EQ(profile->GetRawInfo(NAME_LAST), base::string16());
65 AutofillProfile* profile = GetAndLoadProfile(); local
67 profile->GetRawMultiInfo(EMAIL_ADDRESS, &loaded_email_addresses)
75 AutofillProfile* profile = GetAndLoadProfile(); local
86 AutofillProfile* profile = GetAndLoadProfile(); local
96 AutofillProfile* profile = GetAndLoadProfile(); local
    [all...]
  /external/chromium_org/chrome/browser/policy/
profile_policy_connector_factory.cc 9 #include "chrome/browser/profiles/profile.h"
32 Profile* profile) {
33 return GetInstance()->GetForProfileInternal(profile);
39 Profile* profile,
43 profile, force_immediate_load, sequenced_task_runner);
47 Profile* profile,
49 ProfilePolicyConnector*& map_entry = connectors_[profile];
95 Profile* profile = static_cast<Profile*>(context); local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/contacts/
contact_manager.h 21 class Profile;
41 // Adds or removes an observer for changes to |profile|'s contacts.
43 Profile* profile) = 0;
45 Profile* profile) = 0;
47 // Returns pointers to all currently-loaded contacts for |profile|. The
50 virtual scoped_ptr<ContactPointers> GetAllContacts(Profile* profile) = 0;
54 virtual const Contact* GetContactById(Profile* profile
    [all...]
contact_manager.cc 14 #include "chrome/browser/profiles/profile.h"
76 std::vector<Profile*> profiles(
88 Profile* profile) {
91 DCHECK(profile);
92 Observers* observers = GetObserversForProfile(profile, true);
97 Profile* profile) {
100 DCHECK(profile);
101 Observers* observers = GetObserversForProfile(profile, false)
131 Profile* profile = it->first; local
153 Profile* profile = content::Details<Profile>(details).ptr(); local
    [all...]
  /external/chromium_org/chrome/browser/signin/
signin_manager_factory.cc 28 Profile* profile) {
30 GetInstance()->GetServiceForBrowserContext(profile, false));
35 Profile* profile) {
37 GetInstance()->GetServiceForBrowserContext(profile, true));
42 SigninManager* SigninManagerFactory::GetForProfile(Profile* profile) {
44 GetInstance()->GetServiceForBrowserContext(profile, true));
48 SigninManager* SigninManagerFactory::GetForProfileIfExists(Profile* profile)
91 Profile* profile = static_cast<Profile*>(context); local
    [all...]
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_factory.cc 10 #include "chrome/browser/profiles/profile.h"
19 SpellcheckService* SpellcheckServiceFactory::GetForProfile(Profile* profile) {
21 GetInstance()->GetServiceForBrowserContext(profile, true));
31 Profile* profile = Profile::FromBrowserContext(host->GetBrowserContext());
32 if (!profile)
34 return GetForProfile(profile);
39 Profile* profile)
61 Profile* profile = static_cast<Profile*>(context); local
    [all...]
  /external/chromium/chrome/browser/
background_contents_service_factory.h 13 class Profile;
16 // Profiles. Listens for the Profile's destruction notification and cleans up
20 static BackgroundContentsService* GetForProfile(Profile* profile);
32 Profile* profile) const OVERRIDE;
background_mode_manager_factory.h 13 class Profile;
16 // Profiles. Listens for the Profile's destruction notification and cleans up
20 static BackgroundModeManager* GetForProfile(Profile* profile);
32 Profile* profile) const OVERRIDE;
browsing_data_database_helper_unittest.cc 17 TestingProfile profile; local
23 new CannedBrowsingDataDatabaseHelper(&profile));
browsing_data_indexed_db_helper_unittest.cc 17 TestingProfile profile; local
23 new CannedBrowsingDataIndexedDBHelper(&profile));
browsing_data_local_storage_helper_unittest.cc 16 TestingProfile profile; local
21 new CannedBrowsingDataLocalStorageHelper(&profile));
chrome_content_browser_client.h 17 Profile* profile,
21 virtual GURL GetEffectiveURL(Profile* profile, const GURL& url);
mock_browsing_data_appcache_helper.cc 10 Profile* profile)
11 : BrowsingDataAppCacheHelper(profile) {
  /external/chromium/chrome/browser/chromeos/
update_observer.cc 16 UpdateObserver::UpdateObserver(Profile* profile)
17 : notification_(profile, "update.chromeos", IDR_NOTIFICATION_UPDATE,
  /external/chromium/chrome/browser/notifications/
desktop_notification_service_factory.h 13 class Profile;
16 // Profiles. Listens for the Profile's destruction notification and cleans up
21 // for |profile|.
22 static DesktopNotificationService* GetForProfile(Profile* profile);
34 Profile* profile) const OVERRIDE;
  /external/chromium/chrome/browser/printing/cloud_print/
cloud_print_url.h 10 class Profile;
15 explicit CloudPrintURL(Profile* profile) : profile_(profile) {}
29 Profile* profile_;
  /external/chromium/chrome/browser/sync/glue/
change_processor.cc 6 #include "chrome/browser/profiles/profile.h"
14 void ChangeProcessor::Start(Profile* profile,
18 StartImpl(profile);
  /external/chromium/chrome/browser/tabs/
pinned_tab_codec.h 15 class Profile;
30 static void WritePinnedTabs(Profile* profile);
34 Profile* profile);
pinned_tab_service_factory.h 13 class Profile;
16 // Listens for the Profile's destruction notification and cleans up the
20 // Returns the PinnedTabService that tracks pinning changes for |profile|.
21 static PinnedTabService* GetForProfile(Profile* profile);
33 Profile* profile) const OVERRIDE;

Completed in 381 milliseconds

1 2 3 4 5 6 7 891011>>