Home
last modified time | relevance | path

Searched refs:TYPE_INSERT (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/java/android/content/
DContentProviderOperation.java38 public final static int TYPE_INSERT = 1; field in ContentProviderOperation
173 return new Builder(TYPE_INSERT, uri); in newInsert()
231 return mType == TYPE_INSERT; in isInsert()
269 return mType == TYPE_DELETE || mType == TYPE_INSERT || mType == TYPE_UPDATE; in isWriteOperation()
301 if (mType == TYPE_INSERT) { in apply()
536 if (mType != TYPE_INSERT && mType != TYPE_UPDATE && mType != TYPE_ASSERT) { in withValueBackReferences()
552 if (mType != TYPE_INSERT && mType != TYPE_UPDATE && mType != TYPE_ASSERT) { in withValueBackReference()
589 if (mType != TYPE_INSERT && mType != TYPE_UPDATE && mType != TYPE_ASSERT) { in withValues()
610 if (mType != TYPE_INSERT && mType != TYPE_UPDATE && mType != TYPE_ASSERT) { in withValue()
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
DVCardEntryTests.java361 assertEquals(ContentProviderOperation.TYPE_INSERT, operationList.get(0).getType()); in testConstructInsertOperationsInsertName()
362 assertEquals(ContentProviderOperation.TYPE_INSERT, operationList.get(1).getType()); in testConstructInsertOperationsInsertName()
/frameworks/base/core/tests/coretests/src/android/content/
DContentProviderOperationTest.java315 assertEquals(ContentProviderOperation.TYPE_INSERT, operationGetType(op2)); in testParcelingOperation()
/frameworks/base/core/java/android/widget/
DEditor.java5902 private static final int TYPE_INSERT = 0;
5929 mType = TYPE_INSERT;
6010 case TYPE_INSERT:
6023 if (edit.mType != TYPE_INSERT) {
6053 if (edit.mType != TYPE_INSERT || getNewTextEnd() != edit.mNewTextStart) {
6118 case TYPE_INSERT: