OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EditType
(Results
1 - 12
of
12
) sorted by null
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
AccountType.java
352
public static class
EditType
{
363
public
EditType
(int rawValue, int labelRes) {
369
public
EditType
setSecondary(boolean secondary) {
374
public
EditType
setSpecificMax(int specificMax) {
379
public
EditType
setCustomColumn(String customColumn) {
386
if (object instanceof
EditType
) {
387
final
EditType
other = (
EditType
)object;
409
public static class EventEditType extends
EditType
{
BaseAccountType.java
125
protected static
EditType
buildPhoneType(int type) {
126
return new
EditType
(type, Phone.getTypeLabelResource(type));
129
protected static
EditType
buildEmailType(int type) {
130
return new
EditType
(type, Email.getTypeLabelResource(type));
133
protected static
EditType
buildPostalType(int type) {
134
return new
EditType
(type, StructuredPostal.getTypeLabelResource(type));
137
protected static
EditType
buildImType(int type) {
138
return new
EditType
(type, Im.getProtocolLabelResource(type));
141
protected static
EditType
buildEventType(int type, boolean yearOptional) {
145
protected static
EditType
buildRelationType(int type)
[
all
...]
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
ContactsSource.java
186
* {@link Data} rows of this kind, including the possible {@link
EditType
}
219
public List<
EditType
> typeList;
244
public static class
EditType
{
253
public
EditType
(int rawValue, int labelRes) {
259
public
EditType
setSecondary(boolean secondary) {
264
public
EditType
setSpecificMax(int specificMax) {
269
public
EditType
setCustomColumn(String customColumn) {
276
if (object instanceof
EditType
) {
277
final
EditType
other = (
EditType
)object
[
all
...]
FallbackSource.java
85
protected
EditType
buildPhoneType(int type) {
86
return new
EditType
(type, Phone.getTypeLabelResource(type));
89
protected
EditType
buildEmailType(int type) {
90
return new
EditType
(type, Email.getTypeLabelResource(type));
93
protected
EditType
buildPostalType(int type) {
94
return new
EditType
(type, StructuredPostal.getTypeLabelResource(type));
97
protected
EditType
buildImType(int type) {
98
return new
EditType
(type, Im.getProtocolLabelResource(type));
101
protected
EditType
buildOrgType(int type) {
102
return new
EditType
(type, Organization.getTypeLabelResource(type))
[
all
...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/
DataKind.java
24
import com.android.contacts.common.model.account.AccountType.
EditType
;
34
* {@link Data} rows of this kind, including the possible {@link
EditType
}
62
public List<
EditType
> typeList;