/external/chromium_org/third_party/sqlite/src/tool/ |
D | mkkeywordhash.c | 86 # define CONFLICT 0 macro 88 # define CONFLICT 0x00000080 macro 146 { "ABORT", "TK_ABORT", CONFLICT|TRIGGER }, 169 { "CONFLICT", "TK_CONFLICT", CONFLICT }, 193 { "FAIL", "TK_FAIL", CONFLICT|TRIGGER }, 202 { "IGNORE", "TK_IGNORE", CONFLICT|TRIGGER }, 242 { "REPLACE", "TK_REPLACE", CONFLICT },
|
/external/chromium_org/third_party/sqlite/src/test/ |
D | tkt-4a03edc4c8.test | 23 a INTEGER PRIMARY KEY ON CONFLICT REPLACE, 24 b UNIQUE ON CONFLICT FAIL
|
D | conflict.test | 193 if {$conf1!=""} {set conf1 "ON CONFLICT $conf1"} 247 if {$conf1!=""} {set conf1 "ON CONFLICT $conf1"} 318 if {$conf1!=""} {set conf1 "ON CONFLICT $conf1"} 461 a INTEGER UNIQUE ON CONFLICT IGNORE, 462 b INTEGER UNIQUE ON CONFLICT FAIL, 463 c INTEGER UNIQUE ON CONFLICT REPLACE, 464 d INTEGER UNIQUE ON CONFLICT ABORT, 465 e INTEGER UNIQUE ON CONFLICT ROLLBACK
|
D | e_createtable.test | 142 1.3 "CREATE TABLE t1(c1, c2, PRIMARY KEY(c1, c2) ON CONFLICT IGNORE)" {} 146 2.3 "CREATE TABLE t1(c1, c2, UNIQUE(c1, c2) ON CONFLICT IGNORE)" {} 1501 CREATE TABLE t1_ab(a PRIMARY KEY ON CONFLICT ABORT, b); 1502 CREATE TABLE t1_ro(a PRIMARY KEY ON CONFLICT ROLLBACK, b); 1503 CREATE TABLE t1_ig(a PRIMARY KEY ON CONFLICT IGNORE, b); 1504 CREATE TABLE t1_fa(a PRIMARY KEY ON CONFLICT FAIL, b); 1505 CREATE TABLE t1_re(a PRIMARY KEY ON CONFLICT REPLACE, b); 1516 CREATE TABLE t2_ab(a, b NOT NULL ON CONFLICT ABORT); 1517 CREATE TABLE t2_ro(a, b NOT NULL ON CONFLICT ROLLBACK); 1518 CREATE TABLE t2_ig(a, b NOT NULL ON CONFLICT IGNORE); [all …]
|
D | memdb.test | 178 if {$conf!=""} {set conf "ON CONFLICT $conf"} 245 if {$conf1!=""} {set conf1 "ON CONFLICT $conf1"} 246 if {$conf2!=""} {set conf2 "ON CONFLICT $conf2"}
|
D | index.test | 654 # implemented by a single indice, the correct ON CONFLICT policy applies. 659 CREATE TABLE t8(a UNIQUE PRIMARY KEY ON CONFLICT ROLLBACK); 691 a PRIMARY KEY ON CONFLICT FAIL, 692 UNIQUE(a) ON CONFLICT IGNORE 695 } {1 {conflicting ON CONFLICT clauses specified}}
|
D | notnull.test | 30 c NOT NULL ON CONFLICT REPLACE DEFAULT 6, 31 d NOT NULL ON CONFLICT IGNORE DEFAULT 7, 32 e NOT NULL ON CONFLICT ABORT DEFAULT 8
|
D | rollback.test | 13 # caused by an ON CONFLICT ROLLBACK clause aborts any other pending
|
D | trigger2.test | 43 # 6. ON CONFLICT clause handling 482 # Handling of ON CONFLICT by INSERT statements inside triggers 535 # Handling of ON CONFLICT by UPDATE statements inside triggers
|
/external/chromium/chrome/browser/sync/engine/ |
D | update_applicator.cc | 74 case CONFLICT: in AttemptOneApplication() 125 update_progress->AddAppliedUpdate(CONFLICT, *i); in SaveProgressIntoSessionState()
|
D | syncer_util.cc | 258 return CONFLICT; in AttemptToUpdateEntry() 270 return CONFLICT; in AttemptToUpdateEntry() 276 return CONFLICT; in AttemptToUpdateEntry() 286 return CONFLICT; in AttemptToUpdateEntry() 321 return CONFLICT; in AttemptToUpdateEntry() 339 return CONFLICT; in AttemptToUpdateEntry() 345 return CONFLICT; in AttemptToUpdateEntry()
|
D | syncer_types.h | 35 CONFLICT, enumerator
|
D | process_commit_response_command.cc | 151 case CommitResponse::CONFLICT: in ProcessCommitResponse() 240 if (CommitResponse::CONFLICT == response) { in ProcessSingleCommitResponse()
|
D | all_status.cc | 88 status_.summary = sync_api::SyncManager::Status::CONFLICT; in CalcStatusChanges()
|
D | syncapi.h | 674 CONFLICT, enumerator
|
/external/chromium_org/net/http/ |
D | http_status_code_list.h | 50 HTTP_STATUS(CONFLICT, 409, "Conflict")
|
/external/clang/test/Modules/ |
D | ignored_macros.m | 12 // RUN: FileCheck -check-prefix=CHECK-CONFLICT %s < %t.err 13 // CHECK-CONFLICT: module 'ignored_macros' found in both
|
/external/chromium_org/sync/engine/ |
D | sync_directory_commit_contribution.cc | 83 case sync_pb::CommitResponse::CONFLICT: in ProcessCommitResponse()
|
D | commit_util.cc | 395 if (sync_pb::CommitResponse::CONFLICT == response) { in ProcessSingleCommitResponse()
|
/external/chromium/chrome/browser/sync/sessions/ |
D | status_controller_unittest.cc | 160 status.mutable_update_progress()->AddAppliedUpdate(CONFLICT, in TEST_F()
|
D | session_state.cc | 338 if (it->first == CONFLICT) { in HasConflictingUpdates()
|
/external/chromium_org/sync/protocol/ |
D | proto_enum_conversions.cc | 127 ENUM_CASE(sync_pb::CommitResponse, CONFLICT); in GetResponseTypeString()
|
/external/chromium/net/tools/testserver/ |
D | chromiumsync.py | 792 reply.response_type = sync_pb2.CommitResponse.CONFLICT
|
/external/chromium_org/sync/test/engine/ |
D | mock_connection_manager.cc | 595 er->set_response_type(CommitResponse::CONFLICT); in ProcessCommit()
|
/external/chromium/chrome/browser/sync/protocol/ |
D | sync.proto | 94 // a result code of CONFLICT. In a GetUpdatesResponse, |version| is 418 CONFLICT = 2; // You're out of date; update and check your data enumerator
|