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

1 2 3 4 5 6 7 8 91011>>

  /external/parameter-framework/asio-1.10.6/include/asio/detail/
io_control.hpp 31 : 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_ = static_cast<detail::ioctl_arg_type>(value)
122 detail::ioctl_arg_type value_; member in class:asio::detail::io_control::bytes_readable
    [all...]
socket_option.hpp 34 : 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_ = *reinterpret_cast<char*>(&value_) ? 1 : 0
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/
object_path.cc 14 return IsValidObjectPath(value_);
18 return value_ < that.value_;
22 return value_ == that.value_;
26 return value_ != that.value_;
object_path.h 29 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
file_descriptor.h 47 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
  /external/libchrome/base/
sys_info_internal.h 18 : value_(F()) { }
22 T value() { return value_; }
25 const T value_; member in class:base::internal::LazySysInfoValue
  /system/core/base/include/android-base/
unique_fd.h 55 unique_fd_impl() : value_(-1) {}
57 explicit unique_fd_impl(int value) : value_(value) {}
60 unique_fd_impl(unique_fd_impl&& other) : value_(other.release()) {}
67 if (value_ != -1) {
68 Closer::Close(value_);
70 value_ = new_value;
77 int get() const { return value_; }
81 int ret = value_;
82 value_ = -1;
87 int value_; member in class:android::base::final
    [all...]
  /external/webrtc/webrtc/base/
optional.h 68 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...]
sharedexclusivelock_unittest.cc 36 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_, &done)
    [all...]
  /external/webrtc/webrtc/system_wrappers/source/
atomic32_mac.cc 22 : 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_);
atomic32_win.cc 21 : 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_),
atomic32_posix.cc 22 : 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);
  /art/runtime/
experimental_flags.h 32 constexpr ExperimentalFlags() : value_(0x0000) {}
33 constexpr ExperimentalFlags(decltype(kNone) t) : value_(static_cast<uint32_t>(t)) {}
36 return static_cast<decltype(kNone)>(value_);
40 return value_ != kNone;
44 return static_cast<decltype(kNone)>(value_ | static_cast<uint32_t>(b));
47 return static_cast<decltype(kNone)>(value_ | b.value_);
51 return static_cast<decltype(kNone)>(value_ & b.value_);
54 return static_cast<decltype(kNone)>(value_ & static_cast<uint32_t>(b))
62 uint32_t value_; member in namespace:art
    [all...]
lock_word-inl.h 28 return (value_ >> kThinLockOwnerShift) & kThinLockOwnerMask;
34 return (value_ >> kThinLockCountShift) & kThinLockCountMask;
40 MonitorId mon_id = (value_ >> kMonitorIdShift) & kMonitorIdMask;
46 return value_ << kStateSize;
49 inline LockWord::LockWord() : value_(0) {
54 : value_(mon->GetMonitorId() | (rb_state << kReadBarrierStateShift) |
68 return (value_ >> kHashShift) & kHashMask;
  /frameworks/base/media/mca/filterfw/native/core/
statistics.h 51 : gain_(gain), n_(0), value_(0.0f) {}
54 value_ = n_++ ? gain_ * measurement + (1.0f - gain_) * value_ : measurement;
60 float Output() const { return value_; }
65 float value_; member in class:android::filterfw::RCFilter
  /external/v8/src/
source-position.h 30 bool IsUnknown() const { return value_ == kNoPosition; }
32 uint32_t position() const { return PositionField::decode(value_); }
35 value_ = static_cast<uint32_t>(PositionField::update(value_, position));
37 value_ = position;
41 uint32_t inlining_id() const { return InliningIdField::decode(value_); }
44 value_ =
45 static_cast<uint32_t>(InliningIdField::update(value_, inlining_id));
49 uint32_t raw() const { return value_; }
64 position.value_ = raw_position
71 uint32_t value_; member in class:v8::internal::SourcePosition
    [all...]
  /system/update_engine/update_manager/
boxed_value.h 59 BoxedValue() : value_(nullptr), deleter_(nullptr), printer_(nullptr) {}
65 : value_(static_cast<const void*>(value)), deleter_(ValueDeleter<T>),
74 : value_(other.value_), deleter_(other.deleter_),
76 other.value_ = nullptr;
85 deleter_(value_);
88 const void* value() const { return value_; }
93 if (!value_)
95 return printer_(value_);
111 const void* value_; member in class:chromeos_update_manager::BoxedValue
    [all...]
  /external/jsoncpp/src/lib_json/
json_value.cpp 236 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_.int_ = value
    [all...]
  /art/runtime/base/
dumpable.h 34 explicit Dumpable(const T& value) : value_(value) {
38 value_.Dump(os);
42 const T& value_; member in class:art::FINAL
  /external/libcxx/test/support/
hexfloat.h 25 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_;}
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/
hexfloat.h 25 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/
opencl_svm.hpp 29 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/google-breakpad/src/processor/
linked_ptr.h 125 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...]
  /external/libchrome/base/memory/
linked_ptr.h 112 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/protobuf/gtest/include/gtest/internal/
gtest-linked_ptr.h 172 T* get() const { return value_; }
173 T* operator->() const { return value_; }
174 T& operator*() const { return *value_; }
180 T* v = value_;
181 value_ = NULL;
185 bool operator==(T* p) const { return value_ == p; }
186 bool operator!=(T* p) const { return value_ != p; }
189 return value_ == ptr.get();
193 return value_ != ptr.get();
200 T* value_; member in class:testing::internal::linked_ptr
    [all...]

Completed in 1286 milliseconds

1 2 3 4 5 6 7 8 91011>>