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

1 2 3 4 5 6 7 8 910

  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/
ProfilesTableModel.java 25 private final double[] profiles; field in class:ProfilesTableModel
28 public ProfilesTableModel(double[] profiles) {
29 this.profiles = profiles;
35 return profiles == null ? 0 : profiles.length;
40 if (profiles == null) return "";
47 return formatter.format(profiles[row]) + "";
  /external/chromium_org/chrome/browser/extensions/api/principals_private/
principals_private_api.cc 8 #include "chrome/browser/profiles/avatar_menu.h"
9 #include "chrome/browser/profiles/profile_window.h"
10 #include "chrome/browser/profiles/profiles_state.h"
17 if (!profiles::IsNewProfileManagementEnabled()) {
28 profiles::LockProfile(browser->profile());
  /external/chromium_org/chrome/browser/apps/
chrome_apps_client.cc 9 #include "chrome/browser/profiles/profile_manager.h"
29 std::vector<Profile*> profiles = local
31 return std::vector<content::BrowserContext*>(profiles.begin(),
32 profiles.end());
  /external/chromium_org/components/test/data/autofill/merge/tools/
reserialize_profiles_from_query.py 25 profiles = []
33 profiles.append(zip(types, values))
35 print SerializeProfiles(profiles)
flatten.py 20 profiles = [COLUMNS]
33 profiles.append(profile)
48 profiles.append(profile)
51 transposed = zip(*profiles)
58 for profile in profiles:
serialize_profiles.py 39 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())
autofill_merge_common.py 14 def SerializeProfiles(profiles):
15 """Returns a serialized string for the given |profiles|.
17 |profiles| should be a list of (field_type, value) string pairs.
22 for profile in profiles:
23 # Include a fixed string to separate profiles.
  /external/chromium/chrome/browser/importer/
importer_list.cc 25 void DetectIEProfiles(std::vector<importer::SourceProfile*>* profiles) {
26 // IE always exists and doesn't have multiple profiles.
34 profiles->push_back(ie);
39 void DetectSafariProfiles(std::vector<importer::SourceProfile*>* profiles) {
50 profiles->push_back(safari);
54 void DetectFirefoxProfiles(std::vector<importer::SourceProfile*>* profiles) {
89 profiles->push_back(firefox);
93 std::vector<importer::SourceProfile*>* profiles) {
104 profiles->push_back(google_toolbar);
165 std::vector<importer::SourceProfile*> profiles;
    [all...]
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
srtp.h 133 int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles);
134 int SSL_set_tlsext_use_srtp(SSL *ctx, const char *profiles);
  /external/chromium_org/third_party/openssl/openssl/ssl/
srtp.h 133 int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles);
134 int SSL_set_tlsext_use_srtp(SSL *ctx, const char *profiles);
  /external/openssl/include/openssl/
srtp.h 133 int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles);
134 int SSL_set_tlsext_use_srtp(SSL *ctx, const char *profiles);
  /external/openssl/ssl/
srtp.h 133 int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles);
134 int SSL_set_tlsext_use_srtp(SSL *ctx, const char *profiles);
  /external/chromium/chrome/browser/autofill/
autofill_ie_toolbar_import_win_unittest.cc 19 bool ImportCurrentUserProfiles(std::vector<AutofillProfile>* profiles,
29 L"Software\\Google\\Google Toolbar\\4.0\\Autofill\\Profiles";
161 std::vector<AutofillProfile> profiles; local
163 EXPECT_TRUE(ImportCurrentUserProfiles(&profiles, &credit_cards));
164 ASSERT_EQ(profiles.size(), 2);
165 // The profiles are read in reverse order.
166 EXPECT_EQ(profiles[1].GetInfo(NAME_FIRST), profile1[0].value);
167 EXPECT_EQ(profiles[1].GetInfo(NAME_MIDDLE), profile1[1].value);
168 EXPECT_EQ(profiles[1].GetInfo(NAME_LAST), profile1[2].value);
169 EXPECT_EQ(profiles[1].GetInfo(EMAIL_ADDRESS), profile1[3].value)
    [all...]
autofill_profile_unittest.cc 20 std::vector<AutofillProfile*> profiles; local
21 profiles.push_back(profile);
22 return AutofillProfile::AdjustInferredLabels(&profiles);
119 std::vector<AutofillProfile*> profiles; local
120 profiles.push_back(&profile7);
121 profiles.push_back(&profile7a);
122 EXPECT_TRUE(AutofillProfile::AdjustInferredLabels(&profiles));
132 std::vector<AutofillProfile*> profiles; local
133 profiles.push_back(new AutofillProfile);
135 profiles[0]
298 std::vector<AutofillProfile*> profiles; local
400 ScopedVector<AutofillProfile> profiles; local
434 ScopedVector<AutofillProfile> profiles; local
460 ScopedVector<AutofillProfile> profiles; local
    [all...]
autofill_dialog.h 31 // only sets the profiles and not the credit cards.
33 std::vector<AutoFillProfile>* profiles,
41 // |profile| is profile from which you can get vectors of autofill profiles that
  /external/chromium_org/chrome/browser/importer/
importer_list.cc 28 void DetectIEProfiles(std::vector<importer::SourceProfile*>* profiles) {
29 // IE always exists and doesn't have multiple profiles.
37 profiles->push_back(ie);
42 void DetectSafariProfiles(std::vector<importer::SourceProfile*>* profiles) {
53 profiles->push_back(safari);
61 std::vector<importer::SourceProfile*>* profiles) {
95 profiles->push_back(firefox);
161 std::vector<importer::SourceProfile*> profiles; local
167 DetectFirefoxProfiles(locale, &profiles);
168 DetectIEProfiles(&profiles);
    [all...]
  /external/chromium_org/components/autofill/core/browser/
autofill_ie_toolbar_import_win_unittest.cc 22 std::vector<AutofillProfile>* profiles,
32 L"Software\\Google\\Google Toolbar\\4.0\\Autofill\\Profiles";
162 std::vector<AutofillProfile> profiles; local
164 EXPECT_TRUE(ImportCurrentUserProfiles("en-US", &profiles, &credit_cards));
165 ASSERT_EQ(2U, profiles.size());
166 // The profiles are read in reverse order.
167 EXPECT_EQ(profile1[0].value, profiles[1].GetRawInfo(NAME_FIRST));
168 EXPECT_EQ(profile1[1].value, profiles[1].GetRawInfo(NAME_MIDDLE));
169 EXPECT_EQ(profile1[2].value, profiles[1].GetRawInfo(NAME_LAST));
170 EXPECT_EQ(profile1[3].value, profiles[1].GetRawInfo(EMAIL_ADDRESS))
    [all...]
autofill_profile_unittest.cc 24 std::vector<AutofillProfile*> profiles; local
25 profiles.push_back(profile);
27 AutofillProfile::CreateDifferentiatingLabels(profiles, &labels);
123 std::vector<AutofillProfile*> profiles; local
124 profiles.push_back(&profile7);
125 profiles.push_back(&profile7a);
127 AutofillProfile::CreateDifferentiatingLabels(profiles, &labels);
128 ASSERT_EQ(profiles.size(), labels.size());
138 ScopedVector<AutofillProfile> profiles; local
139 profiles.push_back
288 ScopedVector<AutofillProfile> profiles; local
396 ScopedVector<AutofillProfile> profiles; local
432 ScopedVector<AutofillProfile> profiles; local
460 ScopedVector<AutofillProfile> profiles; local
499 ScopedVector<AutofillProfile> profiles; local
    [all...]
  /external/chromium_org/chrome/browser/extensions/
browser_permissions_policy_delegate.cc 8 #include "chrome/browser/profiles/profile.h"
9 #include "chrome/browser/profiles/profile_manager.h"
47 std::vector<Profile*> profiles =
49 for (std::vector<Profile*>::iterator profile = profiles.begin();
50 profile != profiles.end(); ++profile) {
  /external/chromium_org/chrome/browser/profiles/
profile_info_util_unittest.cc 5 #include "chrome/browser/profiles/profile_info_util.h"
41 profiles::GetSizedAvatarIconWithBorder(profile_image, false, 50, 50);
51 profiles::GetSizedAvatarIconWithBorder(
61 gfx::Image result = profiles::GetAvatarIconForMenu(profile_image, false);
67 gfx::Size size(profiles::kAvatarIconWidth, profiles::kAvatarIconHeight);
68 gfx::Image result2 = profiles::GetAvatarIconForMenu(rect_picture, true);
77 gfx::Image result = profiles::GetAvatarIconForWebUI(profile_image, false);
83 gfx::Size size(profiles::kAvatarIconWidth, profiles::kAvatarIconHeight)
    [all...]
  /external/chromium/chrome/browser/
memory_purger.cc 12 #include "chrome/browser/profiles/profile_manager.h"
101 std::vector<Profile*> profiles(profile_manager->GetLoadedProfiles());
102 for (size_t i = 0; i < profiles.size(); ++i) {
104 make_scoped_refptr(profiles[i]->GetRequestContext()));
106 // NOTE: Some objects below may be duplicates across profiles. We could
113 profiles[i]->GetHistoryServiceWithoutCreating();
119 profiles[i]->GetWebDataServiceWithoutCreating();
126 profiles[i]->GetWebKitContext()->PurgeMemory();
  /external/chromium_org/chrome/browser/
memory_purger.cc 15 #include "chrome/browser/profiles/profile_manager.h"
103 std::vector<Profile*> profiles(profile_manager->GetLoadedProfiles());
104 for (size_t i = 0; i < profiles.size(); ++i) {
106 make_scoped_refptr(profiles[i]->GetRequestContext()));
108 // NOTE: Some objects below may be duplicates across profiles. We could
115 HistoryServiceFactory::GetForProfileWithoutCreating(profiles[i]);
122 profiles[i], Profile::EXPLICIT_ACCESS);
126 BrowserContext::PurgeMemory(profiles[i]);
  /external/chromium_org/chrome/browser/ui/webui/options/
options_ui_browsertest.cc 27 #include "chrome/browser/profiles/profile.h"
28 #include "chrome/browser/profiles/profile_manager.h"
103 " document.querySelectorAll('list#profiles-list > div[role=listitem]')"
105 int profiles; local
107 contents, javascript, &profiles));
108 EXPECT_EQ(1, profiles);
125 // Verify that the settings page has updated and lists two profiles.
127 contents, javascript, &profiles));
128 EXPECT_EQ(2, profiles);
  /frameworks/av/media/libmedia/
MediaProfiles.cpp 164 MediaProfiles::createVideoCodec(const char **atts, MediaProfiles *profiles)
182 CHECK((nCamcorderProfiles = profiles->mCamcorderProfiles.size()) >= 1);
183 profiles->mCamcorderProfiles[nCamcorderProfiles - 1]->mVideoCodec = videoCodec;
188 MediaProfiles::createAudioCodec(const char **atts, MediaProfiles *profiles)
204 CHECK((nCamcorderProfiles = profiles->mCamcorderProfiles.size()) >= 1);
205 profiles->mCamcorderProfiles[nCamcorderProfiles - 1]->mAudioCodec = audioCodec;
404 MediaProfiles::createVideoEditorCap(const char **atts, MediaProfiles *profiles)
417 profiles->mVideoEditorCap = pVideoEditorCap;
425 MediaProfiles *profiles = (MediaProfiles *) userData; local
427 createVideoCodec(atts, profiles);
877 MediaProfiles *profiles = new MediaProfiles; local
899 MediaProfiles *profiles = new MediaProfiles(); local
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/profiles/
Profile.java 5 package org.chromium.chrome.browser.profiles;

Completed in 577 milliseconds

1 2 3 4 5 6 7 8 910