/external/llvm/lib/Support/ |
SmallPtrSet.cpp | 94 // Set this as a tombstone. 106 const void *const *Tombstone = 0; 113 // Return a tombstone if we've seen one so far, or the empty bucket if 116 return Tombstone ? Tombstone : Array+Bucket; 118 // If this is a tombstone, remember it. If Ptr ends up not in the set, we 120 if (Array[Bucket] == getTombstoneMarker() && !Tombstone) 121 Tombstone = Array+Bucket; // Remember the first tombstone found. 123 // It's a hash collision or a tombstone. Reprobe [all...] |
/external/chromium_org/sync/internal_api/public/ |
write_node.h | 102 void Tombstone();
|
/external/chromium_org/chrome/browser/sync/glue/ |
tab_node_pool.cc | 135 tab_node.Tombstone(); 179 tab_node.Tombstone();
|
password_change_processor.cc | 157 sync_node.Tombstone();
|
typed_url_change_processor.cc | 209 sync_node.Tombstone();
|
session_model_associator.cc | 732 sync_node.Tombstone(); 747 sync_node.Tombstone(); [all...] |
password_model_associator.cc | 193 sync_node.Tombstone();
|
typed_url_model_associator.cc | 385 sync_node.Tombstone(); 474 sync_child_node.Tombstone();
|
generic_change_processor.cc | 300 node->Tombstone();
|
bookmark_change_processor.cc | 109 sync_node->Tombstone();
|
/external/chromium_org/sync/internal_api/ |
write_node.cc | 496 void WriteNode::Tombstone() {
|
sync_manager_impl_unittest.cc | 371 wnode.Tombstone(); [all...] |
/external/llvm/include/llvm/ADT/ |
DenseMap.h | 450 // If we are writing over a tombstone, remember this. 460 /// true, otherwise it returns a bucket with an empty marker or tombstone and 473 // FoundTombstone - Keep track of whether we find a tombstone while probing. 479 "Empty/Tombstone value shouldn't be inserted into map!"); 494 // If we've already seen a tombstone while probing, fill it in instead 500 // If this is a tombstone, remember it. If Val ends up not in the map, we 503 FoundTombstone = ThisBucket; // Remember the first tombstone found. 505 // Otherwise, it's a hash collision or a tombstone, continue quadratic 1040 const KeyT Tombstone = KeyInfoT::getTombstoneKey(); 1044 KeyInfoT::isEqual(Ptr->first, Tombstone))) [all...] |
/external/chromium_org/chrome/browser/sync/ |
profile_sync_service_bookmark_unittest.cc | 133 node.Tombstone(); [all...] |
profile_sync_service_session_unittest.cc | [all...] |
/external/llvm/lib/TableGen/ |
Record.cpp | 37 /// good way to indicate tombstone or empty keys for strings, we want 39 /// not expected to take on certain values (those of the tombstone and 65 TableGenStringKey Tombstone("<<<TOMBSTONE KEY>>>"); 66 return Tombstone; [all...] |