HomeSort by relevance Sort by last modified time
    Searched defs:profiles (Results 51 - 75 of 154) sorted by null

1 23 4 5 6 7

  /external/chromium_org/content/common/gpu/media/
android_video_encode_accelerator.cc 85 std::vector<SupportedProfile> profiles; local
90 return profiles;
109 profiles.push_back(profile);
111 return profiles;
v4l2_video_encode_accelerator.cc 290 std::vector<SupportedProfile> profiles; local
299 profiles.push_back(profile);
306 profiles.push_back(profile);
308 return profiles;
    [all...]
vaapi_video_encode_accelerator.cc 109 std::vector<SupportedProfile> profiles; local
113 return profiles;
125 profiles.push_back(profile);
127 return profiles;
796 // and non-constrained baseline profiles. Since many codecs can't do
    [all...]
  /external/oprofile/libpp/
arrange_profiles.h 24 * store merging options options used to classify profiles
69 * A number of profiles files that are all dependent on
87 * contains all profiles against /bin/bash, and deps contains
103 * A class collection of profiles. This is an equivalence class and
107 std::list<profile_set> profiles; member in struct:profile_class
172 * as well as attaching dependent profiles to the main image.
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
UninstallAppProgress.java 184 List<UserHandle> profiles = userManager.getUserProfiles(); local
185 if (!profiles.contains(mUser)) {
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothDevicePreference.java 307 List<LocalBluetoothProfile> profiles = mCachedDevice.getProfiles(); local
308 for (LocalBluetoothProfile profile : profiles) {
  /packages/apps/Settings/src/com/android/settings/location/
RecentLocationApps.java 114 final List<UserHandle> profiles = um.getUserProfiles(); local
126 if (isAndroidOs || !profiles.contains(new UserHandle(userId))) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
BluetoothControllerImpl.java 63 // one state on screen, but can have multiple profiles, the later states override the
135 + ",bonded=" + info.bonded + ",profiles="
139 private static String profilesToString(SparseArray<?> profiles) {
140 final int N = profiles.size();
147 buffer.append(BluetoothUtil.profileToString(profiles.keyAt(i)));
242 SparseArray<Boolean> profiles = new SparseArray<>(); local
254 profiles.put(profile, true);
259 profiles = info.connectedProfiles;
261 for (int i = 0; i < profiles.size(); i++) {
262 final int profile = profiles.keyAt(i)
    [all...]
  /packages/apps/Settings/src/com/android/settings/accounts/
AccountSettings.java 64 * This shows all account types available for personal and work profiles.
237 List<UserInfo> profiles = mUm.getProfiles(UserHandle.myUserId()); local
238 final int profilesCount = profiles.size();
241 updateProfileUi(profiles.get(i), addCategory, preferenceScreen);
  /external/chromium_org/chrome/browser/autofill/
autofill_browsertest.cc 20 #include "chrome/browser/profiles/profile.h"
137 void SetProfiles(std::vector<AutofillProfile>* profiles) {
139 personal_data_manager()->SetProfiles(profiles);
144 std::vector<AutofillProfile> profiles; local
145 profiles.push_back(profile);
146 SetProfiles(&profiles);
202 // Aggregate profiles from forms into Autofill preferences. Returns the number
203 // of parsed profiles.
278 // Test filling profiles with unicode strings and crazy characters.
281 std::vector<AutofillProfile> profiles; local
583 std::vector<FormMap> profiles; local
694 std::vector<FormMap> profiles; local
    [all...]
autofill_interactive_uitest.cc 21 #include "chrome/browser/profiles/profile.h"
262 void SetProfiles(std::vector<AutofillProfile>* profiles) {
264 GetPersonalDataManager()->SetProfiles(profiles);
269 std::vector<AutofillProfile> profiles; local
270 profiles.push_back(profile);
271 SetProfiles(&profiles);
1380 std::vector<AutofillProfile> profiles; local
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/
autofill_helper.cc 9 #include "chrome/browser/profiles/profile.h"
327 std::vector<AutofillProfile> profiles; local
329 profiles.push_back(*all_profiles[i]);
331 profiles.back().SetRawInfo(type.GetStorableType(), value);
333 autofill_helper::SetProfiles(profile, &profiles);
409 "profiles as profile 0.";
483 return "Waiting for matching autofill profiles";
  /external/chromium_org/chrome/browser/ui/app_list/
app_list_view_delegate.cc 18 #include "chrome/browser/profiles/profile_info_cache.h"
19 #include "chrome/browser/profiles/profile_manager.h"
158 // profile switcher menu up to date, with the correct list of profiles and the
164 std::vector<Profile*> profiles = profile_manager->GetLoadedProfiles(); local
165 for (std::vector<Profile*>::iterator i = profiles.begin();
166 i != profiles.end();
  /external/chromium_org/chrome/browser/ui/ash/multi_user/
multi_user_window_manager_chromeos.cc 23 #include "chrome/browser/profiles/profile.h"
24 #include "chrome/browser/profiles/profile_manager.h"
123 std::vector<Profile*> profiles = local
125 for (std::vector<Profile*>::iterator it = profiles.begin();
126 it != profiles.end() && app_window == NULL;
  /external/chromium_org/chrome/browser/ui/webui/options/
autofill_options_handler.cc 19 #include "chrome/browser/profiles/profile.h"
425 const std::vector<AutofillProfile*>& profiles = local
429 profiles,
432 DCHECK_EQ(labels.size(), profiles.size());
435 for (size_t i = 0; i < profiles.size(); ++i) {
437 entry->Append(new base::StringValue(profiles[i]->guid()));
  /external/chromium_org/components/autofill/core/browser/
personal_data_manager_unittest.cc 71 // while ignoring order. This is useful because multiple profiles or credit
186 std::vector<AutofillProfile*> profiles; local
187 profiles.push_back(&profile0);
188 profiles.push_back(&profile1);
189 ExpectSameElements(profiles, personal_data_->GetProfiles());
211 // Add two test profiles to the database.
220 std::vector<AutofillProfile*> profiles; local
221 profiles.push_back(&profile0);
222 profiles.push_back(&profile1);
223 ExpectSameElements(profiles, personal_data_->GetProfiles())
413 std::vector<AutofillProfile*> profiles; local
542 std::vector<AutofillProfile*> profiles; local
746 const std::vector<AutofillProfile*>& profiles = personal_data_->GetProfiles(); local
775 const std::vector<AutofillProfile*>& profiles = personal_data_->GetProfiles(); local
802 const std::vector<AutofillProfile*>& profiles = personal_data_->GetProfiles(); local
824 const std::vector<AutofillProfile*>& profiles = personal_data_->GetProfiles(); local
1041 std::vector<AutofillProfile*> profiles; local
1438 const std::vector<AutofillProfile*>& profiles = personal_data_->GetProfiles(); local
    [all...]
autofill_manager.cc 125 // Uses the existing personal data in |profiles| and |credit_cards| to determine
131 const std::vector<AutofillProfile>& profiles,
143 for (std::vector<AutofillProfile>::const_iterator it = profiles.begin();
144 it != profiles.end(); ++it) {
351 const std::vector<AutofillProfile*>& profiles = personal_data_->GetProfiles(); local
354 if (!profiles.empty() || !credit_cards.empty()) {
358 copied_profiles.reserve(profiles.size());
359 for (std::vector<AutofillProfile*>::const_iterator it = profiles.begin();
360 it != profiles.end(); ++it) {
    [all...]
personal_data_manager.cc 307 // Reject profiles with invalid country information.
363 // We always save imported profiles.
430 const std::vector<AutofillProfile*>& profiles = GetProfiles(); local
432 FindElementByGUID<AutofillProfile>(profiles, guid);
433 return (iter != profiles.end()) ? *iter : NULL;
518 const std::vector<AutofillProfile*>& profiles = GetProfiles(); local
519 for (std::vector<AutofillProfile*>::const_iterator iter = profiles.begin();
520 iter != profiles.end(); ++iter) {
566 const std::vector<AutofillProfile*>& profiles = GetProfiles(true); local
568 for (std::vector<AutofillProfile*>::const_iterator iter = profiles.begin()
786 const std::vector<AutofillProfile*>& profiles = web_profiles(); local
957 std::vector<AutofillProfile*> profiles = r->GetValue(); local
1009 std::vector<AutofillProfile> profiles; local
1069 const std::vector<AutofillProfile*>& profiles = web_profiles(); local
    [all...]
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_table_unittest.cc 1429 ScopedVector<AutofillProfile> profiles; local
1464 table_->RemoveOriginURLsModifiedBetween(Time(), Time(), &profiles); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/
LockSettingsService.java 272 final List<UserInfo> profiles = um.getProfiles(userHandle); local
277 if (userHandle == UserHandle.USER_OWNER && profiles.size() == 1) {
283 for (UserInfo pi : profiles) {
  /hardware/intel/common/omx-components/videocodec/
OMXVideoEncoderAVC.cpp 86 VAProfile profiles[MAX_H264_PROFILE] = {VAProfileH264High, VAProfileH264Main, VAProfileH264Baseline}; local
90 pl.profile = profiles[i];
    [all...]
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/
ProfileOwnerPreProvisioningActivity.java 60 * It makes sure the device is encrypted, the current launcher supports managed profiles, the
98 + "managed profiles feature is not available");
289 // Check whether the current launcher supports managed profiles.
376 List<UserInfo> profiles = userManager.getProfiles(getUserId()); local
377 for (UserInfo userInfo : profiles) {
  /packages/apps/Settings/src/com/android/settings/
MasterClear.java 188 final List<UserInfo> profiles = um.getProfiles(UserHandle.myUserId()); local
189 final int profilesSize = profiles.size();
198 final UserInfo userInfo = profiles.get(profileIndex);
258 // Checking for all other users and their profiles if any.
  /external/chromium_org/chrome/browser/chromeos/display/
display_preferences_unittest.cc 219 std::vector<ui::ColorCalibrationProfile> profiles; local
220 profiles.push_back(ui::COLOR_PROFILE_STANDARD);
221 profiles.push_back(ui::COLOR_PROFILE_DYNAMIC);
222 profiles.push_back(ui::COLOR_PROFILE_MOVIE);
223 profiles.push_back(ui::COLOR_PROFILE_READING);
226 test_api.SetAvailableColorProfiles(id1, profiles);
531 // id1's available color profiles list is empty, means somehow the color
537 std::vector<ui::ColorCalibrationProfile> profiles; local
538 profiles.push_back(ui::COLOR_PROFILE_STANDARD);
539 profiles.push_back(ui::COLOR_PROFILE_DYNAMIC)
    [all...]
  /external/chromium_org/chrome/browser/profiles/
profile_shortcut_manager_win.cc 5 #include "chrome/browser/profiles/profile_shortcut_manager_win.h"
26 #include "chrome/browser/profiles/profile_avatar_icon_util.h"
27 #include "chrome/browser/profiles/profile_info_cache_observer.h"
28 #include "chrome/browser/profiles/profile_manager.h"
114 profiles::GetAvatarIconAsSquare(avatar_bitmap, scale_factor);
201 profiles::internal::GetProfileIconPath(profile_path);
421 profiles::internal::GetShortcutFilenameForProfile(
425 profiles::internal::GetShortcutFilenameForProfile(params.profile_name,
436 profiles::internal::CreateProfileShortcutFlags(params.profile_path);
463 profiles::internal::GetShortcutFilenameForProfile(params.profile_name
612 namespace profiles { namespace
    [all...]

Completed in 2294 milliseconds

1 23 4 5 6 7