HomeSort by relevance Sort by last modified time
    Searched refs:Profiles (Results 1 - 5 of 5) sorted by null

  /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...]
AutofillHandler.java 93 // to the browser preference DB to make it easier to support multiple profiles
104 AutoFillProfileDatabase.Profiles.FULL_NAME));
106 AutoFillProfileDatabase.Profiles.EMAIL_ADDRESS));
108 AutoFillProfileDatabase.Profiles.COMPANY_NAME));
110 AutoFillProfileDatabase.Profiles.ADDRESS_LINE_1));
112 AutoFillProfileDatabase.Profiles.ADDRESS_LINE_2));
114 AutoFillProfileDatabase.Profiles.CITY));
116 AutoFillProfileDatabase.Profiles.STATE));
118 AutoFillProfileDatabase.Profiles.ZIP_CODE));
120 AutoFillProfileDatabase.Profiles.COUNTRY))
    [all...]
  /external/v8/src/
cpu-profiler.cc 291 // The count of profiles doesn't depend on a security token.
292 return Isolate::Current()->cpu_profiler()->profiles_->Profiles(
301 return profiler->profiles_->Profiles(token)->at(index);
profile-generator.h 298 List<CpuProfile*>* Profiles(int security_token_id);
321 // Limits the number of profiles that can be simultaneously collected.
342 // Mapping from profiles' uids to indexes in the second nested list
395 explicit ProfileGenerator(CpuProfilesCollection* profiles);
    [all...]
profile-generator.cc 576 // Create list of unabridged profiles.
755 List<CpuProfile*>* CpuProfilesCollection::Profiles(int security_token_id) {
829 // As starting / stopping profiles is rare relatively to this
871 ProfileGenerator::ProfileGenerator(CpuProfilesCollection* profiles)
872 : profiles_(profiles),
874 profiles->NewCodeEntry(Logger::FUNCTION_TAG, kProgramEntryName)),
876 profiles->NewCodeEntry(Logger::BUILTIN_TAG,
    [all...]

Completed in 3435 milliseconds