Searched defs:RefCountedString (Results 1 - 2 of 2) sorted by path

/external/chromium_org/base/memory/
H A Dref_counted_memory.cc62 RefCountedString::RefCountedString() {} function in class:base::RefCountedString
64 RefCountedString::~RefCountedString() {}
67 RefCountedString* RefCountedString::TakeString(std::string* to_destroy) {
68 RefCountedString* self = new RefCountedString;
73 const unsigned char* RefCountedString::front() const {
78 size_t RefCountedString
[all...]
H A Dref_counted_memory.h100 class BASE_EXPORT RefCountedString : public RefCountedMemory { class in namespace:base
102 RefCountedString();
104 // Constructs a RefCountedString object by performing a swap. (To non
105 // destructively build a RefCountedString, use the default constructor and
107 static RefCountedString* TakeString(std::string* to_destroy);
117 virtual ~RefCountedString();
121 DISALLOW_COPY_AND_ASSIGN(RefCountedString);

Completed in 224 milliseconds