Home
last modified time | relevance | path

Searched refs:profiles (Results 1 – 25 of 368) sorted by relevance

12345678910>>...15

/external/chromium_org/chrome/browser/importer/
Dimporter_list.cc28 void DetectIEProfiles(std::vector<importer::SourceProfile*>* profiles) { in DetectIEProfiles() argument
38 profiles->push_back(ie); in DetectIEProfiles()
43 void DetectSafariProfiles(std::vector<importer::SourceProfile*>* profiles) { in DetectSafariProfiles() argument
55 profiles->push_back(safari); in DetectSafariProfiles()
63 std::vector<importer::SourceProfile*>* profiles) { in DetectFirefoxProfiles() argument
99 profiles->push_back(firefox); in DetectFirefoxProfiles()
107 std::vector<importer::SourceProfile*> profiles; in DetectSourceProfilesWorker() local
113 DetectFirefoxProfiles(locale, &profiles); in DetectSourceProfilesWorker()
114 DetectIEProfiles(&profiles); in DetectSourceProfilesWorker()
116 DetectIEProfiles(&profiles); in DetectSourceProfilesWorker()
[all …]
/external/chromium_org/components/autofill/core/browser/
Dautofill_profile_unittest.cc29 std::vector<AutofillProfile*> profiles; in GetLabel() local
30 profiles.push_back(profile); in GetLabel()
32 AutofillProfile::CreateDifferentiatingLabels(profiles, "en-US", &labels); in GetLabel()
175 std::vector<AutofillProfile*> profiles; in TEST() local
176 profiles.push_back(&profile7); in TEST()
177 profiles.push_back(&profile7a); in TEST()
179 AutofillProfile::CreateDifferentiatingLabels(profiles, "en-US", &labels); in TEST()
180 ASSERT_EQ(profiles.size(), labels.size()); in TEST()
190 ScopedVector<AutofillProfile> profiles; in TEST() local
191 profiles.push_back( in TEST()
[all …]
Dautofill_ie_toolbar_import_win_unittest.cc22 std::vector<AutofillProfile>* profiles,
162 std::vector<AutofillProfile> profiles; in TEST_F() local
164 EXPECT_TRUE(ImportCurrentUserProfiles("en-US", &profiles, &credit_cards)); in TEST_F()
165 ASSERT_EQ(2U, profiles.size()); in TEST_F()
167 EXPECT_EQ(profile1[0].value, profiles[1].GetRawInfo(NAME_FIRST)); in TEST_F()
168 EXPECT_EQ(profile1[1].value, profiles[1].GetRawInfo(NAME_MIDDLE)); in TEST_F()
169 EXPECT_EQ(profile1[2].value, profiles[1].GetRawInfo(NAME_LAST)); in TEST_F()
170 EXPECT_EQ(profile1[3].value, profiles[1].GetRawInfo(EMAIL_ADDRESS)); in TEST_F()
171 EXPECT_EQ(profile1[4].value, profiles[1].GetRawInfo(COMPANY_NAME)); in TEST_F()
173 profiles[1].GetInfo(AutofillType(PHONE_HOME_COUNTRY_CODE), "US")); in TEST_F()
[all …]
Dpersonal_data_manager.cc430 const std::vector<AutofillProfile*>& profiles = GetProfiles(); in GetProfileByGUID() local
432 FindElementByGUID<AutofillProfile>(profiles, guid); in GetProfileByGUID()
433 return (iter != profiles.end()) ? *iter : NULL; in GetProfileByGUID()
518 const std::vector<AutofillProfile*>& profiles = GetProfiles(); in GetNonEmptyTypes() local
519 for (std::vector<AutofillProfile*>::const_iterator iter = profiles.begin(); in GetNonEmptyTypes()
520 iter != profiles.end(); ++iter) { in GetNonEmptyTypes()
566 const std::vector<AutofillProfile*>& profiles = GetProfiles(true); in GetProfileSuggestions() local
568 for (std::vector<AutofillProfile*>::const_iterator iter = profiles.begin(); in GetProfileSuggestions()
569 iter != profiles.end(); ++iter) { in GetProfileSuggestions()
786 const std::vector<AutofillProfile*>& profiles = web_profiles(); in IsCountryOfInterest() local
[all …]
Dautofill_merge_unittest.cc60 std::string SerializeProfiles(const std::vector<AutofillProfile*>& profiles) { in SerializeProfiles() argument
62 for (size_t i = 0; i < profiles.size(); ++i) { in SerializeProfiles()
68 profiles[i]->GetRawMultiInfo(type, &values); in SerializeProfiles()
113 std::vector<AutofillProfile> profiles; in SaveImportedProfile() local
115 MergeProfile(profile, profiles_.get(), "en-US", &profiles); in SaveImportedProfile()
148 void MergeProfiles(const std::string& profiles, std::string* merged_profiles);
180 void AutofillMergeTest::MergeProfiles(const std::string& profiles, in MergeProfiles() argument
194 Tokenize(profiles, "\n", &lines); in MergeProfiles()
/external/chromium_org/chrome/browser/profiles/
Dprofile_window.cc131 profiles::FindOrCreateNewWindowForProfile( in OpenBrowserWindowForProfile()
145 profiles::UserManagerTutorialMode tutorial_mode, in OnUserManagerGuestProfileCreated()
146 profiles::UserManagerProfileSelected profile_open_action, in OnUserManagerGuestProfileCreated()
156 if (tutorial_mode == profiles::USER_MANAGER_TUTORIAL_OVERVIEW) { in OnUserManagerGuestProfileCreated()
157 page += profiles::kUserManagerDisplayTutorial; in OnUserManagerGuestProfileCreated()
167 profiles::USER_MANAGER_SELECT_PROFILE_TASK_MANAGER) { in OnUserManagerGuestProfileCreated()
168 page += profiles::kUserManagerSelectProfileTaskManager; in OnUserManagerGuestProfileCreated()
170 profiles::USER_MANAGER_SELECT_PROFILE_ABOUT_CHROME) { in OnUserManagerGuestProfileCreated()
171 page += profiles::kUserManagerSelectProfileAboutChrome; in OnUserManagerGuestProfileCreated()
187 namespace profiles { namespace
[all …]
Dprofile_avatar_icon_util_unittest.cc40 profiles::GetSizedAvatarIcon(profile_image, false, 50, 50); in TEST()
49 gfx::Image result2 = profiles::GetSizedAvatarIcon( in TEST()
59 gfx::Image result = profiles::GetAvatarIconForMenu(profile_image, false); in TEST()
65 gfx::Size size(profiles::kAvatarIconWidth, profiles::kAvatarIconHeight); in TEST()
66 gfx::Image result2 = profiles::GetAvatarIconForMenu(rect_picture, true); in TEST()
75 gfx::Image result = profiles::GetAvatarIconForWebUI(profile_image, false); in TEST()
81 gfx::Size size(profiles::kAvatarIconWidth, profiles::kAvatarIconHeight); in TEST()
82 gfx::Image result2 = profiles::GetAvatarIconForWebUI(rect_picture, true); in TEST()
94 gfx::Image result = profiles::GetAvatarIconForTitleBar( in TEST()
103 gfx::Image result2 = profiles::GetAvatarIconForTitleBar( in TEST()
/external/chromium_org/chrome/browser/apps/
Dapp_window_registry_util.cc25 std::vector<Profile*> profiles = in GetAppWindowForNativeWindowAnyProfile() local
27 for (std::vector<Profile*>::const_iterator i = profiles.begin(); in GetAppWindowForNativeWindowAnyProfile()
28 i != profiles.end(); in GetAppWindowForNativeWindowAnyProfile()
46 std::vector<Profile*> profiles = in IsAppWindowRegisteredInAnyProfile() local
48 for (std::vector<Profile*>::const_iterator i = profiles.begin(); in IsAppWindowRegisteredInAnyProfile()
49 i != profiles.end(); in IsAppWindowRegisteredInAnyProfile()
75 std::vector<Profile*> profiles = in CloseAllAppWindows() local
77 for (std::vector<Profile*>::const_iterator i = profiles.begin(); in CloseAllAppWindows()
78 i != profiles.end(); in CloseAllAppWindows()
/external/chromium_org/chrome/browser/ui/views/profiles/
Dprofile_chooser_view.cc111 profiles::GetSigninErrorController(profile); in HasAuthError()
117 profiles::GetSigninErrorController(profile); in GetAuthErrorAccountId()
126 profiles::GetSigninErrorController(profile); in GetAuthErrorUsername()
218 gfx::Image image = profiles::GetSizedAvatarIcon( in EditableProfilePhoto()
487 profiles::BubbleViewMode view_mode, in ShowBubble()
488 profiles::TutorialMode tutorial_mode, in ShowBubble()
495 if (tutorial_mode != profiles::TUTORIAL_MODE_NONE) { in ShowBubble()
525 profiles::BubbleViewMode view_mode, in ProfileChooserView()
526 profiles::TutorialMode tutorial_mode, in ProfileChooserView()
590 if (view_mode_ == profiles::BUBBLE_VIEW_MODE_PROFILE_CHOOSER && in Init()
[all …]
Dprofile_chooser_view.h55 profiles::BubbleViewMode view_mode,
56 profiles::TutorialMode tutorial_mode,
83 profiles::BubbleViewMode view_mode,
84 profiles::TutorialMode tutorial_mode,
121 void ShowView(profiles::BubbleViewMode view_to_display,
180 profiles::TutorialMode tutorial_mode,
249 profiles::BubbleViewMode view_mode_;
252 profiles::TutorialMode tutorial_mode_;
/external/chromium_org/chrome/browser/ui/cocoa/profiles/
Dprofile_chooser_controller.h47 profiles::BubbleViewMode viewMode_;
50 profiles::TutorialMode tutorialMode_;
69 viewMode:(profiles::BubbleViewMode)viewMode
70 tutorialMode:(profiles::TutorialMode)tutorialMode
74 - (void)initMenuContentsWithView:(profiles::BubbleViewMode)viewToDisplay;
77 - (profiles::BubbleViewMode)viewMode;
80 - (void)setTutorialMode:(profiles::TutorialMode)tutorialMode;
129 viewMode:(profiles::BubbleViewMode)viewMode
130 tutorialMode:(profiles::TutorialMode)tutorialMode
Davatar_base_controller.mm5 #import "chrome/browser/ui/cocoa/profiles/avatar_base_controller.h"
10 #include "chrome/browser/profiles/profile_info_cache_observer.h"
11 #include "chrome/browser/profiles/profile_avatar_icon_util.h"
12 #include "chrome/browser/profiles/profile_manager.h"
13 #include "chrome/browser/profiles/profile_metrics.h"
15 #include "chrome/browser/profiles/profiles_state.h"
16 #include "chrome/browser/profiles/profile_window.h"
22 #import "chrome/browser/ui/cocoa/profiles/avatar_menu_bubble_controller.h"
23 #import "chrome/browser/ui/cocoa/profiles/profile_chooser_controller.h"
62 profiles::GetSigninErrorController(profile_);
[all …]
Davatar_icon_controller.mm5 #import "chrome/browser/ui/cocoa/profiles/avatar_icon_controller.h"
10 #include "chrome/browser/profiles/profile.h"
11 #include "chrome/browser/profiles/profile_avatar_icon_util.h"
12 #include "chrome/browser/profiles/profile_info_cache.h"
13 #include "chrome/browser/profiles/profile_manager.h"
17 #import "chrome/browser/ui/cocoa/profiles/avatar_label_button.h"
62 0, 0, profiles::kAvatarIconWidth, profiles::kAvatarIconHeight)]);
67 0, 0, profiles::kAvatarIconWidth, profiles::kAvatarIconHeight)]);
105 profiles::GetPlaceholderAvatarIconResourceID() : IDR_OTR_ICON;
119 profiles::kAvatarIconWidth + kAvatarLabelRightSpacing;
[all …]
Dprofile_chooser_controller.mm7 #import "chrome/browser/ui/cocoa/profiles/profile_chooser_controller.h"
18 #include "chrome/browser/profiles/avatar_menu.h"
19 #include "chrome/browser/profiles/avatar_menu_observer.h"
20 #include "chrome/browser/profiles/profile_avatar_icon_util.h"
21 #include "chrome/browser/profiles/profile_info_cache.h"
22 #include "chrome/browser/profiles/profile_manager.h"
23 #include "chrome/browser/profiles/profile_metrics.h"
24 #include "chrome/browser/profiles/profile_window.h"
25 #include "chrome/browser/profiles/profiles_state.h"
39 #import "chrome/browser/ui/cocoa/profiles/user_manager_mac.h"
[all …]
Dprofile_menu_controller.mm5 #import "chrome/browser/ui/cocoa/profiles/profile_menu_controller.h"
10 #include "chrome/browser/profiles/avatar_menu.h"
11 #include "chrome/browser/profiles/avatar_menu_observer.h"
12 #include "chrome/browser/profiles/profile.h"
13 #include "chrome/browser/profiles/profile_avatar_icon_util.h"
14 #include "chrome/browser/profiles/profile_info_cache.h"
15 #include "chrome/browser/profiles/profile_info_interface.h"
16 #include "chrome/browser/profiles/profile_manager.h"
17 #include "chrome/browser/profiles/profile_metrics.h"
137 if (itemIcon.Width() > profiles::kAvatarIconWidth ||
[all …]
/external/chromium_org/chrome/browser/autofill/
Dautofill_browsertest.cc137 void SetProfiles(std::vector<AutofillProfile>* profiles) { in SetProfiles() argument
139 personal_data_manager()->SetProfiles(profiles); in SetProfiles()
144 std::vector<AutofillProfile> profiles; in SetProfile() local
145 profiles.push_back(profile); in SetProfile()
146 SetProfiles(&profiles); in SetProfile()
281 std::vector<AutofillProfile> profiles; in IN_PROC_BROWSER_TEST_F() local
309 profiles.push_back(profile1); in IN_PROC_BROWSER_TEST_F()
318 profiles.push_back(profile2); in IN_PROC_BROWSER_TEST_F()
323 profiles.push_back(profile3); in IN_PROC_BROWSER_TEST_F()
337 profiles.push_back(profile4); in IN_PROC_BROWSER_TEST_F()
[all …]
/external/openssl/ssl/
Dd1_srtp.c173 STACK_OF(SRTP_PROTECTION_PROFILE) *profiles; in ssl_ctx_make_profiles()
180 if(!(profiles=sk_SRTP_PROTECTION_PROFILE_new_null())) in ssl_ctx_make_profiles()
193 if (sk_SRTP_PROTECTION_PROFILE_find(profiles,p) >= 0) in ssl_ctx_make_profiles()
196 sk_SRTP_PROTECTION_PROFILE_free(profiles); in ssl_ctx_make_profiles()
200 sk_SRTP_PROTECTION_PROFILE_push(profiles,p); in ssl_ctx_make_profiles()
205 sk_SRTP_PROTECTION_PROFILE_free(profiles); in ssl_ctx_make_profiles()
212 *out=profiles; in ssl_ctx_make_profiles()
217 int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx,const char *profiles) in SSL_CTX_set_tlsext_use_srtp() argument
219 return ssl_ctx_make_profiles(profiles,&ctx->srtp_profiles); in SSL_CTX_set_tlsext_use_srtp()
222 int SSL_set_tlsext_use_srtp(SSL *s,const char *profiles) in SSL_set_tlsext_use_srtp() argument
[all …]
/external/chromium_org/components/test/data/autofill/merge/tools/
Dserialize_profiles.py39 profiles = {}
42 profiles[guid] = zip(types, profile)
55 profiles[guid].extend(zip(types, profile))
67 profiles[guid].extend(zip(types, profile))
79 profiles[guid].append(("PHONE_HOME_WHOLE_NUMBER", profile[2]))
81 print SerializeProfiles(profiles.values())
Dflatten.py20 profiles = [COLUMNS]
33 profiles.append(profile)
48 profiles.append(profile)
51 transposed = zip(*profiles)
58 for profile in profiles:
/external/mesa3d/src/glsl/builtins/tools/
Dgenerate_builtins.py122 profiles = get_profile_list()
123 for (filename, profile) in profiles:
132 profiles = []
134 profiles.append((pfile, path.basename(pfile).replace('.', '_')))
135 return profiles
223 profiles = get_profile_list() variable
225 print 'static gl_shader *builtin_profiles[%d];' % len(profiles)
271 for (filename, profile) in profiles:
/external/chromium_org/third_party/mesa/src/src/glsl/builtins/tools/
Dgenerate_builtins.py122 profiles = get_profile_list()
123 for (filename, profile) in profiles:
132 profiles = []
134 profiles.append((pfile, path.basename(pfile).replace('.', '_')))
135 return profiles
223 profiles = get_profile_list() variable
225 print 'static gl_shader *builtin_profiles[%d];' % len(profiles)
271 for (filename, profile) in profiles:
/external/chromium_org/chrome/browser/task_manager/
Dbackground_information.cc123 std::vector<Profile*> profiles(profile_manager->GetLoadedProfiles()); in GetAll() local
124 size_t num_default_profiles = profiles.size(); in GetAll()
126 if (profiles[i]->HasOffTheRecordProfile()) { in GetAll()
127 profiles.push_back(profiles[i]->GetOffTheRecordProfile()); in GetAll()
130 for (size_t i = 0; i < profiles.size(); ++i) { in GetAll()
132 BackgroundContentsServiceFactory::GetForProfile(profiles[i]); in GetAll()
Dextension_information.cc123 std::vector<Profile*> profiles(profile_manager->GetLoadedProfiles()); in GetAll() local
124 size_t num_default_profiles = profiles.size(); in GetAll()
126 if (profiles[i]->HasOffTheRecordProfile()) { in GetAll()
127 profiles.push_back(profiles[i]->GetOffTheRecordProfile()); in GetAll()
131 for (size_t i = 0; i < profiles.size(); ++i) { in GetAll()
133 extensions::ExtensionSystem::Get(profiles[i])->process_manager(); in GetAll()
/external/chromium_org/third_party/boringssl/src/ssl/
Dd1_srtp.c194 STACK_OF(SRTP_PROTECTION_PROFILE) *profiles; in ssl_ctx_make_profiles()
201 if(!(profiles=sk_SRTP_PROTECTION_PROFILE_new_null())) in ssl_ctx_make_profiles()
214 sk_SRTP_PROTECTION_PROFILE_push(profiles,p); in ssl_ctx_make_profiles()
225 *out=profiles; in ssl_ctx_make_profiles()
230 int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx,const char *profiles) in SSL_CTX_set_tlsext_use_srtp() argument
233 return !ssl_ctx_make_profiles(profiles,&ctx->srtp_profiles); in SSL_CTX_set_tlsext_use_srtp()
236 int SSL_set_tlsext_use_srtp(SSL *s,const char *profiles) in SSL_set_tlsext_use_srtp() argument
239 return !ssl_ctx_make_profiles(profiles,&s->srtp_profiles); in SSL_set_tlsext_use_srtp()
/external/chromium_org/chrome/browser/download/
Ddownload_service.cc118 std::vector<Profile*> profiles( in NonMaliciousDownloadCountAllProfiles() local
122 for (std::vector<Profile*>::iterator it = profiles.begin(); in NonMaliciousDownloadCountAllProfiles()
123 it < profiles.end(); ++it) { in NonMaliciousDownloadCountAllProfiles()
136 std::vector<Profile*> profiles( in CancelAllDownloads() local
138 for (std::vector<Profile*>::iterator it = profiles.begin(); in CancelAllDownloads()
139 it < profiles.end(); in CancelAllDownloads()

12345678910>>...15