/external/google-diff-match-patch/name/fraser/neil/plaintext/ |
D | diff_match_patch_test.java | 42 private diff_match_patch.Operation INSERT = diff_match_patch.Operation.INSERT; field in diff_match_patch_test 132 …LinkedList<Diff> diffs = diffList(new Diff(EQUAL, "\u0001\u0002\u0001"), new Diff(INSERT, "\u0002\… in testDiffCharsToLines() 138 …arsToLines:", diffList(new Diff(EQUAL, "alpha\nbeta\nalpha\n"), new Diff(INSERT, "beta\nalpha\nbet… in testDiffCharsToLines() 166 diffs = diffList(new Diff(EQUAL, "a"), new Diff(DELETE, "b"), new Diff(INSERT, "c")); in testDiffCleanupMerge() 168 …hange case.", diffList(new Diff(EQUAL, "a"), new Diff(DELETE, "b"), new Diff(INSERT, "c")), diffs); in testDiffCleanupMerge() 178 diffs = diffList(new Diff(INSERT, "a"), new Diff(INSERT, "b"), new Diff(INSERT, "c")); in testDiffCleanupMerge() 180 assertEquals("diff_cleanupMerge: Merge insertions.", diffList(new Diff(INSERT, "abc")), diffs); in testDiffCleanupMerge() 182 …diffs = diffList(new Diff(DELETE, "a"), new Diff(INSERT, "b"), new Diff(DELETE, "c"), new Diff(INS… in testDiffCleanupMerge() 184 …anupMerge: Merge interweave.", diffList(new Diff(DELETE, "ac"), new Diff(INSERT, "bd"), new Diff(E… in testDiffCleanupMerge() 186 diffs = diffList(new Diff(DELETE, "a"), new Diff(INSERT, "abc"), new Diff(DELETE, "dc")); in testDiffCleanupMerge() [all …]
|
D | diff_match_patch.java | 124 DELETE, INSERT, EQUAL enumConstant 210 diffs.add(new Diff(Operation.INSERT, text2)); in diff_compute() 226 Operation.DELETE : Operation.INSERT; in diff_compute() 271 diffs.add(new Diff(Operation.INSERT, text2)); in diff_compute() 291 case INSERT: in diff_compute() 563 if (last_op == Operation.INSERT) { in diff_path1() 566 path.addFirst(new Diff(Operation.INSERT, in diff_path1() 569 last_op = Operation.INSERT; in diff_path1() 616 if (last_op == Operation.INSERT) { in diff_path2() 619 path.addLast(new Diff(Operation.INSERT, in diff_path2() [all …]
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/ |
D | README | 18 app.yaml and replace the text INSERT APPLICATION NAME HERE with the application 25 'oauth_token': 'INSERT OAUTH TOKEN HERE', 26 'oauth_token_secret': 'INSERT OAUTH TOKEN SECRET HERE', 27 'app_id': 'INSERT APPLICATION ID HERE',
|
/external/elfutils/lib/ |
D | dynamicsizehash.c | 197 #define INSERT(name) _INSERT (name) macro 200 INSERT(NAME) (htab, hval, data) 224 #define INSERT(name) _INSERT (name) macro 227 INSERT(NAME) (htab, hval, data)
|
/external/llvm/lib/Support/ |
D | regcomp.c | 132 #define INSERT(op, pos) doinsert(p, (sop)(op), HERE()-(pos)+1, pos) macro 276 INSERT(OCH_, conc); /* offset is wrong */ in p_ere() 396 INSERT(OPLUS_, pos); in p_ere_exp() 398 INSERT(OQUEST_, pos); in p_ere_exp() 402 INSERT(OPLUS_, pos); in p_ere_exp() 407 INSERT(OCH_, pos); /* offset slightly wrong */ in p_ere_exp() 581 INSERT(OPLUS_, pos); in p_simp_re() 583 INSERT(OQUEST_, pos); in p_simp_re() 972 INSERT(OCH_, start); /* offset is wrong... */ in repeat() 985 INSERT(OCH_, start); in repeat() [all …]
|
/external/chromium/chrome/browser/tabs/ |
D | tab_strip_model_unittest.cc | 273 INSERT, enumerator 337 State* s = new State(contents, index, INSERT); in TabInsertedAt() 422 State s1(contents1, 0, MockTabStripModelObserver::INSERT); in TEST_F() 438 State s1(contents2, 1, MockTabStripModelObserver::INSERT); in TEST_F() 454 State s1(contents3, 2, MockTabStripModelObserver::INSERT); in TEST_F() 484 State s3(detached, 2, MockTabStripModelObserver::INSERT); in TEST_F() 1787 State state(contents1, 0, MockTabStripModelObserver::INSERT); in TEST_F() 1801 State state(contents2, 1, MockTabStripModelObserver::INSERT); in TEST_F() 1857 State state(contents3, 2, MockTabStripModelObserver::INSERT); in TEST_F() 2024 State state(contents4, 2, MockTabStripModelObserver::INSERT); in TEST_F()
|
/external/mksh/src/ |
D | edit.c | 3297 #define INSERT 1 macro 3368 insert = INSERT; in x_vi() 3863 if (insert == INSERT) { in vi_insert() 3953 insert = INSERT; in vi_cmd() 3961 insert = INSERT; in vi_cmd() 3969 insert = INSERT; in vi_cmd() 4013 insert = INSERT; in vi_cmd() 4046 insert = INSERT; in vi_cmd() 4076 insert = INSERT; in vi_cmd() 4083 insert = INSERT; in vi_cmd() [all …]
|
/external/chromium/net/disk_cache/ |
D | rankings.cc | 22 INSERT = 1, enumerator 236 Transaction lock(control_data_, node->address(), INSERT, list); in Insert() 616 if (INSERT == control_data_->operation) { in CompleteTransaction()
|
/external/qemu/android/skin/ |
D | keyset.c | 173 _KEYSYM1_(INSERT) \
|
/external/qemu/android/ |
D | hw-events.h | 153 KEY_CODE(INSERT ,110) \
|
/external/sqlite/dist/ |
D | sqlite3.h.orig | 1475 ** successful [INSERT] into the database from the [database connection] 1476 ** in the first argument. ^If no successful [INSERT]s 1479 ** ^(If an [INSERT] occurs within a trigger, then the [rowid] of the inserted 1484 ** ^An [INSERT] that fails due to a constraint violation is not a 1485 ** successful [INSERT] and does not change the value returned by this 1486 ** routine. ^Thus INSERT OR FAIL, INSERT OR IGNORE, INSERT OR ROLLBACK, 1487 ** and INSERT OR ABORT make no changes to the return value of this 1488 ** routine when their insertion fails. ^(When INSERT OR REPLACE 1490 ** INSERT continues to completion after deleting rows that caused 1491 ** the constraint problem so INSERT OR REPLACE will always change [all …]
|
D | shell.c.orig | 798 fprintf(p->out,"INSERT INTO %s VALUES(",p->zDestTable); 1209 "INSERT INTO sqlite_master(type,name,tbl_name,rootpage,sql)" 1236 zSelect = appendText(zSelect, "SELECT 'INSERT INTO ' || ", 0); 1690 sqlite3_snprintf(nByte+20, zSql, "INSERT INTO '%q' VALUES(?", zTable);
|
D | sqlite3.c.orig | 118 ** * Terms in the VALUES clause of an INSERT statement 2018 ** successful [INSERT] into the database from the [database connection] 2019 ** in the first argument. ^If no successful [INSERT]s 2022 ** ^(If an [INSERT] occurs within a trigger, then the [rowid] of the inserted 2027 ** ^An [INSERT] that fails due to a constraint violation is not a 2028 ** successful [INSERT] and does not change the value returned by this 2029 ** routine. ^Thus INSERT OR FAIL, INSERT OR IGNORE, INSERT OR ROLLBACK, 2030 ** and INSERT OR ABORT make no changes to the return value of this 2031 ** routine when their insertion fails. ^(When INSERT OR REPLACE 2033 ** INSERT continues to completion after deleting rows that caused [all …]
|
/external/chromium/chrome/browser/ui/gtk/tabs/ |
D | tab_strip_gtk.cc | 116 INSERT, enumerator 262 : TabAnimation(tabstrip, INSERT), in InsertTabAnimation()
|
/external/doclava/res/assets/templates/assets/ |
D | jquery-resizable.min.js | 29 …COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_… property
|
/external/libvpx/examples/includes/geshi/docs/ |
D | geshi-doc.txt | 980 mysql_query("INSERT INTO code VALUES ('$code', '$time')");
|
/external/bison/doc/ |
D | bison.info | 7383 Will Bison ever have C++ support? How about Java or INSERT YOUR
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2006-12-31 | 34623 …(WebCore::IconDataCache::writeToDatabase): Instead of one INSERT relying on SQLites conflict handl… 34624 this into an UPDATE attempt followed by the initial INSERT
|
D | ChangeLog-2008-08-10 | 34337 Database Query view for words like "SELECT" and "INSERT". 70213 …With this change, any database operation that writes to the database (UPDATE, INSERT, CREATE, etc)…
|
/external/srec/config/en.us/dictionary/ |
D | c0.6 | 56437 INSERT IH2 N S ER1 T 56438 INSERT(2) IH1 N S ER2 T
|