OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DataItem
(Results
1 - 25
of
137
) sorted by null
1
2
3
4
5
6
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/
NoteDataItem.java
17
package com.android.contacts.common.model.
dataitem
;
27
public class NoteDataItem extends
DataItem
{
GroupMembershipDataItem.java
17
package com.android.contacts.common.model.
dataitem
;
27
public class GroupMembershipDataItem extends
DataItem
{
IdentityDataItem.java
17
package com.android.contacts.common.model.
dataitem
;
27
public class IdentityDataItem extends
DataItem
{
NicknameDataItem.java
17
package com.android.contacts.common.model.
dataitem
;
27
public class NicknameDataItem extends
DataItem
{
PhotoDataItem.java
17
package com.android.contacts.common.model.
dataitem
;
27
public class PhotoDataItem extends
DataItem
{
SipAddressDataItem.java
17
package com.android.contacts.common.model.
dataitem
;
27
public class SipAddressDataItem extends
DataItem
{
WebsiteDataItem.java
17
package com.android.contacts.common.model.
dataitem
;
27
public class WebsiteDataItem extends
DataItem
{
EmailDataItem.java
17
package com.android.contacts.common.model.
dataitem
;
27
public class EmailDataItem extends
DataItem
{
EventDataItem.java
17
package com.android.contacts.common.model.
dataitem
;
29
public class EventDataItem extends
DataItem
{
44
public boolean shouldCollapseWith(
DataItem
t, Context context) {
RelationDataItem.java
17
package com.android.contacts.common.model.
dataitem
;
29
public class RelationDataItem extends
DataItem
{
44
public boolean shouldCollapseWith(
DataItem
t, Context context) {
DataItem.java
17
package com.android.contacts.common.model.
dataitem
;
46
public class
DataItem
implements Collapser.Collapsible<
DataItem
> {
51
protected
DataItem
(ContentValues values) {
56
* Factory for creating subclasses of
DataItem
objects based on the mimetype in the
59
public static
DataItem
createFrom(ContentValues values) {
94
return new
DataItem
(values);
149
* Indicates the carrier presence value for the current {@link
DataItem
}.
151
* @return {@link Data#CARRIER_PRESENCE_VT_CAPABLE} if the {@link
DataItem
} supports carrier
199
public void collapseWith(
DataItem
that)
[
all
...]
OrganizationDataItem.java
17
package com.android.contacts.common.model.
dataitem
;
27
public class OrganizationDataItem extends
DataItem
{
StructuredPostalDataItem.java
17
package com.android.contacts.common.model.
dataitem
;
27
public class StructuredPostalDataItem extends
DataItem
{
ImDataItem.java
17
package com.android.contacts.common.model.
dataitem
;
30
public class ImDataItem extends
DataItem
{
87
public boolean shouldCollapseWith(
DataItem
t, Context context) {
PhoneDataItem.java
17
package com.android.contacts.common.model.
dataitem
;
25
import com.android.contacts.common.model.
dataitem
.DataKind;
31
public class PhoneDataItem extends
DataItem
{
StructuredNameDataItem.java
17
package com.android.contacts.common.model.
dataitem
;
28
public class StructuredNameDataItem extends
DataItem
{
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/
ContactsUtilsTests.java
29
import com.android.contacts.common.model.
dataitem
.
DataItem
;
30
import com.android.contacts.common.model.
dataitem
.EmailDataItem;
31
import com.android.contacts.common.model.
dataitem
.ImDataItem;
88
final ImDataItem im = (ImDataItem)
DataItem
.createFrom(values);
110
final ImDataItem im = (ImDataItem)
DataItem
.createFrom(values);
129
final ImDataItem im = (ImDataItem)
DataItem
.createFrom(values);
151
final ImDataItem im = (ImDataItem)
DataItem
.createFrom(values);
176
(EmailDataItem)
DataItem
.createFrom(values));
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/dataitem/
DataItemTests.java
16
package com.android.contacts.common.model.
dataitem
;
39
import com.android.contacts.common.model.
dataitem
.
DataItem
;
40
import com.android.contacts.common.model.
dataitem
.DataKind;
47
* Test case for {@link
DataItem
}.
72
private List<
DataItem
> createDataItemsAndCollapse(DataKind kind, ContentValues... values) {
73
final List<
DataItem
> dataList = new ArrayList<>(values.length);
75
final
DataItem
data =
DataItem
.createFrom(value);
103
final List<
DataItem
> dataList = createDataItemsAndCollapse(kind, mValues1, mValues2)
[
all
...]
/developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
DigitalWatchFaceUtil.java
26
import com.google.android.gms.wearable.
DataItem
;
61
* The path for the {@link
DataItem
} containing {@link DigitalWatchFaceService} configuration.
116
* If the current config {@link
DataItem
} doesn't exist, it isn't created and the callback
139
* Overwrites (or sets, if not present) the keys in the current config {@link
DataItem
} with
140
* the ones appearing in the given {@link DataMap}. If the config
DataItem
doesn't exist,
143
* It is allowed that only some of the keys used in the config
DataItem
appear in
163
* Overwrites the current config {@link
DataItem
}'s {@link DataMap} with {@code newConfig}.
164
* If the config
DataItem
doesn't exist, it's created.
194
DataItem
configDataItem = dataItemResult.getDataItem();
/developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
DigitalWatchFaceUtil.java
26
import com.google.android.gms.wearable.
DataItem
;
61
* The path for the {@link
DataItem
} containing {@link DigitalWatchFaceService} configuration.
116
* If the current config {@link
DataItem
} doesn't exist, it isn't created and the callback
139
* Overwrites (or sets, if not present) the keys in the current config {@link
DataItem
} with
140
* the ones appearing in the given {@link DataMap}. If the config
DataItem
doesn't exist,
143
* It is allowed that only some of the keys used in the config
DataItem
appear in
163
* Overwrites the current config {@link
DataItem
}'s {@link DataMap} with {@code newConfig}.
164
* If the config
DataItem
doesn't exist, it's created.
194
DataItem
configDataItem = dataItemResult.getDataItem();
/development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/
DigitalWatchFaceUtil.java
26
import com.google.android.gms.wearable.
DataItem
;
61
* The path for the {@link
DataItem
} containing {@link DigitalWatchFaceService} configuration.
116
* If the current config {@link
DataItem
} doesn't exist, it isn't created and the callback
139
* Overwrites (or sets, if not present) the keys in the current config {@link
DataItem
} with
140
* the ones appearing in the given {@link DataMap}. If the config
DataItem
doesn't exist,
143
* It is allowed that only some of the keys used in the config
DataItem
appear in
163
* Overwrites the current config {@link
DataItem
}'s {@link DataMap} with {@code newConfig}.
164
* If the config
DataItem
doesn't exist, it's created.
194
DataItem
configDataItem = dataItemResult.getDataItem();
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
InvisibleContactUtil.java
16
import com.android.contacts.common.model.
dataitem
.
DataItem
;
17
import com.android.contacts.common.model.
dataitem
.DataKind;
18
import com.android.contacts.common.model.
dataitem
.GroupMembershipDataItem;
59
for (
DataItem
dataItem
: Iterables.filter(
61
GroupMembershipDataItem groupMembership = (GroupMembershipDataItem)
dataItem
;
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
RawContact.java
32
import com.android.contacts.common.model.
dataitem
.
DataItem
;
42
* items, and also contains a collection of
DataItem
objects. A RawContact contains the information
47
*
DataItem
objects that represent contact information elements (like phone
59
// This use to be a
DataItem
.
DataItem
creation is now delayed until the point of request
62
//
DataItem
it is. And having parent
DataItem
's here makes it very difficult to serialize or
65
// Instead of having a common
DataItem
super class, we should refactor this to be a generic
69
// worse than having a
DataItem
[
all
...]
/developers/build/prebuilts/gradle/AgendaData/Wearable/src/main/java/com/example/android/wearable/agendadata/
HomeListenerService.java
44
import com.google.android.gms.wearable.
DataItem
;
55
* Listens to
DataItem
events on the home device.
91
private void deleteDataItem(
DataItem
dataItem
) {
93
Log.v(TAG, "onDataItemDeleted:
DataItem
=" +
dataItem
.getUri());
95
Integer notificationId = sNotificationIdByDataItemUri.remove(
dataItem
.getUri());
104
private void updateNotificationForDataItem(
DataItem
dataItem
) {
105
DataMapItem mapDataItem = DataMapItem.fromDataItem(
dataItem
);
[
all
...]
/developers/samples/android/wearable/wear/AgendaData/Wearable/src/main/java/com/example/android/wearable/agendadata/
HomeListenerService.java
44
import com.google.android.gms.wearable.
DataItem
;
55
* Listens to
DataItem
events on the home device.
91
private void deleteDataItem(
DataItem
dataItem
) {
93
Log.v(TAG, "onDataItemDeleted:
DataItem
=" +
dataItem
.getUri());
95
Integer notificationId = sNotificationIdByDataItemUri.remove(
dataItem
.getUri());
104
private void updateNotificationForDataItem(
DataItem
dataItem
) {
105
DataMapItem mapDataItem = DataMapItem.fromDataItem(
dataItem
);
[
all
...]
Completed in 4940 milliseconds
1
2
3
4
5
6