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

1234567891011

/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...]
H A Dcall_stack.hpp40 value_ = reinterpret_cast<unsigned char*>(this);
47 value_(&v),
66 return elem->value_;
79 Value* value_; member in class:asio::detail::call_stack::context
95 return elem->value_;
105 return elem ? elem->value_ : 0;
/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...]
H A Dcall_stack.hpp40 value_ = reinterpret_cast<unsigned char*>(this);
47 value_(&v),
66 return elem->value_;
79 Value* value_; member in class:asio::detail::call_stack::context
95 return elem->value_;
105 return elem ? elem->value_ : 0;
/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
H A Dfile_descriptor.h47 FileDescriptor() : value_(-1), owner_(false), valid_(false) {}
48 explicit FileDescriptor(int value) : value_(value), owner_(false),
65 value_ = value;
81 int value_; member in class:dbus::FileDescriptor
H A Dfile_descriptor.cc30 base::File auto_closer(value_);
40 return value_;
46 return value_;
50 base::File file(value_);
58 file.TakePlatformFile(); // Prevent |value_| from being closed by |file|.
63 swap(value_, other->value_);
/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...]
H A Dsharedexclusivelock_unittest.cc36 value_(value),
48 int* value_; member in class:rtc::SharedExclusiveTask
77 *message_data->data() = *value_;
110 *value_ = message_data->data();
122 SharedExclusiveLockTest() : value_(0) {
131 int value_; member in class:rtc::SharedExclusiveLockTest
138 ReadTask reader0(shared_exclusive_lock_.get(), &value_, &done0);
139 ReadTask reader1(shared_exclusive_lock_.get(), &value_, &done1);
144 value_ = 1;
162 WriteTask writer(shared_exclusive_lock_.get(), &value_,
[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/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/libcxx/test/support/
H A Dhexfloat.h25 T value_; member in class:hexfloat
31 value_ = std::ldexp(m1 + s * std::ldexp(T(m0), -static_cast<int>(n -
35 operator T() const {return value_;}
/external/opencv3/modules/core/include/opencv2/core/opencl/
H A Dopencl_svm.hpp29 int value_; member in struct:cv::ocl::svm::SVMCapabilities
31 SVMCapabilities(int capabilities = 0) : value_(capabilities) { }
32 operator int() const { return value_; }
34 inline bool isNoSVMSupport() const { return value_ == 0; }
35 inline bool isSupportCoarseGrainBuffer() const { return (value_ & SVM_COARSE_GRAIN_BUFFER) != 0; }
36 inline bool isSupportFineGrainBuffer() const { return (value_ & SVM_FINE_GRAIN_BUFFER) != 0; }
37 inline bool isSupportFineGrainSystem() const { return (value_ & SVM_FINE_GRAIN_SYSTEM) != 0; }
38 inline bool isSupportAtomics() const { return (value_ & SVM_ATOMICS) != 0; }
/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...]
/external/v8/src/compiler/
H A Dnode-cache.cc26 Node* value_; member in struct:v8::internal::compiler::NodeCache::Entry
45 if (old->value_) {
51 if (!entry->value_) {
53 entry->value_ = old->value_;
74 return &entry->value_;
83 if (pred_(entry->key_, key)) return &entry->value_;
84 if (!entry->value_) {
86 return &entry->value_;
96 entry->value_
[all...]
/external/drm_hwcomposer/
H A Ddrmproperty.cpp29 : value_(e->value), name_(e->name) {
44 value_ = value;
75 *value = value_;
84 *value = value_;
88 if (value_ >= enums_.size())
91 *value = enums_[value_].value_;
95 *value = value_;
/external/jdiff/src/jdiff/
H A DFieldAPI.java37 public String value_ = null; field in class:FieldAPI
53 value_ = value;
64 value_ = f.value_;
86 if (value_ != null && oFieldAPI.value_ != null) {
87 comp = value_.compareTo(oFieldAPI.value_);
/external/google-breakpad/src/client/linux/minidump_writer/
H A Dproc_cpuinfo_reader.h87 value_ = val;
109 assert(value_);
110 return value_;
116 assert(value_);
118 return value_;
124 const char* value_; member in class:google_breakpad::ProcCpuInfoReader
/external/google-breakpad/src/processor/
H A Dlinked_ptr.h125 T* get() const { return value_; }
126 T* operator->() const { return value_; }
127 T& operator*() const { return *value_; }
132 T* v = value_;
133 value_ = NULL;
137 bool operator==(T* p) const { return value_ == p; }
138 bool operator!=(T* p) const { return value_ != p; }
141 return value_ == ptr.get();
145 return value_ != ptr.get();
152 T* value_; member in class:google_breakpad::linked_ptr
[all...]

Completed in 743 milliseconds

1234567891011