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 54 RelativeTime() : is_null_(true) {
59 : is_null_(false),
65 if (is_null_)
70 bool is_null() const { return is_null_; }
75 EXPECT_FALSE(is_null_);
80 bool is_null_; member in class:__anon7779::RelativeTime

Completed in 173 milliseconds