Searched refs:has_value (Results 1 - 25 of 52) sorted by relevance

123

/external/chromium_org/build/android/pylib/instrumentation/
H A Dtest_jar.py79 has_value = False
105 has_value = False
108 if not has_value:
111 has_value = True
118 has_value = False
/external/chromium_org/v8/src/
H A Dglobals.h430 Maybe() : has_value(false) {}
431 explicit Maybe(T t) : has_value(true), value(t) {}
432 Maybe(bool has, T t) : has_value(has), value(t) {}
434 bool has_value; member in struct:v8::internal::Maybe
H A Dhydrogen-representation-changes.cc55 if (res.has_value) new_value = res.value;
/external/chromium/chrome/browser/sync/glue/
H A Dautofill_change_processor.cc217 if (autofill.has_value() ||
243 if (autofill.has_value() ||
266 if (autofill_changes_[i].autofill_.has_value()) {
278 if (autofill_changes_[i].autofill_.has_value()) {
H A Dautofill_model_associator.cc269 if (autofill.has_value()) {
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dfont_settings_handler.cc161 bool has_value = font->GetString(1, &value); local
162 DCHECK(has_value);
/external/chromium_org/chrome/browser/webdata/
H A Dautocomplete_syncable_service.cc281 if (autofill.has_value()) {
356 if (!autofill_specifics.has_value()) {
/external/chromium_org/content/renderer/browser_plugin/
H A Dbrowser_plugin_browsertest.cc220 bool has_value = ExecuteScriptAndReturnBool( local
222 EXPECT_TRUE(has_value);
/external/chromium_org/sync/internal_api/public/base/
H A Dunique_position_unittest.cc119 EXPECT_TRUE(proto.has_value());
141 EXPECT_FALSE(proto.has_value());
H A Dunique_position.cc49 } else if (proto.has_value() && !proto.value().empty()) {
/external/chromium/chrome/browser/policy/
H A Duser_policy_cache.cc202 if (named_value->has_value()) {
/external/chromium_org/chrome/browser/extensions/api/declarative_webrequest/
H A Dwebrequest_action.cc211 bool has_value = dict->GetString(keys::kValueKey, &value); local
213 new WebRequestRemoveResponseHeaderAction(name, value, has_value));
884 bool has_value)
891 has_value_(has_value) {}
881 WebRequestRemoveResponseHeaderAction( const std::string& name, const std::string& value, bool has_value) argument
H A Dwebrequest_action.h354 bool has_value);
/external/chromium_org/chrome/browser/metrics/variations/
H A Dvariations_seed_processor.cc202 if (experiment.param(j).has_name() && experiment.param(j).has_value())
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dwin32regkey.cc778 bool has_value = false; local
786 has_value = key.HasValue(value_name);
790 return has_value;
/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))
H A Dir_constant_expression.cpp148 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]);
/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))
H A Dir_constant_expression.cpp148 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]);
/external/qemu/tcg/
H A Dtcg.h76 int has_value; member in struct:TCGLabel
H A Dtcg.c120 if (l->has_value) {
143 if (l->has_value)
150 l->has_value = 1;
164 l->has_value = 0;
/external/qemu/tcg/hppa/
H A Dtcg-target.c717 if (l->has_value) {
770 if (l->has_value) {
/external/qemu/tcg/ppc/
H A Dtcg-target.c1067 if (l->has_value)
1318 if (l->has_value) {
/external/qemu/tcg/ppc64/
H A Dtcg-target.c1170 if (l->has_value)
1226 if (l->has_value) {
/external/qemu/tcg/sparc/
H A Dtcg-target.c476 if (l->has_value) {
492 if (l->has_value) {

Completed in 561 milliseconds

123