OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RefCountedBytes
(Results
1 - 25
of
69
) sorted by null
1
2
3
/external/chromium/base/memory/
ref_counted_memory.cc
21
RefCountedBytes
::
RefCountedBytes
() {
24
RefCountedBytes
::
RefCountedBytes
(const std::vector<unsigned char>& initializer)
28
RefCountedBytes
*
RefCountedBytes
::TakeVector(
30
RefCountedBytes
* bytes = new
RefCountedBytes
;
35
const unsigned char*
RefCountedBytes
::front() const {
41
size_t
RefCountedBytes
::size() const
[
all
...]
ref_counted_memory.h
58
class BASE_API
RefCountedBytes
: public RefCountedMemory {
60
RefCountedBytes
();
62
// Constructs a
RefCountedBytes
object by _copying_ from |initializer|.
63
RefCountedBytes
(const std::vector<unsigned char>& initializer);
65
// Constructs a
RefCountedBytes
object by performing a swap. (To non
66
// destructively build a
RefCountedBytes
, use the constructor that takes a
68
static
RefCountedBytes
* TakeVector(std::vector<unsigned char>* to_destroy);
77
friend class base::RefCountedThreadSafe<
RefCountedBytes
>;
78
virtual ~
RefCountedBytes
();
81
DISALLOW_COPY_AND_ASSIGN(
RefCountedBytes
);
[
all
...]
/external/chromium/chrome/browser/ui/webui/
ntp_resource_cache.h
16
class
RefCountedBytes
;
25
RefCountedBytes
* GetNewTabHTML(bool is_incognito);
26
RefCountedBytes
* GetNewTabCSS(bool is_incognito);
37
scoped_refptr<
RefCountedBytes
> new_tab_incognito_html_;
39
scoped_refptr<
RefCountedBytes
> new_tab_html_;
42
scoped_refptr<
RefCountedBytes
> new_tab_incognito_css_;
44
scoped_refptr<
RefCountedBytes
> new_tab_css_;
fileicon_source.h
15
class
RefCountedBytes
;
47
scoped_refptr<
RefCountedBytes
> default_favicon_;
theme_source.h
14
class
RefCountedBytes
;
43
scoped_refptr<
RefCountedBytes
> css_bytes_;
fileicon_source.cc
47
scoped_refptr<
RefCountedBytes
> icon_data(new
RefCountedBytes
);
74
scoped_refptr<
RefCountedBytes
> icon_data(new
RefCountedBytes
);
remoting_ui.cc
50
scoped_refptr<
RefCountedBytes
> html_bytes(new
RefCountedBytes
());
sync_internals_html_source.cc
40
scoped_refptr<
RefCountedBytes
> bytes(new
RefCountedBytes
());
textfields_ui.cc
34
scoped_refptr<
RefCountedBytes
> html_bytes(new
RefCountedBytes
);
thumbnail_source.cc
27
scoped_refptr<
RefCountedBytes
> data;
print_preview_ui_html_source.cc
126
scoped_refptr<
RefCountedBytes
> html_bytes(new
RefCountedBytes
);
137
scoped_refptr<
RefCountedBytes
> html_bytes(new
RefCountedBytes
);
146
scoped_refptr<
RefCountedBytes
> empty_bytes(new
RefCountedBytes
);
downloads_ui.cc
116
scoped_refptr<
RefCountedBytes
> html_bytes(new
RefCountedBytes
);
/external/chromium/chrome/browser/ui/webui/chromeos/login/
login_ui_helpers.h
15
class
RefCountedBytes
;
32
virtual
RefCountedBytes
* CreateHTMLBytes(std::string full_html);
login_ui_helpers.cc
33
RefCountedBytes
* HTMLOperationsInterface::CreateHTMLBytes(
35
RefCountedBytes
* html_bytes = new
RefCountedBytes
();
mock_login_ui_helpers.h
51
RefCountedBytes
*(std::string full_html));
/external/chromium/chrome/browser/history/
top_sites_cache.h
16
class
RefCountedBytes
;
36
RefCountedBytes
* thumbnail,
46
scoped_refptr<
RefCountedBytes
>* bytes);
thumbnail_database_unittest.cc
119
scoped_refptr<
RefCountedBytes
> favicon(new
RefCountedBytes
(data));
145
scoped_refptr<
RefCountedBytes
> favicon(new
RefCountedBytes
(data));
167
scoped_refptr<
RefCountedBytes
> favicon(new
RefCountedBytes
(data));
199
scoped_refptr<
RefCountedBytes
> favicon(new
RefCountedBytes
(data));
230
scoped_refptr<
RefCountedBytes
> favicon(new
RefCountedBytes
(data))
[
all
...]
top_sites.h
80
scoped_refptr<
RefCountedBytes
>* bytes);
207
const
RefCountedBytes
* thumbnail_data,
210
// A version of SetPageThumbnail that takes
RefCountedBytes
as
213
const
RefCountedBytes
* thumbnail,
219
scoped_refptr<
RefCountedBytes
>* bytes);
227
const
RefCountedBytes
* thumbnail,
top_sites_cache.cc
28
RefCountedBytes
* thumbnail,
40
scoped_refptr<
RefCountedBytes
>* bytes) {
/external/chromium/chrome/browser/ui/webui/options/chromeos/
user_image_source.cc
46
SendResponse(request_id, new
RefCountedBytes
(GetUserImage(email)));
/external/chromium/chrome/browser/ui/webui/chromeos/
proxy_settings_ui.cc
58
scoped_refptr<
RefCountedBytes
> html_bytes(new
RefCountedBytes
);
register_page_ui.cc
171
scoped_refptr<
RefCountedBytes
> empty_bytes(new
RefCountedBytes
);
180
scoped_refptr<
RefCountedBytes
> html_bytes(new
RefCountedBytes
);
188
scoped_refptr<
RefCountedBytes
> empty_bytes(new
RefCountedBytes
);
system_info_ui.cc
145
scoped_refptr<
RefCountedBytes
> html_bytes(new
RefCountedBytes
);
/external/chromium/chrome/browser/printing/cloud_print/
cloud_print_setup_source.cc
123
scoped_refptr<
RefCountedBytes
> html_bytes(new
RefCountedBytes
);
/external/chromium/chrome/browser/remoting/
remoting_resources_source.cc
144
scoped_refptr<
RefCountedBytes
> html_bytes(new
RefCountedBytes
);
Completed in 299 milliseconds
1
2
3