OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:actionBody
(Results
1 - 11
of
11
) sorted by null
/packages/apps/Contacts/src/com/android/contacts/model/dataitem/
DataItem.java
145
if (kind.
actionBody
== null) {
148
CharSequence
actionBody
= kind.
actionBody
.inflateUsing(context, mContentValues);
149
return
actionBody
== null ? null :
actionBody
.toString();
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/
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
121
kind.
actionBody
= new SimpleInflater(Relation.NAME);
156
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
= new SimpleInflater(Organization.TITLE);
398
kind.
actionBody
= new SimpleInflater(Note.NOTE)
[
all
...]
ExchangeAccountType.java
83
kind.
actionBody
= new SimpleInflater(Nickname.NAME);
145
kind.
actionBody
= new SimpleInflater(Nickname.NAME);
310
kind.
actionBody
= new SimpleInflater(Event.START_DATE);
ExternalAccountType.java
383
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();
Completed in 111 milliseconds