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

1 2 3 4 5 6 7 8

  /external/chromium_org/chrome/browser/ui/webui/
crashes_ui.h 12 class RefCountedMemory;
19 static base::RefCountedMemory* GetFaviconResourceBytes(
downloads_ui.h 12 class RefCountedMemory;
19 static base::RefCountedMemory* GetFaviconResourceBytes(
flash_ui.h 12 class RefCountedMemory;
20 static base::RefCountedMemory* GetFaviconResourceBytes(
conflicts_ui.h 14 class RefCountedMemory;
22 static base::RefCountedMemory* GetFaviconResourceBytes(
plugins_ui.h 12 class RefCountedMemory;
23 static base::RefCountedMemory* GetFaviconResourceBytes(
flags_ui.h 20 class RefCountedMemory;
32 static base::RefCountedMemory* GetFaviconResourceBytes(
bookmarks_ui.h 16 class RefCountedMemory;
45 static base::RefCountedMemory* GetFaviconResourceBytes(
components_ui.h 14 class RefCountedMemory;
31 static base::RefCountedMemory* GetFaviconResourceBytes(
  /external/chromium_org/components/enhanced_bookmarks/
image_store_util.h 19 scoped_refptr<base::RefCountedMemory> BytesForImage(const gfx::Image& image);
23 gfx::Image ImageForBytes(const scoped_refptr<base::RefCountedMemory>& data);
image_store_util.cc 16 scoped_refptr<base::RefCountedMemory> BytesForImage(const gfx::Image& image) {
25 return scoped_refptr<base::RefCountedMemory>();
27 return scoped_refptr<base::RefCountedMemory>(new base::RefCountedBytes(data));
30 gfx::Image ImageForBytes(const scoped_refptr<base::RefCountedMemory>& bytes) {
  /external/chromium_org/ui/gl/
gl_image_ref_counted_memory.h 12 class RefCountedMemory;
21 bool Initialize(base::RefCountedMemory* ref_counted_memory);
30 scoped_refptr<base::RefCountedMemory> ref_counted_memory_;
  /external/chromium_org/sync/api/attachments/
attachment.h 35 static Attachment Create(const scoped_refptr<base::RefCountedMemory>& data);
43 const scoped_refptr<base::RefCountedMemory>& data);
49 const scoped_refptr<base::RefCountedMemory>& GetData() const;
53 scoped_refptr<base::RefCountedMemory> data_;
56 const scoped_refptr<base::RefCountedMemory>& data);
attachment.cc 15 const scoped_refptr<base::RefCountedMemory>& data) {
22 const scoped_refptr<base::RefCountedMemory>& data) {
28 const scoped_refptr<base::RefCountedMemory>& Attachment::GetData() const {
33 const scoped_refptr<base::RefCountedMemory>& data)
  /external/chromium_org/chrome/browser/ui/webui/media/
webrtc_logs_ui.h 12 class RefCountedMemory;
  /external/chromium_org/chrome/browser/ui/webui/ntp/
ntp_resource_cache.h 20 class RefCountedMemory;
41 base::RefCountedMemory* GetNewTabHTML(WindowType win_type);
42 base::RefCountedMemory* GetNewTabCSS(WindowType win_type);
77 scoped_refptr<base::RefCountedMemory> new_tab_html_;
91 scoped_refptr<base::RefCountedMemory> new_tab_guest_html_;
92 scoped_refptr<base::RefCountedMemory> new_tab_guest_css_;
93 scoped_refptr<base::RefCountedMemory> new_tab_incognito_html_;
94 scoped_refptr<base::RefCountedMemory> new_tab_incognito_css_;
95 scoped_refptr<base::RefCountedMemory> new_tab_css_;
  /external/chromium_org/chrome/browser/ui/webui/extensions/
extensions_ui.h 13 class RefCountedMemory;
23 static base::RefCountedMemory* GetFaviconResourceBytes(
  /external/chromium_org/ui/gfx/image/
image_png_rep.h 19 ImagePNGRep(const scoped_refptr<base::RefCountedMemory>& data,
29 scoped_refptr<base::RefCountedMemory> raw_data;
  /external/chromium_org/base/memory/
ref_counted_memory.h 20 class BASE_EXPORT RefCountedMemory
21 : public base::RefCountedThreadSafe<RefCountedMemory> {
31 bool Equals(const scoped_refptr<RefCountedMemory>& other) const;
39 friend class base::RefCountedThreadSafe<RefCountedMemory>;
40 RefCountedMemory();
41 virtual ~RefCountedMemory();
44 // An implementation of RefCountedMemory, where the ref counting does not
46 class BASE_EXPORT RefCountedStaticMemory : public RefCountedMemory {
54 // Overridden from RefCountedMemory:
67 // An implementation of RefCountedMemory, where we own the data in a vector
    [all...]
ref_counted_memory_unittest.cc 12 scoped_refptr<RefCountedMemory> mem = new RefCountedStaticMemory(
23 scoped_refptr<RefCountedMemory> mem = RefCountedBytes::TakeVector(&data);
31 scoped_refptr<RefCountedMemory> mem2;
44 scoped_refptr<RefCountedMemory> mem = RefCountedString::TakeString(&s);
57 scoped_refptr<RefCountedMemory> mem = new RefCountedMallocedMemory(data, 6);
65 scoped_refptr<RefCountedMemory> mem1 = RefCountedString::TakeString(&s1);
72 scoped_refptr<RefCountedMemory> mem2 = RefCountedBytes::TakeVector(&d2);
77 scoped_refptr<RefCountedMemory> mem3 = RefCountedString::TakeString(&s3);
85 scoped_refptr<RefCountedMemory> mem = RefCountedString::TakeString(&s);
ref_counted_memory.cc 13 bool RefCountedMemory::Equals(
14 const scoped_refptr<RefCountedMemory>& other) const {
20 RefCountedMemory::RefCountedMemory() {}
22 RefCountedMemory::~RefCountedMemory() {}
  /external/chromium_org/chrome/browser/thumbnails/
thumbnail_service.h 15 class RefCountedMemory;
51 scoped_refptr<base::RefCountedMemory>* bytes) = 0;
thumbnail_service_impl.h 14 class RefCountedMemory;
32 scoped_refptr<base::RefCountedMemory>* bytes) OVERRIDE;
  /external/chromium_org/content/browser/webui/
url_data_source_impl.cc 28 base::RefCountedMemory* bytes) {
30 scoped_refptr<base::RefCountedMemory> bytes_ptr(bytes);
53 scoped_refptr<base::RefCountedMemory> bytes) {
url_data_source_impl.h 15 class RefCountedMemory;
59 virtual void SendResponse(int request_id, base::RefCountedMemory* bytes);
76 scoped_refptr<base::RefCountedMemory> bytes);
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
user_image_source.h 17 class RefCountedMemory;
40 base::RefCountedMemory* GetUserImage(const std::string& email,

Completed in 1575 milliseconds

1 2 3 4 5 6 7 8