OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AccountKey
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Contacts/src/com/android/contacts/model/
ContactLoader.java
750
static private class
AccountKey
{
755
public
AccountKey
(String accountName, String accountType, String dataSet) {
768
if (!(obj instanceof
AccountKey
)) {
771
final
AccountKey
other = (
AccountKey
) obj;
[
all
...]
/packages/apps/Dialer/java/com/android/contacts/common/model/
ContactLoader.java
597
final HashSet<
AccountKey
> accountsSeen = new HashSet<>();
602
final
AccountKey
accountKey
= new
AccountKey
(accountName, accountType, dataSet);
603
if (accountName != null && accountType != null && !accountsSeen.contains(
accountKey
)) {
604
accountsSeen.add(
accountKey
);
[
all
...]
Completed in 444 milliseconds