Searched refs:has_value_ (Results 1 - 4 of 4) sorted by relevance
/external/webrtc/webrtc/base/ |
H A D | optional.h | 65 Optional() : has_value_(false) {} 68 explicit Optional(const T& val) : value_(val), has_value_(true) {} 69 explicit Optional(T&& val) : value_(std::move(val)), has_value_(true) {} 75 : value_(std::move(m.value_)), has_value_(m.has_value_) {} 82 has_value_ = m.has_value_; 89 swap(m1.has_value_, m2.has_value_); 93 explicit operator bool() const { return has_value_; } 134 bool has_value_; member in class:rtc::final [all...] |
/external/v8/testing/ |
H A D | gmock-support.h | 19 Capture() : value_(), has_value_(false) {} 22 bool has_value() const { return has_value_; } 27 has_value_ = true; 32 bool has_value_; member in class:testing::Capture
|
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/ |
H A D | kv_pb.py | 27 has_value_ = 0 variable in class:KeyValue 49 self.has_value_ = 1 53 if self.has_value_: 54 self.has_value_ = 0 57 def has_value(self): return self.has_value_ 96 if self.has_value_ != x.has_value_: return 0 97 if self.has_value_ and self.value_ != x.value_: return 0 106 if (not self.has_value_): 123 if (self.has_value_) [all...] |
/external/v8/src/compiler/ |
H A D | node-matchers.h | 52 : NodeMatcher(node), value_(), has_value_(opcode() == kOpcode) { 53 if (has_value_) { 58 bool HasValue() const { return has_value_; } 66 bool has_value_; member in struct:v8::internal::compiler::ValueMatcher 75 has_value_(opcode() == IrOpcode::kInt32Constant) { 76 if (has_value_) { 84 : NodeMatcher(node), value_(), has_value_(false) { 87 has_value_ = true; 90 has_value_ = true; 98 : NodeMatcher(node), value_(), has_value_(fals [all...] |
Completed in 209 milliseconds