HomeSort by relevance Sort by last modified time
    Searched full:has_value (Results 1 - 25 of 25) sorted by null

  /external/v8/testing/
gmock-support.h 18 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()) {
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/env/
variable.hpp 71 if( has_value() )
77 bool has_value() const { return m_data->m_value; } function in class:boost::BOOST_RT_PARAM_NAMESPACE::environment::variable_base
119 if( !has_value() )
136 if( v.has_value() )
148 return ev.has_value() && ev.value() == v;
157 return ev.has_value() && ev.value() == v;
166 return !ev.has_value() || ev.value() != v;
175 return !ev.has_value() || ev.value() != v;
  /external/v8/test/cctest/
test-flags.cc 67 CHECK(FLAG_testing_maybe_bool_flag.has_value);
84 CHECK(FLAG_testing_maybe_bool_flag.has_value);
104 CHECK(FLAG_testing_maybe_bool_flag.has_value);
121 CHECK(FLAG_testing_maybe_bool_flag.has_value);
137 CHECK(!FLAG_testing_maybe_bool_flag.has_value);
145 CHECK(!FLAG_testing_maybe_bool_flag.has_value);
test-mark-compact.cc 171 CHECK(maybe.has_value);
191 CHECK(maybe.has_value);
test-heap.cc 195 CHECK(maybe.has_value);
264 CHECK(maybe.has_value);
284 CHECK(maybe.has_value);
643 CHECK(maybe.has_value);
649 CHECK(maybe.has_value);
655 CHECK(maybe.has_value);
662 CHECK(maybe.has_value);
665 CHECK(maybe.has_value);
671 CHECK(maybe.has_value);
675 CHECK(maybe.has_value);
    [all...]
  /external/v8/src/
contexts.cc 82 DCHECK(attrs.has_value || isolate->has_pending_exception());
83 if (!attrs.has_value || attrs.value == ABSENT) return attrs;
97 if (!blacklist.has_value) {
152 if (!maybe.has_value) return Handle<Object>();
i18n.cc 398 CHECK(maybe.has_value);
408 CHECK(maybe.has_value);
722 CHECK(maybe.has_value);
798 CHECK(maybe.has_value);
855 CHECK(maybe.has_value);
916 CHECK(maybe.has_value);
    [all...]
flags.cc 116 return maybe_bool_variable()->has_value == false;
190 os << (flag.maybe_bool_variable()->has_value
flag-definitions.h 96 static MaybeBoolFlag Create(bool has_value, bool value) {
98 flag.has_value = has_value;
102 bool has_value; member in struct:MaybeBoolFlag
    [all...]
hydrogen-representation-changes.cc 32 if (res.has_value) new_value = res.value;
runtime.cc     [all...]
objects.cc     [all...]
gdb-jit.cc     [all...]
api.cc     [all...]
objects-inl.h     [all...]
hydrogen.cc     [all...]
  /external/v8/src/ic/
ic-state.cc 47 if (fixed_right_arg_.has_value) {
63 HasFixedRightArgField::encode(fixed_right_arg_.has_value);
64 if (fixed_right_arg_.has_value) {
85 state.fixed_right_arg_.has_value = false; \
280 state.fixed_right_arg_.has_value = true; \
319 if (s.fixed_right_arg_.has_value) {
342 (result_kind_ == NONE || !fixed_right_arg_.has_value);
  /external/mesa3d/src/glsl/
ir.h 204 * \sa ir_constant::has_value, ir_rvalue::is_one, ir_rvalue::is_negative_one,
217 * \sa ir_constant::has_value, ir_rvalue::is_zero, ir_rvalue::is_negative_one,
230 * \sa ir_constant::has_value, ir_rvalue::is_zero, ir_rvalue::is_one
244 * \sa ir_constant::has_value, ir_rvalue::is_zero, ir_rvalue::is_one,
    [all...]
ir_constant_expression.cpp 148 return new(ctx) ir_constant(op[0]->has_value(op[1]));
150 return new(ctx) ir_constant(!op[0]->has_value(op[1]));
807 data.b[0] = op[0]->has_value(op[1]);
810 data.b[0] = !op[0]->has_value(op[1]);
    [all...]
ir.cpp 966 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))
    [all...]
linker.cpp 509 if (!var->constant_initializer->has_value(existing->constant_initializer)) {
    [all...]
  /external/mesa3d/docs/
relnotes-7.9.1.html 218 <li>glsl: Fix flipped return of has_value() for array constants.</li>
relnotes-7.10.html     [all...]
  /external/v8/include/
v8.h 891 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
    [all...]
  /external/lldb/source/Core/
ValueObject.cpp 3372 const bool has_value = type_flags.Test (ClangASTType::eTypeHasValue); local
    [all...]

Completed in 1804 milliseconds