OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RefCountedString
(Results
1 - 11
of
11
) sorted by null
/external/libchrome/base/memory/
ref_counted_memory.cc
60
RefCountedString
::
RefCountedString
() {}
62
RefCountedString
::~
RefCountedString
() {}
65
scoped_refptr<
RefCountedString
>
RefCountedString
::TakeString(
67
scoped_refptr<
RefCountedString
> self(new
RefCountedString
);
72
const unsigned char*
RefCountedString
::front() const {
77
size_t
RefCountedString
::size() const
[
all
...]
ref_counted_memory.h
104
class BASE_EXPORT
RefCountedString
: public RefCountedMemory {
106
RefCountedString
();
108
// Constructs a
RefCountedString
object by performing a swap. (To non
109
// destructively build a
RefCountedString
, use the default constructor and
111
static scoped_refptr<
RefCountedString
> TakeString(std::string* to_destroy);
121
~
RefCountedString
() override;
125
DISALLOW_COPY_AND_ASSIGN(
RefCountedString
);
ref_counted_memory_unittest.cc
44
TEST(RefCountedMemoryUnitTest,
RefCountedString
) {
46
scoped_refptr<RefCountedMemory> mem =
RefCountedString
::TakeString(&s);
57
scoped_refptr<RefCountedMemory> mem1 =
RefCountedString
::TakeString(&s1);
69
scoped_refptr<RefCountedMemory> mem3 =
RefCountedString
::TakeString(&s3);
77
scoped_refptr<RefCountedMemory> mem =
RefCountedString
::TakeString(&s);
/external/libchrome/base/trace_event/
trace_event_memory_overhead.h
17
class
RefCountedString
;
43
void AddRefCountedString(const
RefCountedString
& str);
trace_event_memory_overhead.cc
65
const
RefCountedString
& str) {
66
Add("
RefCountedString
", sizeof(
RefCountedString
));
trace_log.h
30
class
RefCountedString
;
172
typedef base::Callback<void(const scoped_refptr<base::
RefCountedString
>&,
trace_log.cc
867
scoped_refptr<
RefCountedString
> empty_result = new
RefCountedString
;
923
scoped_refptr<
RefCountedString
> json_events_str_ptr = new
RefCountedString
();
929
json_events_str_ptr = new
RefCountedString
();
967
scoped_refptr<
RefCountedString
> empty_result = new
RefCountedString
;
[
all
...]
memory_dump_manager_unittest.cc
98
const scoped_refptr<
RefCountedString
>& json,
[
all
...]
trace_event_unittest.cc
74
const scoped_refptr<base::
RefCountedString
>& events_str,
183
const scoped_refptr<base::
RefCountedString
>& events_str,
[
all
...]
/external/libmojo/base/trace_event/
trace_event_android.cc
83
const scoped_refptr<
RefCountedString
>&,
/external/libchrome/base/test/
trace_event_analyzer_unittest.cc
29
const scoped_refptr<base::
RefCountedString
>& json_events_str,
46
const scoped_refptr<base::
RefCountedString
>& json_events_str,
[
all
...]
Completed in 941 milliseconds