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.cc 62 RefCountedString::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::size() const
    [all...]
ref_counted_memory.h 100 class BASE_EXPORT RefCountedString : public RefCountedMemory {
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 448 milliseconds