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

  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/
DataItem.java 153 if (kind.actionBody == null) {
156 CharSequence actionBody = kind.actionBody.inflateUsing(context, mContentValues);
157 return actionBody == null ? null : actionBody.toString();
DataKind.java 53 public StringInflater actionBody;
117 sb.append(" actionBody=").append(actionBody);
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/account/
ExternalAccountTypeTest.java 189 assertEquals("data2", ((BaseAccountType.SimpleInflater) kind.actionBody)
196 assertEquals("data4", ((BaseAccountType.SimpleInflater) kind.actionBody)
203 assertEquals("data6", ((BaseAccountType.SimpleInflater) kind.actionBody)
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
FallbackSource.java 163 kind.actionBody = new SimpleInflater(Nickname.NAME);
186 kind.actionBody = new SimpleInflater(Phone.NUMBER);
229 kind.actionBody = new SimpleInflater(Email.DATA);
255 kind.actionBody = new SimpleInflater(StructuredPostal.FORMATTED_ADDRESS);
314 kind.actionBody = new SimpleInflater(Im.DATA);
350 kind.actionBody = new SimpleInflater(Organization.TITLE);
393 kind.actionBody = new SimpleInflater(Note.NOTE);
411 kind.actionBody = new SimpleInflater(Website.URL);
432 kind.actionBody = new SimpleInflater(Event.START_DATE);
ExternalSource.java 48 <ActionBody socialSummary="true" /> <!-- can pull together various columns -->
175 kind.actionBody = new FallbackSource.SimpleInflater(detailColumn);
ContactsSource.java 207 public StringInflater actionBody;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
GoogleAccountType.java 127 kind.actionBody = new SimpleInflater(Relation.NAME);
162 kind.actionBody = new SimpleInflater(Event.START_DATE);
BaseAccountType.java 153 kind.actionBody = new SimpleInflater(Nickname.NAME);
183 kind.actionBody = new SimpleInflater(Nickname.NAME);
224 kind.actionBody = new SimpleInflater(Nickname.NAME);
245 kind.actionBody = new SimpleInflater(Nickname.NAME);
263 kind.actionBody = new SimpleInflater(Phone.NUMBER);
299 kind.actionBody = new SimpleInflater(Email.DATA);
319 kind.actionBody = new SimpleInflater(StructuredPostal.FORMATTED_ADDRESS);
342 kind.actionBody = new SimpleInflater(Im.DATA);
373 kind.actionBody = ORGANIZATION_BODY_INFLATER;
398 kind.actionBody = new SimpleInflater(Note.NOTE)
    [all...]
ExchangeAccountType.java 85 kind.actionBody = new SimpleInflater(Nickname.NAME);
147 kind.actionBody = new SimpleInflater(Nickname.NAME);
312 kind.actionBody = new SimpleInflater(Event.START_DATE);
ExternalAccountType.java 379 kind.actionBody = new SimpleInflater(detailColumn);
  /packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
ContactFragment.java 518 if (kind.actionBody == null) {
521 CharSequence actionBody = kind.actionBody.inflateUsing(context, values);
522 return actionBody == null ? null : actionBody.toString();
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/dataitem/
DataItemTests.java 94 kind.actionBody = new BaseAccountType.SimpleInflater(0);

Completed in 122 milliseconds