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

1 2

  /external/chromium_org/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()) {
  /external/chromium_org/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-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...]
test-mark-compact.cc 171 CHECK(maybe.has_value);
191 CHECK(maybe.has_value);
  /external/chromium_org/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>();
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...]
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
hydrogen-representation-changes.cc 32 if (res.has_value) new_value = res.value;
  /external/chromium_org/content/browser/device_sensors/
data_fetcher_shared_memory_win.cc 77 double* value, bool* has_value) {
84 *has_value = true;
87 *has_value = false;
  /external/chromium_org/chrome/browser/ui/webui/options/
font_settings_handler.cc 204 bool has_value = font->GetString(1, &value); local
205 DCHECK(has_value);
  /external/chromium_org/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/chromium_org/chrome/browser/webdata/
autocomplete_syncable_service.cc 254 if (autofill.has_value())
321 if (!autofill_specifics.has_value()) {
  /external/chromium_org/components/variations/
variations_seed_processor.cc 26 if (experiment.param(i).has_name() && experiment.param(i).has_value())
  /external/chromium_org/extensions/browser/api/declarative_webrequest/
webrequest_action.cc 240 bool has_value = dict->GetString(keys::kValueKey, &value); local
245 if (has_value && !net::HttpUtil::IsValidHeaderValue(value)) {
251 new WebRequestRemoveResponseHeaderAction(name, value, has_value));
    [all...]
webrequest_action.h 356 bool has_value);
  /external/chromium_org/sync/internal_api/public/base/
unique_position_unittest.cc 119 EXPECT_TRUE(proto.has_value());
141 EXPECT_FALSE(proto.has_value());
unique_position.cc 58 } else if (proto.has_value() && !proto.value().empty()) {
  /external/chromium_org/chrome/browser/
about_flags_unittest.cc 69 const bool has_value = reader->NodeAttribute("value", &value_str); local
71 if (!has_value) {
85 if (has_value && !base::StringToInt(value_str, &value)) {
  /external/chromium_org/third_party/mesa/src/src/glsl/
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...]
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...]
  /external/chromium_org/third_party/webrtc/base/
win32regkey.cc 761 bool has_value = false; local
769 has_value = key.HasValue(value_name);
773 return has_value;
  /external/mesa3d/src/glsl/
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...]
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...]
  /external/chromium_org/sync/engine/
model_type_sync_worker_impl_unittest.cc     [all...]

Completed in 894 milliseconds

1 2