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

  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/utf/
unicodetext.cc 111 if (capacity_ >= new_capacity && ours_) return;
120 if (ours_) delete[] data_; // If we owned the old buffer, free it.
123 ours_ = true; // We own the new buffer.
131 if (!ours_ || new_size > capacity_) reserve(new_size);
135 ours_ = true;
142 if (ours_) delete[] data_;
145 ours_ = true;
155 if (ours_ && data_) delete[] data_; // If we owned the old buffer, free it.
159 ours_ = true;
163 if (ours_ && data_) delete[] data_; // If we owned the old buffer, free it
    [all...]
unicodetext.h 333 bool ours_; // Do we own data_? member in class:i18n::phonenumbers::UnicodeText::Repr
335 Repr() : data_(NULL), size_(0), capacity_(0), ours_(true) {}
336 ~Repr() { if (ours_) delete[] data_; }

Completed in 45 milliseconds