Home
last modified time | relevance | path

Searched refs:systemId (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/group/
DGroupUtil.java84 String systemId = cursor.getString(GroupListLoader.SYSTEM_ID); in getGroupListItem() local
104 isFirstGroupInAccount, memberCount, isReadOnly, systemId); in getGroupListItem()
217 private static boolean isSystemIdFFC(String systemId) { in isSystemIdFFC() argument
218 return !TextUtils.isEmpty(systemId) && FFC_GROUPS.contains(systemId); in isSystemIdFFC()
299 public final int systemId; field in GroupUtil.GroupsProjection
312 systemId = cursor.getColumnIndex(Groups.SYSTEM_ID); in GroupsProjection()
327 systemId = list.indexOf(Groups.SYSTEM_ID); in GroupsProjection()
346 return cursor.getString(systemId); in getSystemId()
355 systemId == -1 || summaryCount == -1) { in isEmptyFFCGroup()
360 && isSystemIdFFC(cursor.getString(systemId)) in isEmptyFFCGroup()
DGroupListItem.java35 String systemId) { in GroupListItem() argument
44 mSystemId = systemId; in GroupListItem()
/packages/services/Telephony/tests/src/com/android/phone/
DServiceStateProviderTest.java177 final int systemId = ss.getCdmaSystemId(); in verifyServiceStateForSubId() local
200 assertEquals(systemId, cursor.getInt(13)); in verifyServiceStateForSubId()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DLegacyApiSupport.java1592 String systemId = uri.getPathSegments().get(2); in query() local
1593 qb.appendWhere(" AND " + buildGroupSystemIdMatchWhereClause(systemId)); in query()
1912 private String buildGroupSystemIdMatchWhereClause(String systemId) { in buildGroupSystemIdMatchWhereClause() argument
1921 + DatabaseUtils.sqlEscapeString(systemId) + "))"; in buildGroupSystemIdMatchWhereClause()