/external/chromium_org/base/memory/ |
D | ref_counted_memory.h | 20 class BASE_EXPORT RefCountedMemory 21 : public base::RefCountedThreadSafe<RefCountedMemory> { 31 bool Equals(const scoped_refptr<RefCountedMemory>& other) const; 34 friend class base::RefCountedThreadSafe<RefCountedMemory>; 35 RefCountedMemory(); 36 virtual ~RefCountedMemory(); 41 class BASE_EXPORT RefCountedStaticMemory : public RefCountedMemory { 63 class BASE_EXPORT RefCountedBytes : public RefCountedMemory { 92 class BASE_EXPORT RefCountedString : public RefCountedMemory { 119 class BASE_EXPORT RefCountedMallocedMemory : public base::RefCountedMemory {
|
D | ref_counted_memory_unittest.cc | 12 scoped_refptr<RefCountedMemory> mem = new RefCountedStaticMemory( in TEST() 25 scoped_refptr<RefCountedMemory> mem = RefCountedBytes::TakeVector(&data); in TEST() 36 scoped_refptr<RefCountedMemory> mem = RefCountedString::TakeString(&s); in TEST() 49 scoped_refptr<RefCountedMemory> mem = new RefCountedMallocedMemory(data, 6); in TEST() 57 scoped_refptr<RefCountedMemory> mem1 = RefCountedString::TakeString(&s1); in TEST() 64 scoped_refptr<RefCountedMemory> mem2 = RefCountedBytes::TakeVector(&d2); in TEST() 69 scoped_refptr<RefCountedMemory> mem3 = RefCountedString::TakeString(&s3); in TEST() 77 scoped_refptr<RefCountedMemory> mem = RefCountedString::TakeString(&s); in TEST()
|
D | ref_counted_memory.cc | 13 bool RefCountedMemory::Equals( in Equals() 14 const scoped_refptr<RefCountedMemory>& other) const { in Equals() 20 RefCountedMemory::RefCountedMemory() {} in RefCountedMemory() function in base::RefCountedMemory 22 RefCountedMemory::~RefCountedMemory() {} in ~RefCountedMemory()
|
/external/chromium_org/chrome/browser/ui/webui/ntp/ |
D | ntp_resource_cache.h | 20 class RefCountedMemory; variable 41 base::RefCountedMemory* GetNewTabHTML(WindowType win_type); 42 base::RefCountedMemory* GetNewTabCSS(WindowType win_type); 77 scoped_refptr<base::RefCountedMemory> new_tab_html_; 92 scoped_refptr<base::RefCountedMemory> new_tab_guest_html_; 93 scoped_refptr<base::RefCountedMemory> new_tab_guest_css_; 94 scoped_refptr<base::RefCountedMemory> new_tab_incognito_html_; 95 scoped_refptr<base::RefCountedMemory> new_tab_incognito_css_; 96 scoped_refptr<base::RefCountedMemory> new_tab_css_;
|
/external/chromium/base/memory/ |
D | ref_counted_memory.h | 20 class BASE_API RefCountedMemory 21 : public base::RefCountedThreadSafe<RefCountedMemory> { 31 friend class base::RefCountedThreadSafe<RefCountedMemory>; 32 RefCountedMemory(); 33 virtual ~RefCountedMemory(); 38 class BASE_API RefCountedStaticMemory : public RefCountedMemory { 58 class BASE_API RefCountedBytes : public RefCountedMemory {
|
D | ref_counted_memory.cc | 7 RefCountedMemory::RefCountedMemory() { in RefCountedMemory() function in RefCountedMemory 10 RefCountedMemory::~RefCountedMemory() { in ~RefCountedMemory()
|
/external/chromium_org/ui/base/x/ |
D | selection_utils.h | 45 const scoped_refptr<base::RefCountedMemory>& memory); 48 const scoped_refptr<base::RefCountedMemory>& memory); 57 typedef std::map< ::Atom, scoped_refptr<base::RefCountedMemory> > InternalMap; 66 void Insert(::Atom atom, const scoped_refptr<base::RefCountedMemory>& item); 93 const scoped_refptr<base::RefCountedMemory>& memory); 116 scoped_refptr<base::RefCountedMemory> memory_;
|
/external/chromium_org/chrome/browser/history/ |
D | top_sites_impl.h | 38 class RefCountedMemory; variable 62 const base::RefCountedMemory* memory, 70 scoped_refptr<base::RefCountedMemory>* bytes) OVERRIDE; 125 const base::RefCountedMemory* thumbnail_data, 131 const base::RefCountedMemory* thumbnail, 145 const base::RefCountedMemory* thumbnail,
|
D | thumbnail_database.h | 20 class RefCountedMemory; variable 83 scoped_refptr<base::RefCountedMemory>* png_icon_data, 96 const scoped_refptr<base::RefCountedMemory>& icon_data, 104 scoped_refptr<base::RefCountedMemory> bitmap_data, 148 const scoped_refptr<base::RefCountedMemory>& icon_data,
|
/external/chromium_org/content/browser/webui/ |
D | url_data_source_impl.cc | 28 base::RefCountedMemory* bytes) { in SendResponse() 30 scoped_refptr<base::RefCountedMemory> bytes_ptr(bytes); in SendResponse() 53 scoped_refptr<base::RefCountedMemory> bytes) { in SendResponseOnIOThread()
|
D | url_data_source_impl.h | 15 class RefCountedMemory; variable 59 virtual void SendResponse(int request_id, base::RefCountedMemory* bytes); 76 scoped_refptr<base::RefCountedMemory> bytes);
|
/external/chromium_org/chrome/browser/local_discovery/ |
D | pwg_raster_converter.cc | 37 void Init(base::RefCountedMemory* data); 70 void FileHandlers::Init(base::RefCountedMemory* data) { in Init() 115 void Convert(base::RefCountedMemory* data, 155 base::RefCountedMemory* data, in Convert() 255 virtual void Start(base::RefCountedMemory* data, 272 base::RefCountedMemory* data, in Start()
|
/external/chromium_org/chrome/browser/printing/ |
D | print_dialog_cloud_internal.h | 62 const base::RefCountedMemory* data); 81 scoped_refptr<const base::RefCountedMemory> data_; 98 CloudPrintFlowHandler(const base::RefCountedMemory* data, 137 scoped_refptr<const base::RefCountedMemory> data_; 156 const base::RefCountedMemory* data,
|
/external/chromium/chrome/browser/ui/webui/ |
D | chrome_url_data_manager.h | 20 class RefCountedMemory; variable 80 virtual void SendResponse(int request_id, RefCountedMemory* bytes); 118 scoped_refptr<RefCountedMemory> bytes);
|
D | crashes_ui.h | 11 class RefCountedMemory; variable 17 static RefCountedMemory* GetFaviconResourceBytes();
|
D | downloads_ui.h | 11 class RefCountedMemory; variable 17 static RefCountedMemory* GetFaviconResourceBytes();
|
D | conflicts_ui.h | 13 class RefCountedMemory; variable 20 static RefCountedMemory* GetFaviconResourceBytes();
|
D | plugins_ui.h | 12 class RefCountedMemory; variable 18 static RefCountedMemory* GetFaviconResourceBytes();
|
D | remoting_ui.h | 12 class RefCountedMemory; variable 18 static RefCountedMemory* GetFaviconResourceBytes();
|
D | flags_ui.h | 12 class RefCountedMemory; variable 18 static RefCountedMemory* GetFaviconResourceBytes();
|
/external/chromium_org/ui/gfx/image/ |
D | image_png_rep.h | 19 ImagePNGRep(const scoped_refptr<base::RefCountedMemory>& data, 29 scoped_refptr<base::RefCountedMemory> raw_data;
|
/external/chromium_org/chrome/browser/ui/webui/ |
D | downloads_ui.h | 12 class RefCountedMemory; variable 19 static base::RefCountedMemory* GetFaviconResourceBytes(
|
D | flash_ui.h | 12 class RefCountedMemory; variable 20 static base::RefCountedMemory* GetFaviconResourceBytes(
|
D | crashes_ui.h | 12 class RefCountedMemory; variable 19 static base::RefCountedMemory* GetFaviconResourceBytes(
|
D | conflicts_ui.h | 14 class RefCountedMemory; variable 22 static base::RefCountedMemory* GetFaviconResourceBytes(
|