Searched refs:is_null_ (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/base/strings/
H A Dnullable_string16.h20 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/
H A Dstring.h20 String() : is_null_(true) {}
21 String(const std::string& str) : value_(str), is_null_(false) {}
22 String(const char* chars) : is_null_(!chars) {
28 is_null_(false) {
31 String(const char chars[N]) : value_(chars, N-1), is_null_(false) {}
45 is_null_ = false;
49 is_null_ = !chars;
60 is_null_ = true;
63 bool is_null() const { return is_null_; }
76 std::swap(is_null_, othe
93 bool is_null_; member in class:mojo::String
[all...]
H A Darray.h35 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_; }
83 is_null_ = false;
88 is_null_ = false;
100 std::swap(is_null_, other->is_null_);
104 is_null_
121 bool is_null_; member in class:mojo::Array
[all...]
H A Dstruct_ptr.h98 InlinedStructPtr() : is_null_(true) {}
101 InlinedStructPtr(RValue other) : is_null_(true) { Take(other.object); }
113 is_null_ = true;
118 bool is_null() const { return is_null_; }
121 MOJO_DCHECK(!is_null_);
125 MOJO_DCHECK(!is_null_);
132 std::swap(is_null_, other->is_null_);
139 operator Testable() const { return is_null_ ? 0 : &InlinedStructPtr::value_; }
143 void Initialize() { is_null_
151 bool is_null_; member in class:mojo::InlinedStructPtr
[all...]
/external/chromium_org/chrome/browser/net/
H A Dload_timing_browsertest.cc55 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:__anon4336::RelativeTime

Completed in 119 milliseconds