/external/chromium_org/chrome/browser/profiles/ |
profile_info_util.h | 10 namespace profiles { namespace 38 } // namespace profiles
|
profile_window.h | 15 namespace profiles { namespace 60 } // namespace profiles
|
profiles_state.h | 15 namespace profiles { namespace 17 // Checks if multiple profiles is enabled. 41 } // namespace profiles
|
profile_shortcut_manager_win.h | 9 #include "chrome/browser/profiles/profile_shortcut_manager.h" 16 namespace profiles { namespace 32 } // namespace profiles 88 // Must only be called when the number profiles is 2.
|
profiles_state.cc | 5 #include "chrome/browser/profiles/profiles_state.h" 13 #include "chrome/browser/profiles/profile.h" 14 #include "chrome/browser/profiles/profile_info_cache.h" 15 #include "chrome/browser/profiles/profile_manager.h" 27 namespace profiles { namespace 110 } // namespace profiles
|
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/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/chrome/android/java/src/org/chromium/chrome/browser/profiles/ |
Profile.java | 5 package org.chromium.chrome.browser.profiles;
|
MostVisitedSites.java | 5 package org.chromium.chrome.browser.profiles;
|
/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);
|
/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/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);
|
/external/chromium_org/chromeos/dbus/ |
shill_stub_helper.cc | 54 ShillProfileClient::TestInterface* profiles = local 60 if (!services || !profiles || !manager | !devices) 72 profiles->AddProfile(kSharedProfilePath, std::string()); 95 profiles->AddService(kSharedProfilePath, "eth1"); 108 profiles->AddService(kSharedProfilePath, "wifi1"); 121 profiles->AddService(kSharedProfilePath, "wifi2"); 185 profiles->AddService(kSharedProfilePath, "vpn1");
|
/external/chromium_org/content/renderer/media/ |
rtc_video_encoder_factory.cc | 65 std::vector<media::VideoEncodeAccelerator::SupportedProfile> profiles = local 67 for (size_t i = 0; i < profiles.size(); ++i) { 68 VideoCodec codec = VEAToWebRTCCodec(profiles[i]);
|
/external/chromium_org/chrome/browser/devtools/ |
browser_list_tabcontents_provider.cc | 11 #include "chrome/browser/profiles/profile_manager.h" 41 std::set<Profile*> profiles; local 43 profiles.insert((*it)->profile()); 45 for (std::set<Profile*>::iterator it = profiles.begin(); 46 it != profiles.end(); ++it) {
|
/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_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/content/common/gpu/media/ |
gpu_video_encode_accelerator.cc | 89 std::vector<media::VideoEncodeAccelerator::SupportedProfile> profiles; local 92 profiles = ExynosVideoEncodeAccelerator::GetSupportedProfiles(); 94 profiles = AndroidVideoEncodeAccelerator::GetSupportedProfiles(); 97 // TODO(sheu): return platform-specific profiles. 98 return profiles;
|
/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/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:
|
/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/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_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...] |
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...] |
/external/chromium/chrome/browser/sync/glue/ |
autofill_profile_model_associator.cc | 59 << "Printing profiles from web db"; 75 const std::vector<AutofillProfile*>& profiles(all_profiles_from_db); 76 for (std::vector<AutofillProfile*>::const_iterator ix = profiles.begin(); 77 ix != profiles.end(); 128 std::vector<AutofillProfile*>* profiles) { 132 if (!web_database_->GetAutofillTable()->GetAutofillProfiles(profiles)) 146 ScopedVector<AutofillProfile> profiles; local 148 if (!LoadAutofillData(&profiles.get())) { 170 profiles.get(), &bundle.current_profiles, 304 // server profile.(The only difference between the 2 profiles are the guids [all...] |