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

1 2 3

  /packages/apps/Contacts/src/com/android/contacts/
GroupListLoader.java 21 import android.provider.ContactsContract.Groups;
25 * and number of groups per account. This list is sorted by account type, account name, where the
27 * groups.
32 Groups.ACCOUNT_NAME,
33 Groups.ACCOUNT_TYPE,
34 Groups.DATA_SET,
35 Groups._ID,
36 Groups.TITLE,
37 Groups.SUMMARY_COUNT,
47 private static final Uri GROUP_LIST_URI = Groups.CONTENT_SUMMARY_URI
    [all...]
GroupMetaDataLoader.java 21 import android.provider.ContactsContract.Groups;
24 * Group meta-data loader. Loads all groups or just a single group from the
30 Groups.ACCOUNT_NAME,
31 Groups.ACCOUNT_TYPE,
32 Groups.DATA_SET,
33 Groups._ID,
34 Groups.TITLE,
35 Groups.AUTO_ADD,
36 Groups.FAVORITES,
37 Groups.GROUP_IS_READ_ONLY
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
GroupsListLoader.java 21 import android.provider.ContactsContract.Groups;
24 * Loads the list of all contact groups.
28 Groups._ID, // 0
29 Groups.TITLE, // 1
36 super(context, Groups.CONTENT_URI, COLUMNS, null, null, Groups.TITLE);
GoogleSource.java 34 import android.provider.ContactsContract.Groups;
184 Cursor cursor = resolver.query(Groups.CONTENT_URI,
185 new String[] {Groups.TITLE, Groups.SOURCE_ID, Groups.SHOULD_SYNC},
186 Groups.ACCOUNT_NAME + " =? AND " + Groups.ACCOUNT_TYPE + " =?",
215 newGroup.put(Groups.TITLE, GOOGLE_MY_CONTACTS_GROUP);
217 newGroup.put(Groups.ACCOUNT_NAME, accountName);
218 newGroup.put(Groups.ACCOUNT_TYPE, accountType)
    [all...]
  /external/chromium_org/chrome/browser/ui/app_list/search/
mixer.h 19 // result. These slots could be viewed as having three groups: main group
25 // The enum represents mixer groups. Note this must matches the order
36 // Creates mixer groups.
47 typedef ScopedVector<Group> Groups;
52 Groups groups_;
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_GroupMembershipTest.java 24 import android.provider.ContactsContract.Groups;
68 .with(Groups.SOURCE_ID, "test_source_id")
69 .with(Groups.ACCOUNT_TYPE, "test_type")
70 .with(Groups.ACCOUNT_NAME, "test_name")
91 .with(Groups.ACCOUNT_TYPE, "test_type")
92 .with(Groups.ACCOUNT_NAME, "test_name")
93 .with(Groups.SOURCE_ID, "test_source_id")
94 .with(Groups.DELETED, 0)
Contacts_PeopleTest.java 31 import android.provider.Contacts.Groups;
60 Groups._ID,
61 Groups.NAME
76 // insert some lines in people table and groups table to be used in test case.
86 value.put(Groups.NAME, "test_group_0");
87 mGroupRowsAdded.add(mProvider.insert(Groups.CONTENT_URI, value));
88 value.put(Groups.NAME, "test_group_1");
89 mGroupRowsAdded.add(mProvider.insert(Groups.CONTENT_URI, value));
118 testValues.put(GroupsColumns.SYSTEM_ID, Groups.GROUP_MY_CONTACTS);
119 mProvider.insert(Groups.CONTENT_URI, testValues)
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
GroupsTest.java 31 import android.provider.ContactsContract.Groups;
42 * Unit tests for {@link Groups} and {@link GroupMembership}.
75 // Create a handful of groups
99 // Add contacts to various mixture of groups. Grey will have all
113 // Walk across groups summary cursor and verify returned counts.
114 final Cursor cursor = mActor.resolver.query(Groups.CONTENT_SUMMARY_URI,
118 assertTrue("Didn't return summary for all groups", (cursor.getCount() == 4));
149 Uri uri = ContentUris.withAppendedId(Groups.CONTENT_URI,
157 Uri uri = ContentUris.withAppendedId(Groups.CONTENT_URI,
163 values.put(Groups.NOTES, "New notes")
    [all...]
  /external/chromium_org/ui/base/models/
table_model.h 33 typedef std::vector<Group> Groups;
55 // Returns true if the TableView has groups. Groups provide a way to visually
56 // delineate the rows in a table view. When groups are enabled table view
63 // Returns the groups.
65 virtual Groups GetGroups();
table_model.cc 57 TableModel::Groups TableModel::GetGroups() {
  /external/chromium/chrome/browser/
plugin_exceptions_table_model.h 41 virtual Groups GetGroups() OVERRIDE;
73 TableModel::Groups groups_;
  /external/chromium_org/remoting/host/win/
security_descriptor.cc 49 TypedBuffer<TOKEN_GROUPS> groups(length);
50 if (!GetTokenInformation(token, TokenGroups, groups.get(), length, &length))
53 for (uint32 i = 0; i < groups->GroupCount; ++i) {
54 if ((groups->Groups[i].Attributes & SE_GROUP_LOGON_ID) ==
56 length = GetLengthSid(groups->Groups[i].Sid);
58 if (!CopySid(length, logon_sid.get(), groups->Groups[i].Sid))
  /packages/apps/Exchange/src/com/android/exchange/service/
ContactsSyncAdapterService.java 28 import android.provider.ContactsContract.Groups;
106 // See if we've got dirty contacts or dirty groups containing our contacts
109 uri = Groups.CONTENT_URI.buildUpon()
114 changed = hasDirtyRows(cr, uri, Groups.DIRTY);
EasContactsSyncHandler.java 28 import android.provider.ContactsContract.Groups;
65 new String[] {Groups.TITLE};
66 private static final String[] GROUPS_ID_PROJECTION = new String[] {Groups._ID};
174 // Store the parser because we'll want to ask it about whether groups are used later.
282 * Mark contacts in dirty groups as dirty.
287 uriWithAccountAndIsSyncAdapter(Groups.CONTENT_URI, emailAddress),
288 GROUPS_ID_PROJECTION, Groups.DIRTY + "=1", null, null);
306 // Really delete groups that are marked deleted
308 Groups.CONTENT_URI, emailAddress),
309 Groups.DELETED + "=1", null)
    [all...]
  /external/chromium_org/sandbox/win/src/
restricted_token.cc 219 if ((token_groups->Groups[i].Attributes & SE_GROUP_INTEGRITY) == 0 &&
220 (token_groups->Groups[i].Attributes & SE_GROUP_LOGON_ID) == 0) {
225 token_groups->Groups[i].Sid)) {
233 reinterpret_cast<SID*>(token_groups->Groups[i].Sid));
385 if ((token_groups->Groups[i].Attributes & SE_GROUP_LOGON_ID) != 0) {
386 logon_sid = static_cast<SID*>(token_groups->Groups[i].Sid);
456 // Build the list of restricting sids from all groups.
458 if ((token_groups->Groups[i].Attributes & SE_GROUP_INTEGRITY) == 0)
459 AddRestrictingSid(reinterpret_cast<SID*>(token_groups->Groups[i].Sid));
  /external/chromium/chrome/browser/ui/search_engines/
template_url_table_model.h 50 virtual Groups GetGroups() OVERRIDE;
  /external/chromium_org/chrome/browser/ui/search_engines/
template_url_table_model.h 54 virtual Groups GetGroups() OVERRIDE;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
LegacyApiSupport.java 48 import android.provider.ContactsContract.Groups;
95 private static final int GROUPS = 18;
212 public static final String GROUPS = "view_v1_groups";
292 matcher.addURI(authority, "groups", GROUPS);
293 matcher.addURI(authority, "groups/#", GROUPS_ID);
294 matcher.addURI(authority, "groups/name/*/members", GROUP_NAME_MEMBERS);
295 // matcher.addURI(authority, "groups/name/*/members/filter/*",
297 matcher.addURI(authority, "groups/system_id/*/members", GROUP_SYSTEM_ID_MEMBERS);
298 // matcher.addURI(authority, "groups/system_id/*/members/filter/*"
    [all...]
ContactsDatabaseHelper.java 63 import android.provider.ContactsContract.Groups;
137 public static final String GROUPS = "groups";
159 GROUPS,
202 + "LEFT OUTER JOIN groups ON (groups._id = data." + GroupMembership.GROUP_ROW_ID
250 + "LEFT OUTER JOIN groups "
252 + " AND groups._id = data." + GroupMembership.GROUP_ROW_ID + ") ";
277 * Join string intended to be used with the GROUPS table/view. The main table must be named
278 * as "groups"
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
CustomContactListFilterActivity.java 40 import android.provider.ContactsContract.Groups;
73 * Shows a list of all available {@link Groups} available, letting the user
141 final Uri.Builder groupsUri = Groups.CONTENT_URI.buildUpon()
142 .appendQueryParameter(Groups.ACCOUNT_NAME, account.name)
143 .appendQueryParameter(Groups.ACCOUNT_TYPE, account.type);
145 groupsUri.appendQueryParameter(Groups.DATA_SET, account.dataSet).build();
148 ContactsContract.Groups.newEntityIterator(resolver.query(
236 * Entry holding any changes to {@link Groups} or {@link Settings} rows,
237 * such as {@link Groups#SHOULD_SYNC} or {@link Groups#GROUP_VISIBLE}
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
ContactLoader.java 36 import android.provider.ContactsContract.Groups;
283 Groups.ACCOUNT_NAME,
284 Groups.ACCOUNT_TYPE,
285 Groups.DATA_SET,
286 Groups.ACCOUNT_TYPE_AND_DATA_SET,
287 Groups._ID,
288 Groups.TITLE,
289 Groups.AUTO_ADD,
290 Groups.FAVORITES,
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
gtk_tree.cc 112 // row between groups.
128 const ui::TableModel::Groups& groups = table_model_->GetGroups(); local
129 ui::TableModel::Groups::const_iterator group_it = groups.begin();
151 if (group_it == groups.end()) {
156 int offset = OffsetForGroupIndex(group_it - groups.begin());
165 const ui::TableModel::Groups& groups = table_model_->GetGroups(); local
166 for (ui::TableModel::Groups::const_iterator it = groups.begin()
205 const ui::TableModel::Groups& groups = table_model_->GetGroups(); local
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/
gtk_tree.cc 114 // row between groups.
130 const ui::TableModel::Groups& groups = table_model_->GetGroups(); local
131 ui::TableModel::Groups::const_iterator group_it = groups.begin();
153 if (group_it == groups.end()) {
158 int offset = OffsetForGroupIndex(group_it - groups.begin());
167 const ui::TableModel::Groups& groups = table_model_->GetGroups(); local
168 for (ui::TableModel::Groups::const_iterator it = groups.begin()
207 const ui::TableModel::Groups& groups = table_model_->GetGroups(); local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
GroupDetailActivity.java 24 import android.provider.ContactsContract.Groups;
147 final Uri uri = ContentUris.withAppendedId(Groups.CONTENT_URI,
  /external/llvm/utils/TableGen/
OptParserEmitter.cpp 104 // Get the option groups and options.
105 const std::vector<Record*> &Groups =
112 // Generate prefix groups.
153 OS << "// Groups\n\n";
155 for (unsigned i = 0, e = Groups.size(); i != e; ++i) {
156 const Record &R = *Groups[i];
180 // The other option arguments (unused for groups).

Completed in 891 milliseconds

1 2 3