HomeSort by relevance Sort by last modified time
    Searched refs:DELETE (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /external/clang/test/CodeGenCXX/
apple-kext-indirect-virtual-dtor-call.cpp 17 void DELETE(B1 *pb1) {
  /external/oauth/core/src/main/java/net/oauth/http/
HttpClient.java 38 static final String DELETE = OAuthMessage.DELETE;
  /external/google-diff-match-patch/name/fraser/neil/plaintext/
diff_match_patch_test.java 40 private diff_match_patch.Operation DELETE = diff_match_patch.Operation.DELETE;
155 diffs = diffList(new Diff(DELETE, chars));
157 assertEquals("diff_charsToLines: More than 256.", diffList(new Diff(DELETE, lines)), diffs);
166 diffs = diffList(new Diff(EQUAL, "a"), new Diff(DELETE, "b"), new Diff(INSERT, "c"));
168 assertEquals("diff_cleanupMerge: No change case.", diffList(new Diff(EQUAL, "a"), new Diff(DELETE, "b"), new Diff(INSERT, "c")), diffs);
174 diffs = diffList(new Diff(DELETE, "a"), new Diff(DELETE, "b"), new Diff(DELETE, "c"));
176 assertEquals("diff_cleanupMerge: Merge deletions.", diffList(new Diff(DELETE, "abc")), diffs)
    [all...]
diff_match_patch.java 83 * end points of a delete need to match.
119 * {Diff(Operation.DELETE, "Hello"), Diff(Operation.INSERT, "Goodbye"),
121 * which means: delete "Hello", add "Goodbye" and keep " world."
124 DELETE, INSERT, EQUAL
215 // Just delete some text (speedup).
216 diffs.add(new Diff(Operation.DELETE, text1));
226 Operation.DELETE : Operation.INSERT;
270 diffs.add(new Diff(Operation.DELETE, text1));
295 case DELETE:
302 // Delete the offending records and add the merged ones
    [all...]
  /external/libpng/scripts/
pnglibconf.mak 18 DELETE = rm -f
34 $(DELETE) $@ pnglibconf.c pnglibconf.out pnglibconf.tmp
42 $(DELETE) $@ pnglibconf.pre pnglibconf.tmp
52 $(DELETE) pnglibconf.*
  /external/chromium_org/chrome/test/chromedriver/client/
command_executor.py 12 DELETE = 'DELETE'
18 QUIT = (_Method.DELETE, '/session/:sessionId')
70 DELETE_ALL_COOKIES = (_Method.DELETE, '/session/:sessionId/cookie')
71 DELETE_COOKIE = (_Method.DELETE, '/session/:sessionId/cookie/:name')
85 CLOSE = (_Method.DELETE, '/session/:sessionId/window')
103 _Method.DELETE, '/session/:sessionId/local_storage/key/:key')
106 CLEAR_LOCAL_STORAGE = (_Method.DELETE, '/session/:sessionId/local_storage')
112 _Method.DELETE, '/session/:sessionId/session_storage/key/:key')
117 _Method.DELETE, '/session/:sessionId/session_storage'
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
ImageFactory.java 22 DELETE = getImage("delete24.png");
63 public ImageIcon DELETE;
  /external/chromium_org/chrome/tools/build/win/
map_drive.bat 15 net use %DRIVE_LETTER% /DELETE
  /external/chromium_org/third_party/sqlite/src/tool/
speedtest2.tcl 131 puts $fd "DELETE FROM t1;"
133 runtest {DELETE everything}
148 puts $fd "DELETE FROM t1;"
150 runtest {DELETE everything}
165 puts $fd "DELETE FROM t1;"
167 runtest {DELETE everything}
182 puts $fd "DELETE FROM t1;"
184 runtest {DELETE everything}
199 puts $fd "DELETE FROM t1;"
201 runtest {DELETE everything
    [all...]
speedtest.tcl 238 puts $fd {DELETE FROM t2 WHERE c LIKE '%fifty%';}
240 runtest {DELETE without an index}
245 puts $fd {DELETE FROM t2 WHERE a>10 AND a<20000;}
247 runtest {DELETE with an index}
254 runtest {A big INSERT after a big DELETE}
260 puts $fd {DELETE FROM t1;}
267 runtest {A big DELETE followed by many small INSERTs}
mkspeedsql.tcl 187 # Delete all content in a table.
189 puts {DELETE FROM t1;}
195 # Delete all content in a table, one row at a time.
197 puts {DELETE FROM t1 WHERE 1;}
223 # Delete 20000 random rows from the table.
226 DELETE FROM t1 WHERE rowid IN
231 # Delete 20000 more rows at random from the table.
234 DELETE FROM t1 WHERE rowid IN
  /external/libpng/projects/owatcom/
pngconfig.mak 11 DELETE=rm -f
42 $(DELETE) $@ dfn.c dfn1.out dfn2.out
58 $(DELETE) dfn.c dfn1.out dfn2.out
61 $(DELETE) $@ dfn1.out dfn2.out
65 $(DELETE) dfn1.out dfn2.out
116 $# 3) Delete this file (config.inf).
153 $(DELETE) ..\..\pnglibconf.h pnglibconf.* dfn.c *.out pngconfig.inf
154 $(DELETE) *.obj *.mbr *.sym *.err *.pch libpng.mk
155 $(DELETE) libpng.lib libpng.lbr libpng.lb1 libpng.cbr libpng.mk1
156 $(DELETE) pngtest.exe pngtest.map pngtest.lk1 pngtest.mk1
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/
file_change.h 29 DELETE,
37 bool IsDelete() const { return change_ == DELETE; }
  /external/chromium_org/net/tools/quic/test_tools/
http_message.h 35 DELETE,
  /external/chromium_org/v8/src/base/
win32-headers.h 65 #undef DELETE
  /external/droiddriver/src/com/google/android/droiddriver/actions/
SingleKeyAction.java 41 public static final SingleKeyAction DELETE = new SingleKeyAction(KeyEvent.KEYCODE_DEL);
  /external/chromium_org/chrome/browser/chromeos/drive/sync/
entry_revert_performer.cc 60 FileChange::DELETE);
62 changed_files->Update(original_path, entry, FileChange::DELETE);
  /external/chromium_org/third_party/sqlite/src/test/
laststmtchanges.test 82 # changes() set properly after delete from table
85 delete from t0 where x=2;
150 delete from t2; delete from t2;
153 delete from t0 where oid=1 or oid=2;
168 # changes() changed properly by delete within context of after update trigger
176 # 4.x - tests with before delete trigger
178 # changes() changed properly on delete from table containing before trigger
182 delete from t2; delete from t2
    [all...]
collate6.test 72 DELETE FROM collate6log;
100 DELETE FROM collate6log;
  /external/libedit/src/
chared.h 128 #define DELETE 0x01
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteCursorTest.java 143 final String DELETE = "DELETE FROM " + TABLE_NAME + " WHERE number_1 =";
144 final String DELETE_1 = DELETE + "1;";
145 final String DELETE_2 = DELETE + "2;";
  /external/chromium_org/chrome/browser/chromeos/drive/file_system/
move_operation.cc 41 changed_files->Update(src_path, entry, FileChange::DELETE);
remove_operation.cc 118 changed_file.Update(*changed_path, *entry, FileChange::DELETE);
  /external/chromium_org/sandbox/win/src/
window.cc 103 DELETE |
  /external/chromium_org/third_party/sqlite/src/src/
test8.c 442 ** structure. If an error occurs, delete the sqlite3_vtab structure and
914 ** INTEGER DELETE
973 /* If apData[0] is an integer and nData==1 then do a DELETE */
975 z = sqlite3_mprintf("DELETE FROM %Q WHERE rowid = ?1", pVtab->zTableName);
    [all...]

Completed in 497 milliseconds

1 2 3 4