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

/external/chromium_org/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()) {
/external/chromium_org/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/chromium_org/chrome/browser/ui/webui/options/
H A Dfont_settings_handler.cc204 bool has_value = font->GetString(1, &value); local
205 DCHECK(has_value);
/external/chromium_org/content/browser/device_sensors/
H A Ddata_fetcher_shared_memory_win.cc77 double* value, bool* has_value) {
84 *has_value = true;
87 *has_value = false;
76 GetSensorValue(REFPROPERTYKEY property, ISensorDataReport* new_data, double* value, bool* has_value) argument
/external/chromium_org/chrome/browser/
H A Dabout_flags_unittest.cc69 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/webrtc/base/
H A Dwin32regkey.cc761 bool has_value = false; local
769 has_value = key.HasValue(value_name);
773 return has_value;
/external/chromium_org/extensions/browser/api/declarative_webrequest/
H A Dwebrequest_action.cc240 bool has_value = dict->GetString(keys::kValueKey, &value); local
245 if (has_value && !net::HttpUtil::IsValidHeaderValue(value)) {
251 new WebRequestRemoveResponseHeaderAction(name, value, has_value));
932 bool has_value)
939 has_value_(has_value) {}
929 WebRequestRemoveResponseHeaderAction( const std::string& name, const std::string& value, bool has_value) argument
/external/chromium_org/third_party/mesa/src/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/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/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/qemu/tcg/
H A Dtcg.h150 int has_value; member in struct:TCGLabel
/external/chromium_org/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

Completed in 7361 milliseconds