/bionic/libc/kernel/tools/ |
utils.py | 342 """determine changes, returns (adds, deletes, edits)""" 345 deletes = set() 355 deletes.add(dst) 357 return (adds, deletes, edits) 369 adds, deletes, edits = self.getChanges() 377 for dst in sorted(deletes): 381 adds, deletes, edits = self.getChanges() 401 if len(deletes): 402 files = string.join(sorted(deletes)," ") 403 D( "%d files will be p4 delete-d" % len(deletes) ) [all...] |
/external/chromium/chrome/browser/safe_browsing/ |
protocol_parser_unittest.cc | 343 std::vector<SBChunkDelete> deletes; local 348 &reset, &deletes, &urls)); 354 EXPECT_EQ(deletes.size(), 2U); 356 EXPECT_EQ(deletes[0].chunk_del.size(), 4U); 357 EXPECT_TRUE(deletes[0].chunk_del[0] == ChunkRange(1, 7)); 358 EXPECT_TRUE(deletes[0].chunk_del[1] == ChunkRange(43, 597)); 359 EXPECT_TRUE(deletes[0].chunk_del[2] == ChunkRange(44444)); 360 EXPECT_TRUE(deletes[0].chunk_del[3] == ChunkRange(99999)); 362 EXPECT_EQ(deletes[1].chunk_del.size(), 3U); 363 EXPECT_TRUE(deletes[1].chunk_del[0] == ChunkRange(21, 27)) 392 std::vector<SBChunkDelete> deletes; local 428 std::vector<SBChunkDelete> deletes; local 454 std::vector<SBChunkDelete> deletes; local 636 std::vector<SBChunkDelete> deletes; local 652 std::vector<SBChunkDelete> deletes; local 801 std::vector<SBChunkDelete> deletes; local [all...] |
protocol_parser.cc | 139 std::vector<SBChunkDelete>* deletes, 142 DCHECK(deletes); 184 deletes->push_back(chunk_delete);
|
/bionic/libc/tools/ |
gensyscalls.py | 633 deletes = [] 637 deletes.append( bionic_root + stub ) 642 if deletes: 643 commands.getoutput("git rm " + " ".join(deletes)) 652 if (not adds) and (not deletes) and (not edits):
|
/external/jdiff/src/jdiff/ |
Diff.java | 126 int deletes = hunk.deleted; local 129 if (deletes == 1 && inserts == 1) { 137 if (deletes == 1 && inserts == 1 && 182 int deletes = hunk.deleted; local 184 if (deletes == 0 && inserts == 0) { 191 // Index of last deleted word, invalid if deletes == 0 200 System.out.println("deletes: " + deletes); 215 if (deletes != 0) { [all...] |
/external/webkit/LayoutTests/dom/html/level2/html/ |
HTMLTableElement27.js | 78 The deleteCaption() method deletes the table caption.
|
HTMLTableElement21.js | 78 The deleteTHead() method deletes the header from the table.
|
HTMLTableElement24.js | 78 The deleteTFoot() method deletes the footer from the table.
|
HTMLTableElement32.js | 78 The deleteRow() method deletes a table row.
|
HTMLTableElement33.js | 78 The deleteRow() method deletes a table row.
|
HTMLTableElement40.js | 78 The deleteRow() method deletes a table row. If the index is -1
|
HTMLTableRowElement13.js | 78 The deleteCell() method deletes a cell from the current row.
|
HTMLTableRowElement14.js | 78 The deleteCell() method deletes a cell from the current row.
|
HTMLTableRowElement21.js | 78 The deleteCell() method deletes a cell from the currtent row. If
|
HTMLTableSectionElement22.js | 78 The deleteRow() method deletes a row from this section.
|
HTMLTableSectionElement23.js | 78 The deleteRow() method deletes a row from this section.
|
HTMLTableSectionElement24.js | 78 The deleteRow() method deletes a row from this section.
|
HTMLTableSectionElement31.js | 78 The deleteRow() method deletes a row from this section. The index
|
/external/webkit/LayoutTests/dom/xhtml/level2/html/ |
HTMLTableElement27.js | 78 The deleteCaption() method deletes the table caption.
|
HTMLTableElement21.js | 78 The deleteTHead() method deletes the header from the table.
|
HTMLTableElement24.js | 78 The deleteTFoot() method deletes the footer from the table.
|
HTMLTableElement32.js | 78 The deleteRow() method deletes a table row.
|
HTMLTableElement33.js | 78 The deleteRow() method deletes a table row.
|
HTMLTableElement40.js | 78 The deleteRow() method deletes a table row. If the index is -1
|
HTMLTableRowElement13.js | 78 The deleteCell() method deletes a cell from the current row.
|