HomeSort by relevance Sort by last modified time
    Searched defs:Insert (Results 1 - 25 of 119) sorted by null

1 2 3 4 5

  /external/chromium_org/chrome/browser/history/android/
android_urls_sql_handler.cc 43 bool AndroidURLsSQLHandler::Insert(HistoryAndBookmarkRow* row) {
favicon_sql_handler.cc 96 bool FaviconSQLHandler::Insert(HistoryAndBookmarkRow* row) {
urls_sql_handler.cc 30 bool UrlsSQLHandler::Insert(HistoryAndBookmarkRow* row) {
35 LOG(ERROR) << "AndroidProviderBackend::Insert Urls; url exists.";
95 // Directly updating the URL is not allowed, we should insert the new URL
visit_sql_handler.cc 34 // b. Insert a new visit which has visit time same as created time.
35 // c. Insert the number of visits according the visit count in urls table.
81 bool VisitSQLHandler::Insert(HistoryAndBookmarkRow* row) {
bookmark_model_sql_handler.cc 153 bool BookmarkModelSQLHandler::Insert(HistoryAndBookmarkRow* row) {
  /external/chromium_org/net/disk_cache/memory/
mem_rankings.cc 16 void MemRankings::Insert(MemEntryImpl* node) {
50 Insert(node);
  /external/lldb/include/lldb/Core/
FileSpecList.h 195 Insert (size_t idx, const FileSpec &file)
199 m_files.insert(m_files.begin() + idx, file);
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDIECollection.cpp 22 DWARFDIECollection::Insert(const DWARFDebugInfoEntry *die)
28 m_dies.insert(insert_pos, die);
NameToDIE.cpp 33 NameToDIE::Insert (const ConstString& name, uint32_t die_offset)
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
task_dependency_manager.cc 33 if (!container->insert(*itr).second) {
50 if (!paths->insert(*itr)) {
75 bool TaskDependencyManager::Insert(const BlockingFactor* blocking_factor) {
tracker_id_set.cc 18 void TrackerIDSet::Insert(const FileTracker& tracker) {
30 tracker_ids_.insert(tracker_id);
37 tracker_ids_.insert(tracker_id);
  /external/chromium_org/components/enhanced_bookmarks/
test_image_store.cc 20 void TestImageStore::Insert(const GURL& page_url,
26 store_.insert(std::make_pair(
63 urls->insert(it->first);
persistent_image_store.cc 93 void PersistentImageStore::Insert(const GURL& page_url,
102 "INSERT INTO images_by_url "
112 // Insert an empty image in case encoding fails.
188 urls->insert(GURL(statement.ColumnString(0)));
  /external/chromium_org/third_party/brotli/src/brotli/enc/
static_dict.h 29 void Insert(const std::string &str, int len, int dist) {
  /external/srec/seti/sltsEngine/src/
linklist_impl.c 123 LListResult Insert(LList *list, void *data)
143 /* curr not specified, insert from the end */
148 /* in cases with single node, default to insert at end */
150 /* insert at the end */
161 /* insert at head */
173 /* insert somewhere in middle */
  /external/chromium_org/extensions/browser/
process_map.cc 70 bool ProcessMap::Insert(const std::string& extension_id, int process_id,
72 return items_.insert(Item(extension_id, process_id, site_instance_id)).second;
117 result.insert(iter->extension_id);
  /external/chromium_org/sync/syncable/
parent_child_index.cc 56 bool ParentChildIndex::Insert(EntryKernel* entry) {
66 parent_children_map_.insert(std::make_pair(parent_id, children));
69 return children->insert(entry).second;
  /external/webrtc/src/system_wrappers/source/
map.cc 68 int MapWrapper::Insert(int id, void* ptr)
  /external/chromium_org/extensions/common/
extension_set.cc 46 bool ExtensionSet::Insert(const scoped_refptr<const Extension>& extension) {
58 Insert(*iter);
136 ids.insert(it->first);
  /external/chromium_org/sync/notifier/
object_id_invalidation_map.cc 16 invalidate_all.Insert(Invalidation::InitUnknownVersion(*it));
28 ret.insert(it->first);
37 void ObjectIdInvalidationMap::Insert(const Invalidation& invalidation) {
38 map_[invalidation.object_id()].Insert(invalidation);
64 out->insert(out->begin(), it->second.begin(), it->second.end());
105 Insert(*invalidation.get());
single_object_invalidation_set.cc 16 void SingleObjectInvalidationSet::Insert(const Invalidation& invalidation) {
17 invalidations_.insert(invalidation);
22 invalidations_.insert(other.begin(), other.end());
110 invalidations_.insert(*invalidation);
  /external/chromium_org/third_party/sqlite/src/test/
fuzz_common.tcl 30 # Insert
230 # Generate and return a fuzzy INSERT statement.
232 proc Insert {} {
234 {INSERT INTO [Table] VALUES([Expr], [Expr], [Expr]);}
235 {INSERT INTO [Table] VALUES([Expr], [Expr], [Expr], [Expr]);}
236 {INSERT INTO [Table] VALUES([Expr], [Expr]);}
266 {[Insert]}
  /external/chromium_org/third_party/webrtc/common_audio/resampler/
resampler.cc     [all...]
  /external/chromium_org/ui/gfx/
color_profile_win.cc 30 void Insert(const std::wstring& device, const std::vector<char>& profile) {
98 GetColorProfileCache().Insert(monitor.szDevice, *profile);
  /external/chromium_org/ui/gfx/geometry/
r_tree.h 43 // Insert a new rect into the tree, associated with provided key. Note that if
46 void Insert(const Rect& rect, Key key);
92 void RTree<Key>::Insert(const Rect& rect, Key key) {
98 // We will re-use this node structure, regardless of re-insert or return.
101 // of Insert() as nothing has changed.
125 record_map_.insert(std::make_pair(key, static_cast<Record*>(record.get())));
163 matches_out->insert(record->key());

Completed in 390 milliseconds

1 2 3 4 5