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

  /external/chromium/base/
nullable_string16.h 16 NullableString16() : is_null_(false) { }
17 explicit NullableString16(bool is_null) : is_null_(is_null) { }
19 : string_(string), is_null_(is_null) {
23 bool is_null() const { return is_null_; }
27 bool is_null_; member in class:NullableString16
  /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/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:__anon5288::RelativeTime

Completed in 497 milliseconds