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.java82 String systemId = cursor.getString(GroupListLoader.SYSTEM_ID); in getGroupListItem() local
102 isFirstGroupInAccount, memberCount, isReadOnly, systemId); in getGroupListItem()
215 private static boolean isSystemIdFFC(String systemId) { in isSystemIdFFC() argument
216 return !TextUtils.isEmpty(systemId) && FFC_GROUPS.contains(systemId); in isSystemIdFFC()
297 public final int systemId; field in GroupUtil.GroupsProjection
310 systemId = cursor.getColumnIndex(Groups.SYSTEM_ID); in GroupsProjection()
325 systemId = list.indexOf(Groups.SYSTEM_ID); in GroupsProjection()
344 return cursor.getString(systemId); in getSystemId()
353 systemId == -1 || summaryCount == -1) { in isEmptyFFCGroup()
358 && 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.java374 final int systemId = hasLocation ? ss.getCdmaSystemId() : ServiceState.UNKNOWN_ID; in verifyServiceStateForSubId() local
401 assertEquals(systemId, cursor.getInt(15)); 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()