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

  /external/chromium_org/base/strings/
nullable_string16.h 20 NullableString16() : is_null_(true) { }
22 : string_(string), is_null_(is_null) {
26 bool is_null() const { return is_null_; }
30 bool is_null_; member in class:base::NullableString16
  /external/chromium_org/mojo/public/cpp/bindings/
struct_ptr.h 96 InlinedStructPtr() : is_null_(true) {}
99 InlinedStructPtr(RValue other) : is_null_(true) { Take(other.object); }
111 is_null_ = true;
116 bool is_null() const { return is_null_; }
119 assert(!is_null_);
123 assert(!is_null_);
130 std::swap(is_null_, other->is_null_);
137 operator Testable() const { return is_null_ ? 0 : &InlinedStructPtr::value_; }
141 void Initialize() { is_null_ = false;
149 bool is_null_; member in class:mojo::InlinedStructPtr
    [all...]
string.h 22 String() : is_null_(true) {}
23 String(const std::string& str) : value_(str), is_null_(false) {}
24 String(const char* chars) : is_null_(!chars) {
30 is_null_(false) {
33 String(const char chars[N]) : value_(chars, N-1), is_null_(false) {}
47 is_null_ = false;
51 is_null_ = !chars;
62 is_null_ = true;
65 bool is_null() const { return is_null_; }
78 std::swap(is_null_, other->is_null_)
95 bool is_null_; member in class:mojo::String
    [all...]
array.h 35 Array() : is_null_(true) {}
36 explicit Array(size_t size) : vec_(size), is_null_(false) {
41 Array(RValue other) : is_null_(true) { Take(other.object); }
66 is_null_ = true;
69 bool is_null() const { return is_null_; }
80 is_null_ = false;
85 is_null_ = false;
97 std::swap(is_null_, other->is_null_);
101 is_null_ = false
118 bool is_null_; member in class:mojo::Array
    [all...]
  /external/chromium_org/chrome/browser/net/
load_timing_browsertest.cc 55 RelativeTime() : is_null_(true) {
60 : is_null_(false),
66 if (is_null_)
71 bool is_null() const { return is_null_; }
76 EXPECT_FALSE(is_null_);
81 bool is_null_; member in class:__anon8891::RelativeTime

Completed in 145 milliseconds