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

  /packages/apps/Contacts/src/com/android/contacts/model/
DataKind.java 53 public StringInflater actionBody;
122 sb.append(" actionBody=").append(actionBody);
GoogleAccountType.java 121 kind.actionBody = new SimpleInflater(Relation.NAME);
156 kind.actionBody = new SimpleInflater(Event.START_DATE);
BaseAccountType.java 151 kind.actionBody = new SimpleInflater(Nickname.NAME);
181 kind.actionBody = new SimpleInflater(Nickname.NAME);
222 kind.actionBody = new SimpleInflater(Nickname.NAME);
243 kind.actionBody = new SimpleInflater(Nickname.NAME);
261 kind.actionBody = new SimpleInflater(Phone.NUMBER);
297 kind.actionBody = new SimpleInflater(Email.DATA);
317 kind.actionBody = new SimpleInflater(StructuredPostal.FORMATTED_ADDRESS);
340 kind.actionBody = new SimpleInflater(Im.DATA);
372 kind.actionBody = new SimpleInflater(Organization.TITLE);
397 kind.actionBody = new SimpleInflater(Note.NOTE)
    [all...]
ExchangeAccountType.java 78 kind.actionBody = new SimpleInflater(Nickname.NAME);
140 kind.actionBody = new SimpleInflater(Nickname.NAME);
306 kind.actionBody = new SimpleInflater(Event.START_DATE);
ExternalAccountType.java 390 kind.actionBody = new SimpleInflater(detailColumn);
  /packages/apps/Contacts/tests/src/com/android/contacts/model/
ExternalAccountTypeTest.java 185 assertEquals("data2", ((BaseAccountType.SimpleInflater) kind.actionBody)
193 assertEquals("data4", ((BaseAccountType.SimpleInflater) kind.actionBody)
201 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/Contacts/src/com/android/contacts/quickcontact/
DataAction.java 102 if (mKind.actionBody != null) {
103 mBody = mKind.actionBody.inflateUsing(context, entryValues);
  /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/Contacts/src/com/android/contacts/detail/
ContactDetailFragment.java 728 if (kind.actionBody != null) {
729 CharSequence body = kind.actionBody.inflateUsing(mContext, entryValues);
    [all...]

Completed in 357 milliseconds