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

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Browser/src/com/android/browser/
AutoFillProfileDatabase.java 33 static final String PROFILES_TABLE_NAME = "profiles";
37 public static final class Profiles implements BaseColumns {
38 private Profiles() { }
60 + Profiles._ID + " INTEGER PRIMARY KEY,"
61 + Profiles.FULL_NAME + " TEXT,"
62 + Profiles.EMAIL_ADDRESS + " TEXT,"
63 + Profiles.COMPANY_NAME + " TEXT,"
64 + Profiles.ADDRESS_LINE_1 + " TEXT,"
65 + Profiles.ADDRESS_LINE_2 + " TEXT,"
66 + Profiles.CITY + " TEXT,
    [all...]
  /external/chromium/chrome/browser/debugger/manual_tests/
profiler-test-re-opening.html 3 <title>Profiler: test profiles population on DevTools re-opening</title>
14 This test runs and profiles a simple looped computation.
21 <li>go to 'Profiles' page;
22 <li>observe that 'Profile 1' item has appeared under 'CPU profiles' section;
25 'CPU profiles' section;
30 <li>go to 'Profiles' page;
31 <li>verify that CPU profiles 'Profile 1' and 'Profile 2', and heap profiles
profiler-test-console-control.html 14 This test runs and profiles a simple looped computation.
21 <li>go to 'Profiles' page;
22 <li>observe that 'Profile 1' item has appeared under 'CPU profiles' section;
  /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/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_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...]
personal_data_manager.h 32 // This class also stores the profiles loaded from the database for use during
88 // Sets |web_profiles_| to the contents of |profiles| and updates the web
89 // database by adding, updating and removing profiles.
96 // updates in |profiles| make it to the DB. This is why SetProfiles will
99 void SetProfiles(std::vector<AutofillProfile>* profiles);
142 // This PersonalDataManager owns these profiles and credit cards. Their
144 // card information, respectively. |profiles()| returns both web and
145 // auxiliary profiles. |web_profiles()| returns only web profiles.
146 const std::vector<AutofillProfile*>& profiles();
    [all...]
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_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/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...]
importer_list.h 24 // order to be called back when the source profiles are loaded.
35 // Detects the installed browsers and their associated profiles, then stores
37 // profiles. Calls into DetectSourceProfilesWorker() on the FILE thread to do
38 // the real work of detecting source profiles. |observer| must be non-NULL.
50 // Returns the number of different source profiles you can import from.
53 // Returns the SourceProfile at |index|. The profiles are ordered such that
72 // notifies |observer_| that the source profiles are loaded. |profiles| is
73 // the vector of loaded profiles.
75 const std::vector<importer::SourceProfile*>& profiles);
    [all...]
  /external/chromium/chrome/browser/tabs/
pinned_tab_service_factory.cc 8 #include "chrome/browser/profiles/profile.h"
9 #include "chrome/browser/profiles/profile_dependency_manager.h"
pinned_tab_service_factory.h 10 #include "chrome/browser/profiles/profile_keyed_service_factory.h"
15 // Singleton that owns all PinnedTabServices and associates them with 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/chrome/browser/
background_contents_service_factory.cc 9 #include "chrome/browser/profiles/profile.h"
10 #include "chrome/browser/profiles/profile_dependency_manager.h"
background_contents_service_factory.h 10 #include "chrome/browser/profiles/profile_keyed_service_factory.h"
16 // Profiles. Listens for the Profile's destruction notification and cleans up
background_mode_manager_factory.cc 9 #include "chrome/browser/profiles/profile.h"
10 #include "chrome/browser/profiles/profile_dependency_manager.h"
background_mode_manager_factory.h 10 #include "chrome/browser/profiles/profile_keyed_service_factory.h"
16 // Profiles. Listens for the Profile's destruction notification and cleans up
  /external/chromium/chrome/browser/notifications/
desktop_notification_service_factory.cc 9 #include "chrome/browser/profiles/profile.h"
10 #include "chrome/browser/profiles/profile_dependency_manager.h"
desktop_notification_service_factory.h 10 #include "chrome/browser/profiles/profile_keyed_service_factory.h"
16 // Profiles. Listens for the Profile's destruction notification and cleans up
  /external/chromium/chrome/browser/resources/options/
personal_options.css 17 #profiles-create {
21 #profiles-create-button {
  /external/chromium/chrome/browser/profiles/
profile_keyed_service_factory.cc 5 #include "chrome/browser/profiles/profile_keyed_service_factory.h"
10 #include "chrome/browser/profiles/profile.h"
11 #include "chrome/browser/profiles/profile_dependency_manager.h"
12 #include "chrome/browser/profiles/profile_keyed_service.h"
  /external/oprofile/libpp/
populate.h 3 * Fill up a profile_container from inverted profiles
  /external/webkit/Source/WebCore/bindings/js/
JSConsoleCustom.cpp 46 JSValue JSConsole::profiles(ExecState* exec) const function in class:WebCore::JSConsole
48 const ProfilesArray& profiles = impl()->profiles(); local
51 ProfilesArray::const_iterator end = profiles.end();
52 for (ProfilesArray::const_iterator iter = profiles.begin(); iter != end; ++iter)

Completed in 336 milliseconds

1 2 3 4 5 6 7 8 91011>>