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

1 2

  /frameworks/base/tools/aapt2/optimize/
ResourceDeduper_test.cpp 22 using ::aapt::test::HasValue;
54 EXPECT_THAT(table, Not(HasValue("android:string/dedupe", ldrtl_config)));
55 EXPECT_THAT(table, Not(HasValue("android:string/dedupe", land_config)));
57 EXPECT_THAT(table, HasValue("android:string/dedupe2", ldrtl_v21_config));
58 EXPECT_THAT(table, Not(HasValue("android:string/dedupe2", ldrtl_config)));
60 EXPECT_THAT(table, HasValue("android:string/dedupe3", default_config));
61 EXPECT_THAT(table, HasValue("android:string/dedupe3", en_config));
62 EXPECT_THAT(table, Not(HasValue("android:string/dedupe3", en_v21_config)));
82 EXPECT_THAT(table, HasValue("android:string/keep", ldrtl_config));
83 EXPECT_THAT(table, HasValue("android:string/keep", ldrtl_v21_config))
    [all...]
  /external/autotest/frontend/client/src/autotest/afe/
ICheckBox.java 6 import com.google.gwt.user.client.ui.HasValue;
8 public interface ICheckBox extends HasText, HasValue<Boolean>, HasClickHandlers {
IRadioButton.java 4 import com.google.gwt.user.client.ui.HasValue;
7 public interface IRadioButton extends HasValue<Boolean>, HasText {
HostSelectorDisplay.java 11 import com.google.gwt.user.client.ui.HasValue;
102 public HasValue<Boolean> getAllowOneTimeHostsField() {
HostSelector.java 23 import com.google.gwt.user.client.ui.HasValue;
54 public HasValue<Boolean> getAllowOneTimeHostsField();
  /external/v8/src/compiler/
node-matchers.h 61 bool HasValue() const { return has_value_; }
63 DCHECK(HasValue());
118 return this->HasValue() && this->Value() == value;
121 return this->HasValue() && low <= this->Value() && this->Value() <= high;
124 return this->HasValue() && (this->Value() % n) == 0;
127 return this->HasValue() && this->Value() > 0 &&
131 return this->HasValue() && this->Value() < 0 &&
134 bool IsNegative() const { return this->HasValue() && this->Value() < 0; }
156 return this->HasValue() && this->Value() == value;
159 return this->HasValue() && low <= this->Value() && this->Value() <= high
    [all...]
simplified-operator-reducer.cc 23 if (m.HasValue()) {
60 if (m.HasValue()) return ReplaceInt32(m.Value()->BooleanValue());
66 if (m.HasValue()) return ReplaceNumber(m.Value());
73 if (m.HasValue()) return ReplaceNumber(m.Value());
82 if (m.HasValue()) return ReplaceFloat64(m.Value());
97 if (m.HasValue()) return ReplaceInt32(DoubleToInt32(m.Value()));
108 if (m.HasValue()) return ReplaceUint32(DoubleToUint32(m.Value()));
117 if (m.HasValue()) return ReplaceNumber(FastUI2D(m.Value()));
122 if (m.HasValue()) return ReplaceInt32(DoubleToInt32(m.Value()));
134 if (m.HasValue() && IsInt32Double(m.Value()))
    [all...]
machine-operator-reducer.cc 291 if (m.left().IsWord32Sar() && m.right().HasValue()) {
293 if (mleft.right().HasValue()) {
474 if (m.HasValue()) return ReplaceFloat64(base::ieee754::acos(m.Value()));
479 if (m.HasValue()) return ReplaceFloat64(base::ieee754::acosh(m.Value()));
484 if (m.HasValue()) return ReplaceFloat64(base::ieee754::asin(m.Value()));
489 if (m.HasValue()) return ReplaceFloat64(base::ieee754::asinh(m.Value()));
494 if (m.HasValue()) return ReplaceFloat64(base::ieee754::atan(m.Value()));
499 if (m.HasValue()) return ReplaceFloat64(base::ieee754::atanh(m.Value()));
518 if (m.HasValue()) return ReplaceFloat64(base::ieee754::cbrt(m.Value()));
523 if (m.HasValue()) return ReplaceFloat64(base::ieee754::cos(m.Value()))
    [all...]
control-flow-optimizer.cc 79 if (!m.right().HasValue()) return false;
103 if (!m1.right().HasValue()) break;
node-properties.cc 336 if (m.HasValue()) {
360 if (mtarget.HasValue() && mnewtarget.HasValue()) {
386 if (m.HasValue()) {
js-inlining-heuristic.cc 28 if (m.HasValue() && m.Value()->IsJSFunction()) {
37 if (!m.HasValue() || !m.Value()->IsJSFunction()) return 0;
code-assembler.cc 213 if (m.HasValue() &&
225 if (m.HasValue()) out_value = m.Value();
226 return m.HasValue();
236 if (m.HasValue()) {
249 if (m.HasValue()) out_value = m.Value();
250 return m.HasValue();
js-native-context-specialization.cc 121 if (m.left().HasValue() && m.left().Value()->IsString() &&
122 m.right().HasValue() && m.right().Value()->IsString()) {
146 if (!m.HasValue()) return NoChange();
184 if (!m.HasValue() || !m.Value()->IsJSObject()) return NoChange();
267 if (m.HasValue() && m.Value()->IsJSBoundFunction()) {
    [all...]
js-call-reducer.cc 283 if (!receiver.HasValue()) {
360 DCHECK(m.HasValue() && m.Value()->IsJSFunction());
499 if (m.HasValue()) {
673 if (m.HasValue()) {
    [all...]
  /external/webrtc/webrtc/base/
win32regkey_unittest.cc 207 EXPECT_TRUE(r_key.HasValue(kValNameInt));
224 EXPECT_FALSE(r_key.HasValue(kValNameInt));
230 EXPECT_TRUE(r_key.HasValue(kValNameInt64));
240 EXPECT_FALSE(r_key.HasValue(kValNameInt64));
246 EXPECT_TRUE(r_key.HasValue(kValNameStr));
265 EXPECT_FALSE(r_key.HasValue(kValNameInt));
273 EXPECT_TRUE(r_key.HasValue(kValNameBinary));
294 EXPECT_FALSE(r_key.HasValue(kValNameBinary));
388 EXPECT_TRUE(RegKey::HasValue(kFullRkey1, kValNameInt));
402 EXPECT_FALSE(RegKey::HasValue(kFullRkey1, kValNameInt))
    [all...]
win32regkey.h 64 bool HasValue(const wchar_t* value_name) const;
153 static bool HasValue(const wchar_t* full_key_name, const wchar_t* value_name);
  /external/clang/test/SemaTemplate/
default-arguments-cxx0x.cpp 20 struct HasValue {
26 int &ir = f1(HasValue());
  /art/cmdline/
cmdline_parse_result.h 107 bool HasValue() const {
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_emulate_loops.c 47 int HasValue;
104 value->HasValue = 1;
218 counter_value.HasValue = 0;
224 if(!counter_value.HasValue){
  /frameworks/base/tools/aapt2/test/
Common.h 242 MATCHER_P(HasValue, name,
248 MATCHER_P2(HasValue, name, config,
  /external/v8/src/compiler/mips64/
instruction-selector-mips64.cc 494 m.right().HasValue()) {
505 if (mleft.right().HasValue()) {
523 if (m.right().HasValue()) {
544 m.right().HasValue()) {
555 if (mleft.right().HasValue()) {
577 if (m.right().HasValue()) {
610 if (!mleft.right().HasValue()) {
634 if (!mleft.right().HasValue()) {
661 if (mleft.right().HasValue()) {
686 if (m.left().IsWord32And() && m.right().HasValue()) {
    [all...]
  /external/v8/src/compiler/mips/
instruction-selector-mips.cc 69 if (!m.HasValue()) return false;
387 m.right().HasValue()) {
398 if (mleft.right().HasValue()) {
420 if (m.right().HasValue()) {
446 if (!mleft.right().HasValue()) {
473 if (mleft.right().HasValue()) {
498 if (m.left().IsWord32And() && m.right().HasValue()) {
501 if (mleft.right().HasValue()) {
525 if (m.right().HasValue() && mleft.right().HasValue()) {
    [all...]
  /external/flatbuffers/tests/FlatBuffers.Test/
FlatBuffersExampleTests.cs 217 Assert.IsFalse(monster.GetTestarrayofboolsBytes().HasValue);
221 Assert.IsTrue(monster.GetTestarrayofboolsBytes().HasValue);
  /external/v8/src/compiler/arm64/
instruction-selector-arm64.cc 501 if (m.right().HasValue() && (m.right().Value() < 0) &&
518 if (m->right().HasValue() && m->right().Value() >= 3) {
    [all...]
  /external/v8/src/compiler/ia32/
instruction-selector-ia32.cc 413 if (mlength.HasValue() && moffset.right().HasValue() &&
422 if (mmlength.HasValue() && moffset.right().HasValue() &&
495 if (mlength.HasValue() && moffset.right().HasValue() &&
504 if (mmlength.HasValue() && moffset.right().HasValue() &&
    [all...]

Completed in 1058 milliseconds

1 2