Home | History | Annotate | Download | only in model

Lines Matching refs:Insert

52 import android.provider.ContactsContract.Intents.Insert;
86 // Insert possible when have valid types and under overall maximum
296 * Find the best {@link EditType} for a potential insert. The "best" is the
340 * Insert a new child of kind {@link DataKind} into the given
355 * Insert a new child of kind {@link DataKind} into the given
466 // An empty Insert must be ignored, because it won't save anything (an example
535 parseExtras(state, kind, extras, Insert.PHONE_TYPE, Insert.PHONE, Phone.NUMBER);
536 parseExtras(state, kind, extras, Insert.SECONDARY_PHONE_TYPE, Insert.SECONDARY_PHONE,
538 parseExtras(state, kind, extras, Insert.TERTIARY_PHONE_TYPE, Insert.TERTIARY_PHONE,
545 parseExtras(state, kind, extras, Insert.EMAIL_TYPE, Insert.EMAIL, Email.DATA);
546 parseExtras(state, kind, extras, Insert.SECONDARY_EMAIL_TYPE, Insert.SECONDARY_EMAIL,
548 parseExtras(state, kind, extras, Insert.TERTIARY_EMAIL_TYPE, Insert.TERTIARY_EMAIL,
556 parseExtras(state, kind, extras, Insert.IM_PROTOCOL, Insert.IM_HANDLE, Im.DATA);
560 final boolean hasOrg = extras.containsKey(Insert.COMPANY)
561 || extras.containsKey(Insert.JOB_TITLE);
566 final String company = extras.getString(Insert.COMPANY);
571 final String title = extras.getString(Insert.JOB_TITLE);
578 final boolean hasNotes = extras.containsKey(Insert.NOTES);
583 final String notes = extras.getString(Insert.NOTES);
590 ArrayList<ContentValues> values = extras.getParcelableArrayList(Insert.DATA);
602 final String name = extras.getString(Insert.NAME);
645 final String phoneticName = extras.getString(Insert.PHONETIC_NAME);
655 final ValuesDelta child = parseExtras(state, kind, extras, Insert.POSTAL_TYPE,
656 Insert.POSTAL, StructuredPostal.FORMATTED_ADDRESS);
853 * Attempt to parse legacy {@link Insert#IM_PROTOCOL} values, replacing them
858 final String encodedString = bundle.getString(Insert.IM_PROTOCOL);
865 bundle.putInt(Insert.IM_PROTOCOL, (Integer)protocol);
867 bundle.putString(Insert.IM_PROTOCOL, (String)protocol);
875 * Parse a specific entry from the given {@link Bundle} and insert into the
876 * given {@link EntityDelta}. Silently skips the insert when missing value
891 // Bail when can't insert type, or value missing
943 * This is only for account switch during account creation (which must be insert operation).