HomeSort by relevance Sort by last modified time
    Searched refs:profiles (Results 26 - 50 of 243) sorted by null

12 3 4 5 6 7 8 910

  /external/chromium_org/chrome/browser/profiles/
profile_info_util.h 10 namespace profiles { namespace
38 } // namespace profiles
profiles_state.h 15 namespace profiles { namespace
17 // Checks if multiple profiles is enabled.
41 } // namespace profiles
avatar_menu.cc 5 #include "chrome/browser/profiles/avatar_menu.h"
14 #include "chrome/browser/profiles/avatar_menu_actions.h"
15 #include "chrome/browser/profiles/avatar_menu_observer.h"
16 #include "chrome/browser/profiles/profile_list.h"
17 #include "chrome/browser/profiles/profile_manager.h"
18 #include "chrome/browser/profiles/profile_metrics.h"
19 #include "chrome/browser/profiles/profile_window.h"
20 #include "chrome/browser/profiles/profiles_state.h"
88 // We should only be in this group when multi-profiles is enabled.
89 DCHECK(profiles::IsMultipleProfilesEnabled())
    [all...]
profile_window.h 15 namespace profiles { namespace
60 } // namespace profiles
profile_manager_browsertest.cc 9 #include "chrome/browser/profiles/profile_info_cache.h"
10 #include "chrome/browser/profiles/profile_info_cache_observer.h"
11 #include "chrome/browser/profiles/profile_manager.h"
12 #include "chrome/browser/profiles/profile_window.h"
13 #include "chrome/browser/profiles/profiles_state.h"
34 const profiles::ProfileSwitchingDoneCallback kOnProfileSwitchDoNothing;
134 // Delete all profiles in a multi profile setup and make sure a new one is
154 // Delete all profiles.
236 std::vector<Profile*> profiles = profile_manager->GetLoadedProfiles(); local
237 for (std::vector<Profile*>::const_iterator it = profiles.begin()
    [all...]
profile_window.cc 5 #include "chrome/browser/profiles/profile_window.h"
10 #include "chrome/browser/profiles/profile.h"
11 #include "chrome/browser/profiles/profile_manager.h"
34 profiles::ProfileSwitchingDoneCallback callback) : callback_(callback) {
48 profiles::ProfileSwitchingDoneCallback callback_;
54 profiles::ProfileSwitchingDoneCallback callback,
86 profiles::FindOrCreateNewWindowForProfile(
96 namespace profiles { namespace
191 } // namespace profiles
  /external/chromium_org/chrome/browser/ui/views/frame/
taskbar_decorator_win.cc 16 #include "chrome/browser/profiles/profile_info_util.h"
48 if ((bitmap->width() == profiles::kAvatarIconWidth) &&
49 (bitmap->height() == profiles::kAvatarIconHeight)) {
54 profiles::kAvatarIconWidth - x * 2, profiles::kAvatarIconHeight));
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
Config.java 74 ArrayList<Class> profiles = new ArrayList<Class>(PROFILE_SERVICES.length); local
79 profiles.add(PROFILE_SERVICES[i]);
82 int totalProfiles = profiles.size();
84 profiles.toArray(SUPPORTED_PROFILES);
  /external/chromium_org/chrome/browser/ui/ash/multi_user/
multi_user_util.cc 10 #include "chrome/browser/profiles/profile.h"
11 #include "chrome/browser/profiles/profile_manager.h"
36 std::vector<Profile*> profiles =
39 std::vector<Profile*>::const_iterator profile_iterator = profiles.begin();
40 for (; profile_iterator != profiles.end(); ++profile_iterator) {
  /external/chromium_org/chrome/browser/ui/gtk/
avatar_menu_button_gtk.cc 10 #include "chrome/browser/profiles/profile_metrics.h"
11 #include "chrome/browser/profiles/profile_info_util.h"
82 gfx::Image icon = profiles::GetAvatarIconForTitleBar(
84 profiles::kAvatarIconWidth, profiles::kAvatarIconWidth);
  /external/chromium_org/third_party/WebKit/PerformanceTests/inspector/
heap-snapshot-performance-test.js 3 WebInspector.showPanel("profiles");
29 var type = WebInspector.panels.profiles.getProfileType("HEAP");
38 var profiles = type.getProfiles();
39 InspectorTest.addSniffer(profiles[0]._transferHandler, "_updateProgress", onUpdateProgress, true);
40 InspectorTest.addSniffer(profiles[0], "_wasShown", step2);
64 WebInspector.panels.profiles._reset();
  /frameworks/av/include/media/
MediaProfiles.h 207 // Camcorder profiles (high/low) and timelapse profiles (high/low)
401 static VideoCodec* createVideoCodec(const char **atts, MediaProfiles *profiles);
402 static AudioCodec* createAudioCodec(const char **atts, MediaProfiles *profiles);
408 const char **atts, MediaProfiles *profiles);
445 static void createDefaultCamcorderProfiles(MediaProfiles *profiles);
446 static void createDefaultVideoEncoders(MediaProfiles *profiles);
447 static void createDefaultAudioEncoders(MediaProfiles *profiles);
448 static void createDefaultVideoDecoders(MediaProfiles *profiles);
449 static void createDefaultAudioDecoders(MediaProfiles *profiles);
    [all...]
  /external/chromium_org/chrome/browser/autofill/
autofill_browsertest.cc 23 #include "chrome/browser/profiles/profile.h"
139 void SetProfiles(std::vector<AutofillProfile>* profiles) {
141 personal_data_manager()->SetProfiles(profiles);
146 std::vector<AutofillProfile> profiles; local
147 profiles.push_back(profile);
148 SetProfiles(&profiles);
194 // Aggregate profiles from forms into Autofill preferences. Returns the number
195 // of parsed profiles.
270 // Test filling profiles with unicode strings and crazy characters.
273 std::vector<AutofillProfile> profiles; local
568 std::vector<FormMap> profiles; local
    [all...]
  /external/chromium_org/chrome/browser/download/
download_service.cc 18 #include "chrome/browser/profiles/profile.h"
19 #include "chrome/browser/profiles/profile_manager.h"
100 std::vector<Profile*> profiles(
104 for (std::vector<Profile*>::iterator it = profiles.begin();
105 it < profiles.end(); ++it) {
118 std::vector<Profile*> profiles(
120 for (std::vector<Profile*>::iterator it = profiles.begin();
121 it < profiles.end();
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ProfilesLoader.java 57 double[] profiles = new double[data.length]; local
59 profiles[i] = (Long.parseLong(data[i]) / 1000.0) / 1000.0; // convert to ms
61 return profiles;
  /external/chromium/chrome/browser/extensions/
extension_event_router_forwarder.cc 9 #include "chrome/browser/profiles/profile_manager.h"
83 std::vector<Profile*> profiles(profile_manager->GetLoadedProfiles());
84 for (size_t i = 0; i < profiles.size(); ++i) {
86 profiles[i], extension_id, event_name, event_args,
87 use_profile_to_restrict_events ? profiles[i] : NULL, event_url);
  /external/chromium/chrome/browser/autofill/
personal_data_manager.cc 21 #include "chrome/browser/profiles/profile.h"
303 // Reject profiles with invalid country information.
340 // We always save imported profiles.
349 void PersonalDataManager::SetProfiles(std::vector<AutofillProfile>* profiles) {
353 // Remove empty profiles from input.
354 profiles->erase(
355 std::remove_if(profiles->begin(), profiles->end(),
357 profiles->end());
363 // identifies profiles
477 std::vector<AutofillProfile> profiles; local
597 const std::vector<AutofillProfile*>& profiles = this->profiles(); local
632 const std::vector<AutofillProfile*>& PersonalDataManager::profiles() { function in class:PersonalDataManager
831 std::vector<AutofillProfile*> profiles = r->GetValue(); local
    [all...]
autofill_merge_unittest.cc 46 // Serializes the |profiles| into a string.
47 std::string SerializeProfiles(const std::vector<AutofillProfile*>& profiles) {
49 for (size_t i = 0; i < profiles.size(); ++i) {
55 profiles[i]->GetMultiInfo(type, &values);
73 // Reset the saved profiles.
98 std::vector<AutofillProfile> profiles; local
99 if (!MergeProfile(profile, profiles_.get(), &profiles))
109 // A data-driven test for verifying merging of Autofill profiles. Each input is
110 // a structured dump of a set of implicitly detected autofill profiles. The
111 // corresponding output file is a dump of the saved profiles that result fro
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/
options_handlers_helper.cc 9 #include "chrome/browser/profiles/profile_manager.h"
10 #include "chrome/browser/profiles/profile_metrics.h"
11 #include "chrome/browser/profiles/profile_window.h"
12 #include "chrome/browser/profiles/profiles_state.h"
44 profiles::FindOrCreateNewWindowForProfile(
59 if (!profiles::IsMultipleProfilesEnabled())
  /external/chromium_org/components/autofill/core/browser/
autofill_merge_unittest.cc 60 // Serializes the |profiles| into a string.
61 std::string SerializeProfiles(const std::vector<AutofillProfile*>& profiles) {
63 for (size_t i = 0; i < profiles.size(); ++i) {
69 profiles[i]->GetRawMultiInfo(type, &values);
87 // Reset the saved profiles.
114 std::vector<AutofillProfile> profiles; local
116 MergeProfile(profile, profiles_.get(), "en-US", &profiles);
129 // A data-driven test for verifying merging of Autofill profiles. Each input is
130 // a structured dump of a set of implicitly detected autofill profiles. The
131 // corresponding output file is a dump of the saved profiles that result fro
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/builtins/tools/
generate_builtins.py 122 profiles = get_profile_list()
123 for (filename, profile) in profiles:
130 path.join(builtins_dir, 'profiles'), '*.' + extension)
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/openssl/openssl/ssl/
d1_srtp.c 192 STACK_OF(SRTP_PROTECTION_PROFILE) *profiles;
199 if(!(profiles=sk_SRTP_PROTECTION_PROFILE_new_null()))
212 sk_SRTP_PROTECTION_PROFILE_push(profiles,p);
223 *out=profiles;
228 int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx,const char *profiles)
230 return ssl_ctx_make_profiles(profiles,&ctx->srtp_profiles);
233 int SSL_set_tlsext_use_srtp(SSL *s,const char *profiles)
235 return ssl_ctx_make_profiles(profiles,&s->srtp_profiles);
263 profiles specified */
376 /* Pick our most preferred profile. If no profiles have bee
    [all...]
  /external/mesa3d/src/glsl/builtins/tools/
generate_builtins.py 122 profiles = get_profile_list()
123 for (filename, profile) in profiles:
130 path.join(builtins_dir, 'profiles'), '*.' + extension)
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/openssl/ssl/
d1_srtp.c 192 STACK_OF(SRTP_PROTECTION_PROFILE) *profiles;
199 if(!(profiles=sk_SRTP_PROTECTION_PROFILE_new_null()))
212 sk_SRTP_PROTECTION_PROFILE_push(profiles,p);
223 *out=profiles;
228 int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx,const char *profiles)
230 return ssl_ctx_make_profiles(profiles,&ctx->srtp_profiles);
233 int SSL_set_tlsext_use_srtp(SSL *s,const char *profiles)
235 return ssl_ctx_make_profiles(profiles,&s->srtp_profiles);
263 profiles specified */
376 /* Pick our most preferred profile. If no profiles have bee
    [all...]
  /external/chromium/chrome/browser/profiles/
profile_manager.cc 7 #include "chrome/browser/profiles/profile_manager.h"
71 std::vector<Profile*> profiles(pm->GetLoadedProfiles());
72 for (size_t i = 0; i < profiles.size(); ++i)
73 profiles[i]->ShutdownSessionService();
150 // TODO(davemoore) Fix the tests so they allow OTR profiles.
199 std::vector<Profile*> profiles; local
203 profiles.push_back(iter->second->profile.get());
205 return profiles;
299 std::vector<Profile*> profiles(GetLoadedProfiles());
300 for (size_t i = 0; i < profiles.size(); ++i)
    [all...]

Completed in 507 milliseconds

12 3 4 5 6 7 8 910