Searched refs:TYPE_UPDATE (Results 1 – 2 of 2) sorted by relevance
34 public final static int TYPE_UPDATE = 2; field in ContentProviderOperation151 return new Builder(TYPE_UPDATE, uri); in newUpdate()186 return mType == TYPE_DELETE || mType == TYPE_INSERT || mType == TYPE_UPDATE; in isWriteOperation()224 } else if (mType == TYPE_UPDATE) { in apply()423 if (mType == TYPE_UPDATE) { in build()449 if (mType != TYPE_INSERT && mType != TYPE_UPDATE && mType != TYPE_ASSERT) { in withValueBackReferences()465 if (mType != TYPE_INSERT && mType != TYPE_UPDATE && mType != TYPE_ASSERT) { in withValueBackReference()483 if (mType != TYPE_UPDATE && mType != TYPE_DELETE && mType != TYPE_ASSERT) { in withSelectionBackReference()502 if (mType != TYPE_INSERT && mType != TYPE_UPDATE && mType != TYPE_ASSERT) { in withValues()523 if (mType != TYPE_INSERT && mType != TYPE_UPDATE && mType != TYPE_ASSERT) { in withValue()[all …]
341 assertEquals(ContentProviderOperation.TYPE_UPDATE, operationGetType(op2)); in testParcelingOperation()