Searched defs:has_value (Results 1 - 6 of 6) sorted by path

/external/lldb/source/Core/
H A DValueObject.cpp3372 const bool has_value = type_flags.Test (ClangASTType::eTypeHasValue); local
3374 const bool print_valobj = options.m_flat_output == false || has_value;
/external/mesa3d/src/glsl/
H A Dir.cpp966 ir_constant::has_value(const ir_constant *c) const function in class:ir_constant
973 if (!this->array_elements[i]->has_value(c->array_elements[i]))
989 if (!a_field->has_value(b_field))
/external/v8/include/
H A Dv8.h891 Maybe() : has_value(false) {}
892 explicit Maybe(T t) : has_value(true), value(t) {}
893 Maybe(bool has, T t) : has_value(has), value(t) {}
895 bool has_value; member in struct:v8::Maybe
/external/v8/src/
H A Dflag-definitions.h96 static MaybeBoolFlag Create(bool has_value, bool value) { argument
98 flag.has_value = has_value;
102 bool has_value; member in struct:MaybeBoolFlag
H A Dgdb-jit.cc1286 bool has_value,
1293 if (has_value) {
1284 WriteVariableAbbreviation(Writer* w, int abbreviation_code, bool has_value, bool is_parameter) argument
/external/v8/testing/
H A Dgmock-support.h18 bool has_value() const { return has_value_; } function in class:testing::Capture
21 DCHECK(!has_value());
41 if (capture_->has_value()) *os << " which has value " << capture_->value();
45 if (!capture_->has_value()) {

Completed in 272 milliseconds