Searched defs:has_value (Results 1 - 18 of 18) sorted by relevance

/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.helper/
H A Dtuple_size_value_sfinae.pass.cpp25 constexpr bool has_value(int) { return true; } function
26 template <class> constexpr bool has_value(long) { return false; } function
27 template <class T> constexpr bool has_value() { return has_value<T>(0); } function
33 static_assert(has_value<std::tuple<int> const>(), "");
34 static_assert(has_value<std::pair<int, long> volatile>(), "");
35 static_assert(!has_value<int>(), "");
36 static_assert(!has_value<const int>(), "");
37 static_assert(!has_value<volatile void>(), "");
38 static_assert(!has_value<cons
[all...]
/external/tensorflow/tensorflow/contrib/boosted_trees/lib/utils/
H A Doptional_value.h32 bool has_value() const { return has_value_; } function in class:tensorflow::boosted_trees::utils::OptionalValue
34 QCHECK(has_value());
/external/v8/testing/
H A Dgmock-support.h22 bool has_value() const { return has_value_; } function in class:testing::Capture
25 DCHECK(!has_value());
45 if (capture_->has_value()) *os << " which has value " << capture_->value();
49 if (!capture_->has_value()) {
/external/autotest/client/cros/
H A Dkernel_config.py56 def has_value(self, name, value): member in class:KernelConfig
70 self.has_value(name, ['y'])
78 self.has_value(name, ['m'])
86 self.has_value(name, ['y', 'm'])
94 self.has_value(name, [None])
/external/v8/src/
H A Dproperty-descriptor.h36 return desc->has_value() || desc->has_writable();
57 !has_value() && !has_get() && !has_set();
61 return has_configurable() && has_enumerable() && !has_value() &&
66 return has_configurable() && has_enumerable() && has_value() &&
86 bool has_value() const { return !value_.is_null(); } function in class:v8::internal::PropertyDescriptor
H A Dflag-definitions.h113 static MaybeBoolFlag Create(bool has_value, bool value) { argument
115 flag.has_value = has_value;
119 bool has_value; member in struct:MaybeBoolFlag
H A Dgdb-jit.cc1330 bool has_value,
1337 if (has_value) {
1328 WriteVariableAbbreviation(Writer* w, int abbreviation_code, bool has_value, bool is_parameter) argument
H A Dapi.cc4215 DCHECK(private_->desc.has_value());
4229 bool v8::PropertyDescriptor::has_value() const { function in class:v8::v8::PropertyDescriptor
4230 return private_->desc.has_value();
/external/chromium-trace/catapult/devil/devil/android/sdk/
H A Dshared_prefs.py59 def has_value(self): member in class:BasePref
/external/libchrome/base/
H A Doptional.h209 constexpr bool has_value() const { return !storage_.is_null_; } function in class:base::Optional
/external/libmojo/third_party/catapult/devil/devil/android/sdk/
H A Dshared_prefs.py55 def has_value(self): member in class:BasePref
/external/pdfium/third_party/base/
H A Doptional.h209 constexpr bool has_value() const { return !storage_.is_null_; } function in class:pdfium::Optional
/external/protobuf/src/google/protobuf/
H A Dmap_entry_lite.h174 size += has_value() ? kTagSize + ValueTypeHandler::ByteSize(value()) : 0;
194 size += has_value()
229 if (from.has_value()) {
279 bool has_value() const { return (_has_bits_[0] & 0x00000002u) != 0; } function in class:google::protobuf::internal::MapEntryLite
H A Dtype.pb.cc3077 if (this->has_value()) {
3100 if (this->has_value()) {
3122 if (this->has_value()) {
3156 if (from.has_value()) {
3247 bool Option::has_value() const { function in class:google::protobuf::Option
H A Dtype.pb.h830 bool has_value() const;
1653 inline bool Option::has_value() const { function in class:google::protobuf::Option
/external/webrtc/webrtc/base/
H A Dwin32regkey.cc761 bool has_value = false; local
769 has_value = key.HasValue(value_name);
773 return has_value;
/external/mesa3d/src/compiler/glsl/
H A Dir.cpp1059 ir_constant::has_value(const ir_constant *c) const function in class:ir_constant
1066 if (!this->array_elements[i]->has_value(c->array_elements[i]))
1082 if (!a_field->has_value(b_field))
/external/tensorflow/tensorflow/core/common_runtime/
H A Dexecutor.cc791 // TODO(yuanbyu): A better way to do "has_value"?
797 has_value(other.has_value),
815 has_value = other.has_value;
831 has_value = other.has_value;
846 has_value = false;
857 bool has_value = false; member in struct:tensorflow::__anon26154::ExecutorState::Entry
1732 if (!entry->has_value) {
[all...]

Completed in 905 milliseconds