HomeSort by relevance Sort by last modified time
    Searched refs:int_value (Results 26 - 50 of 61) sorted by null

12 3

  /external/webrtc/talk/media/base/
codec_unittest.cc 237 int int_value = 0; local
238 EXPECT_TRUE(codec.GetParam("a", &int_value));
239 EXPECT_EQ(1, int_value);
240 EXPECT_FALSE(codec.GetParam("b", &int_value));
241 EXPECT_FALSE(codec.GetParam("c", &int_value));
  /external/libchrome/dbus/
values_util.cc 224 int int_value = 0; local
225 bool success = value.GetAsInteger(&int_value);
227 writer->AppendInt32(int_value);
  /external/autotest/server/cros/ap_configurators/
buffalo_ap_configurator.py 311 int_value = 0 if visible else 1
312 xpath = '//input[@value="%d" and @name="ath0_closed"]' % int_value
buffaloag300h_ap_configurator.py 214 int_value = 0 if visible else 1
215 xpath = ('//input[@value="%d" and @name="%s"]' % (int_value, button))
dlink_dir655_ap_configurator.py 295 int_value = 1 if visible else 0
297 'and @name="wlan0_ssid_broadcast"]' % int_value)
keeboxw150nr_ap_configurator.py 99 int_value = int(enabled)
101 int_value)
linksys_ap_configurator.py 206 int_value = int(visible)
207 xpath = ('//input[@value="%d" and @name="wl_closed"]' % int_value)
linksyse_dual_band_configurator.py 265 int_value = 0 if visible else 1
266 xpath = ('//input[@value="%d" and @name="%s"]' % (int_value, button))
linksyse_single_band_configurator.py 271 int_value = 0 if visible else 1
272 xpath = ('//input[@value="%d" and @name="closed_24g"]' % int_value)
linksyswrt600_ap_configurator.py 199 int_value = 0 if visible else 1
200 xpath = ('//input[@value="%d" and @name="wl_hide_ssid"]' % int_value)
medialink_ap_configurator.py 233 int_value = int(visible)
234 xpath = '//input[@name="broadcastssid" and @value="%d"]' % int_value
trendnet_ap_configurator.py 215 int_value = int(visible)
216 xpath = ('//input[@value="%d" and @name="broadcastssid"]' % int_value)
  /external/libchrome/base/
values_unittest.cc 71 int int_value = 0; local
77 ASSERT_FALSE(mixed_list->GetInteger(0, &int_value));
78 ASSERT_EQ(0, int_value);
83 ASSERT_FALSE(mixed_list->GetInteger(2, &int_value));
84 ASSERT_EQ(0, int_value);
90 ASSERT_TRUE(mixed_list->GetInteger(1, &int_value));
91 ASSERT_EQ(42, int_value);
105 ASSERT_TRUE((*mixed_list->Find(sought_value))->GetAsInteger(&int_value));
106 ASSERT_EQ(42, int_value);
    [all...]
  /external/libweave/third_party/chromium/base/
values_unittest.cc 71 int int_value = 0; local
77 ASSERT_FALSE(mixed_list->GetInteger(0, &int_value));
78 ASSERT_EQ(0, int_value);
83 ASSERT_FALSE(mixed_list->GetInteger(2, &int_value));
84 ASSERT_EQ(0, int_value);
90 ASSERT_TRUE(mixed_list->GetInteger(1, &int_value));
91 ASSERT_EQ(42, int_value);
105 ASSERT_TRUE((*mixed_list->Find(sought_value))->GetAsInteger(&int_value));
106 ASSERT_EQ(42, int_value);
830 FundamentalValue int_value(1234)
    [all...]
  /external/libchrome/base/trace_event/
trace_event_argument_unittest.cc 99 FundamentalValue int_value(42);
trace_event_unittest.cc 2150 int int_value; local
2323 int int_value; local
    [all...]
  /art/compiler/utils/arm/
assembler_arm.h 740 int32_t int_value = bit_cast<int32_t, float>(value); local
741 if (int_value == bit_cast<int32_t, float>(0.0f)) {
748 LoadImmediate(IP, int_value, cond);
756 uint64_t int_value = bit_cast<uint64_t, double>(value); local
757 if (int_value == bit_cast<uint64_t, double>(0.0)) {
767 LoadSImmediate(low, bit_cast<float, uint32_t>(Low32Bits(int_value)), cond);
768 if (High32Bits(int_value) == Low32Bits(int_value)) {
771 LoadSImmediate(high, bit_cast<float, uint32_t>(High32Bits(int_value)), cond);
    [all...]
  /toolchain/binutils/binutils-2.25/gold/
attributes.h 111 int_value() const function in class:gold::Object_attribute
  /external/protobuf/src/google/protobuf/
text_format.cc 688 int64 int_value; local
689 DO(ConsumeSignedInteger(&int_value, kint32max));
690 value = SimpleItoa(int_value); // for error reporting
691 enum_value = enum_type->FindValueByNumber(int_value);
    [all...]
  /external/google-breakpad/src/testing/gtest/scripts/
pump.py 598 int_value = int(value)
599 if ('%s' % int_value) == value:
600 value = int_value
  /external/protobuf/gtest/scripts/
pump.py 591 int_value = int(value)
592 if ('%s' % int_value) == value:
593 value = int_value
  /external/vulkan-validation-layers/tests/gtest-1.7.0/scripts/
pump.py 598 int_value = int(value)
599 if ('%s' % int_value) == value:
600 value = int_value
  /external/valgrind/memcheck/
mc_main.c 6280 Int int_value; local
6407 Int int_value; local
    [all...]
  /art/runtime/interpreter/
unstarted_runtime.cc 83 uint32_t int_value = static_cast<uint32_t>(shadow_frame->GetVReg(arg_offset)); local
86 if (!isascii(int_value)) {
89 int_value);
94 char char_value = static_cast<char>(int_value);
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_re.py 41 int_value = int(matchobj.group(0))
42 return str(int_value + 1)
    [all...]

Completed in 486 milliseconds

12 3