Searched refs:value_ (Results 1 - 25 of 363) sorted by relevance

1234567891011>>

/external/v8/tools/clang/blink_gc_plugin/
H A DNeedsTracing.h16 bool IsUnneeded() { return value_ == kUnneeded; }
17 bool IsUnknown() { return value_ == kUnknown; }
18 bool IsNeeded() { return value_ == kNeeded; }
20 return value_ > other.value_ ? value_ : other.value_;
23 return value_ == other.value_;
27 NeedsTracing(Value value) : value_(valu
28 Value value_; member in class:NeedsTracing
[all...]
/external/parameter-framework/asio/include/asio/detail/
H A Dio_control.hpp31 : value_(0)
37 : value_(value ? 1 : 0)
50 value_ = value ? 1 : 0;
56 return value_ != 0;
62 return &value_;
68 return &value_;
72 detail::ioctl_arg_type value_; member in class:asio::detail::io_control::non_blocking_io
81 : value_(0)
87 : value_(static_cast<detail::ioctl_arg_type>(value))
100 value_
122 detail::ioctl_arg_type value_; member in class:asio::detail::io_control::bytes_readable
[all...]
H A Dsocket_option.hpp34 : value_(0)
40 : value_(v ? 1 : 0)
47 value_ = v ? 1 : 0;
54 return !!value_;
60 return !!value_;
66 return !value_;
87 return &value_;
94 return &value_;
101 return sizeof(value_);
114 value_
127 int value_; member in class:asio::detail::socket_option::boolean
207 int value_; member in class:asio::detail::socket_option::integer
300 detail::linger_type value_; member in class:asio::detail::socket_option::linger
[all...]
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dio_control.hpp31 : value_(0)
37 : value_(value ? 1 : 0)
50 value_ = value ? 1 : 0;
56 return value_ != 0;
62 return &value_;
68 return &value_;
72 detail::ioctl_arg_type value_; member in class:asio::detail::io_control::non_blocking_io
81 : value_(0)
87 : value_(static_cast<detail::ioctl_arg_type>(value))
100 value_
122 detail::ioctl_arg_type value_; member in class:asio::detail::io_control::bytes_readable
[all...]
H A Dsocket_option.hpp34 : value_(0)
40 : value_(v ? 1 : 0)
47 value_ = v ? 1 : 0;
54 return !!value_;
60 return !!value_;
66 return !value_;
87 return &value_;
94 return &value_;
101 return sizeof(value_);
114 value_
127 int value_; member in class:asio::detail::socket_option::boolean
207 int value_; member in class:asio::detail::socket_option::integer
300 detail::linger_type value_; member in class:asio::detail::socket_option::linger
[all...]
/external/libchrome/dbus/
H A Dobject_path.cc14 return IsValidObjectPath(value_);
18 return value_ < that.value_;
22 return value_ == that.value_;
26 return value_ != that.value_;
H A Dobject_path.h29 explicit ObjectPath(const std::string& value) : value_(value) {}
32 const std::string& value() const { return value_; }
47 std::string value_; member in class:dbus::ObjectPath
/external/pdfium/core/fxcrt/css/
H A Dcfx_cssnumbervalue.cpp10 : CFX_CSSValue(CFX_CSSPrimitiveType::Number), type_(type), value_(value) {
11 if (type_ == CFX_CSSNumberType::Number && fabs(value_) < 0.001f)
12 value_ = 0.0f;
21 return value_ * 72 / 96;
24 return value_ * percentBase;
26 return value_ * percentBase / 100.0f;
28 return value_ * 28.3464f;
30 return value_ * 2.8346f;
32 return value_ * 72.0f;
34 return value_ / 12.
[all...]
H A Dcfx_csscolorvalue.h17 FX_ARGB Value() const { return value_; }
20 FX_ARGB value_; member in class:CFX_CSSColorValue
H A Dcfx_cssenumvalue.h17 CFX_CSSPropertyValue Value() const { return value_; }
20 CFX_CSSPropertyValue value_; member in class:CFX_CSSEnumValue
H A Dcfx_cssstringvalue.h17 const WideString Value() const { return value_; }
20 const WideString value_; member in class:CFX_CSSStringValue
H A Dcfx_csscustomproperty.cpp9 : name_(name), value_(value) {}
12 : name_(prop.name_), value_(prop.value_) {}
H A Dcfx_csscolorvalue.cpp10 : CFX_CSSValue(CFX_CSSPrimitiveType::RGB), value_(value) {}
H A Dcfx_cssenumvalue.cpp10 : CFX_CSSValue(CFX_CSSPrimitiveType::Enum), value_(value) {}
H A Dcfx_cssstringvalue.cpp10 : CFX_CSSValue(CFX_CSSPrimitiveType::String), value_(value) {}
H A Dcfx_csscustomproperty.h19 WideString value() const { return value_; }
23 WideString value_; member in class:CFX_CSSCustomProperty
/external/webrtc/webrtc/base/
H A Doptional.h68 explicit Optional(const T& val) : value_(val), has_value_(true) {}
69 explicit Optional(T&& val) : value_(std::move(val)), has_value_(true) {}
75 : value_(std::move(m.value_)), has_value_(m.has_value_) {}
81 value_ = std::move(m.value_);
88 swap(m1.value_, m2.value_);
98 return &value_;
102 return &value_;
133 T value_; member in class:rtc::final
[all...]
/external/webrtc/webrtc/system_wrappers/source/
H A Datomic32_mac.cc22 : value_(initial_value) {
30 return OSAtomicIncrement32Barrier(&value_);
34 return OSAtomicDecrement32Barrier(&value_);
38 return OSAtomicAdd32Barrier(value, &value_);
42 return OSAtomicAdd32Barrier(-value, &value_);
46 return OSAtomicCompareAndSwap32Barrier(compare_value, new_value, &value_);
H A Datomic32_win.cc21 : value_(initial_value) {
22 static_assert(sizeof(value_) == sizeof(LONG),
32 reinterpret_cast<volatile LONG*>(&value_)));
37 reinterpret_cast<volatile LONG*>(&value_)));
41 return InterlockedExchangeAdd(reinterpret_cast<volatile LONG*>(&value_),
46 return InterlockedExchangeAdd(reinterpret_cast<volatile LONG*>(&value_),
52 reinterpret_cast<volatile LONG*>(&value_),
H A Datomic32_posix.cc22 : value_(initial_value) {
30 return __sync_fetch_and_add(&value_, 1) + 1;
34 return __sync_fetch_and_sub(&value_, 1) - 1;
38 int32_t return_value = __sync_fetch_and_add(&value_, value);
44 int32_t return_value = __sync_fetch_and_sub(&value_, value);
50 return __sync_bool_compare_and_swap(&value_, compare_value, new_value);
/external/tensorflow/tensorflow/contrib/boosted_trees/lib/utils/
H A Doptional_value.h29 OptionalValue() : value_(), has_value_(false) {}
30 explicit OptionalValue(T value) : value_(value), has_value_(true) {}
35 return value_;
39 T value_; member in class:tensorflow::boosted_trees::utils::OptionalValue
/external/libchrome/base/
H A Dsys_info_internal.h18 : value_(F()) { }
22 T value() { return value_; }
25 const T value_; member in class:base::internal::LazySysInfoValue
/external/jsoncpp/src/lib_json/
H A Djson_value.cpp236 value_.int_ = 0;
239 value_.real_ = 0.0;
242 value_.string_ = 0;
247 value_.map_ = new ObjectValues();
251 value_.array_ = arrayAllocator()->newArray();
254 value_.map_ = mapAllocator()->newMap();
258 value_.bool_ = false;
267 value_.int_ = value;
272 value_.uint_ = value;
277 value_
[all...]
/external/libmojo/mojo/public/cpp/system/
H A Dmessage.h23 MessageHandle() : value_(kInvalidMessageHandleValue) {}
24 explicit MessageHandle(MojoMessageHandle value) : value_(value) {}
28 MojoMessageHandle temp = value_;
29 value_ = other.value_;
30 other.value_ = temp;
33 bool is_valid() const { return value_ != kInvalidMessageHandleValue; }
35 const MojoMessageHandle& value() const { return value_; }
36 MojoMessageHandle* mutable_value() { return &value_; }
37 void set_value(MojoMessageHandle value) { value_
47 MojoMessageHandle value_; member in class:mojo::MessageHandle
[all...]
/external/libchrome/base/memory/
H A Dlinked_ptr.h112 T* get() const { return value_; }
113 T* operator->() const { return value_; }
114 T& operator*() const { return *value_; }
120 T* v = value_;
121 value_ = NULL;
125 bool operator==(const T* p) const { return value_ == p; }
126 bool operator!=(const T* p) const { return value_ != p; }
129 return value_ == ptr.get();
133 return value_ != ptr.get();
140 T* value_; member in class:linked_ptr
[all...]

Completed in 737 milliseconds

1234567891011>>