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

12 3

  /frameworks/native/libs/vr/libdisplay/include/private/dvr/
display_protocol.h 156 int int_value = 0; local
157 GetAttribute(SurfaceAttribute::ZOrder, &int_value,
159 return int_value;
  /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 230 int int_value = 0; local
231 bool success = value.GetAsInteger(&int_value);
233 writer->AppendInt32(int_value);
  /build/make/tools/fs_config/
fs_config_generator.py 360 int_value = int(value, 0)
388 if tmp == int_value:
389 raise ValueError('START and END values equal %u' % int_value)
390 elif is_start and tmp < int_value:
392 (tmp, int_value))
393 elif not is_start and tmp > int_value:
395 (int_value, tmp))
400 self._oem_ranges[strip].insert(0, int_value)
402 self._oem_ranges[strip].append(int_value)
    [all...]
  /frameworks/av/drm/libmediadrm/
PluginMetricsReporting.cpp 69 value.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/libcups/cups/
dest-options.c 80 int int_value; /* Integer value */ local
171 int_value = atoi(value);
174 if (attr->values[i].integer == int_value)
182 int_value = atoi(value);
185 if (int_value >= attr->values[i].range.lower &&
186 int_value <= attr->values[i].range.upper)
2019 int int_value; \/* Integer value *\/ local
    [all...]
  /external/libchrome/base/
values_unittest.cc 73 int int_value = 0; local
79 ASSERT_FALSE(mixed_list->GetInteger(0, &int_value));
80 ASSERT_EQ(0, int_value);
85 ASSERT_FALSE(mixed_list->GetInteger(2, &int_value));
86 ASSERT_EQ(0, int_value);
92 ASSERT_TRUE(mixed_list->GetInteger(1, &int_value));
93 ASSERT_EQ(42, int_value);
107 ASSERT_TRUE((*mixed_list->Find(sought_value))->GetAsInteger(&int_value));
108 ASSERT_EQ(42, int_value);
    [all...]
  /external/v8/src/ast/
ast-value-factory.h 267 int int_value; local
268 if (DoubleToSmiInteger(n, &int_value)) {
270 smi_ = int_value;
  /external/libchrome/base/trace_event/
trace_event_argument_unittest.cc 100 FundamentalValue int_value(42);
trace_event_unittest.cc 2269 int int_value; local
2452 int int_value; local
    [all...]
  /external/protobuf/src/google/protobuf/util/internal/
protostream_objectwriter.cc 808 StatusOr<int64> int_value = data.ToInt64(); local
809 if (int_value.ok()) {
812 DataPiece(SimpleItoa(int_value.ValueOrDie()), true));
823 StatusOr<uint64> int_value = data.ToUint64(); local
824 if (int_value.ok()) {
827 DataPiece(SimpleItoa(int_value.ValueOrDie()), true));
    [all...]
  /external/fmtlib/test/
util-test.cc 417 ARG_INFO(INT, int, int_value);
421 ARG_INFO(BOOL, int, int_value);
422 ARG_INFO(CHAR, int, int_value);
438 CHECK_ARG_INFO(INT, int_value, 42);
444 CHECK_ARG_INFO(CHAR, int_value, 'x');
510 # define long_value int_value
  /external/fmtlib/fmt/
printf.h 105 arg_.int_value = static_cast<int>(static_cast<TargetType>(value));
140 arg_.int_value = static_cast<char>(value);
format.h 1082 int int_value; member in union:fmt::internal::Value::__anon19416
    [all...]
  /art/dexlayout/
dex_writer.cc 80 uint32_t int_value = float_union.i_; local
83 buffer[index--] = int_value >> 24;
84 int_value <<= 8;
85 } while (int_value != 0);

Completed in 881 milliseconds

12 3