HomeSort by relevance Sort by last modified time
    Searched defs:RefCountedString (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/base/memory/
ref_counted_memory.h 92 class BASE_EXPORT RefCountedString : public RefCountedMemory {
94 RefCountedString();
96 // Constructs a RefCountedString object by performing a swap. (To non
97 // destructively build a RefCountedString, use the default constructor and
99 static RefCountedString* TakeString(std::string* to_destroy);
109 virtual ~RefCountedString();
113 DISALLOW_COPY_AND_ASSIGN(RefCountedString);
ref_counted_memory.cc 57 RefCountedString::RefCountedString() {}
59 RefCountedString::~RefCountedString() {}
62 RefCountedString* RefCountedString::TakeString(std::string* to_destroy) {
63 RefCountedString* self = new RefCountedString;
68 const unsigned char* RefCountedString::front() const {
73 size_t RefCountedString::size() const
    [all...]

Completed in 37 milliseconds