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

1 2 3 4 5 6 7 8 91011>>

  /external/tensorflow/tensorflow/core/common_runtime/
shared_counter.h 23 int64 get() { return value_; }
24 int64 next() { return ++value_; }
27 std::atomic<int64> value_{0};
  /external/v8/tools/clang/blink_gc_plugin/
NeedsTracing.h 16 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_(value) {
28 Value value_; member in class:NeedsTracing
    [all...]
  /external/grpc-grpc/src/core/lib/gprpp/
ref_counted_ptr.h 41 value_ = value;
46 value_ = other.value_;
47 other.value_ = nullptr;
51 value_ = other.value_;
52 other.value_ = nullptr;
57 if (value_ != nullptr) value_->Unref();
58 value_ = other.value_
159 T* value_ = nullptr; member in class:grpc_core::RefCountedPtr
    [all...]
  /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
  /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
  /external/pdfium/core/fxcrt/css/
cfx_cssnumbervalue.cpp 10 : 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.0f
    [all...]
cfx_csscolorvalue.h 17 FX_ARGB Value() const { return value_; }
20 FX_ARGB value_; member in class:CFX_CSSColorValue
cfx_cssenumvalue.h 17 CFX_CSSPropertyValue Value() const { return value_; }
20 CFX_CSSPropertyValue value_; member in class:CFX_CSSEnumValue
cfx_cssstringvalue.h 17 const WideString Value() const { return value_; }
20 const WideString value_; member in class:CFX_CSSStringValue
cfx_csscustomproperty.cpp 9 : name_(name), value_(value) {}
12 : name_(prop.name_), value_(prop.value_) {}
  /device/google/cuttlefish_common/common/libs/fs/
shared_select.h 41 iterator begin() { return value_.begin(); }
42 iterator end() { return value_.end(); }
43 const_iterator begin() const { return value_.begin(); }
44 const_iterator end() const { return value_.end(); }
47 value_.swap(rhs->value_);
51 value_.erase(in);
55 return value_.count(in) != 0;
59 value_.insert(in);
63 value_.clear()
67 std::set<SharedFD> value_; member in class:cvd::SharedFDSet
    [all...]
  /external/tensorflow/tensorflow/contrib/boosted_trees/lib/utils/
optional_value.h 29 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/libtextclassifier/utils/
optional.h 33 value_ = other.value_;
37 explicit Optional(T value) : init_(true), value_(value) {}
42 value_ = std::move(other);
49 value_ = std::move(other);
57 return value_;
62 return value_;
66 return (init_ ? value_ : default_value);
71 value_ = value;
76 T value_; member in class:libtextclassifier3::Optional
    [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...]
  /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) {}
34 : value_(static_cast<uint32_t>(t)) {}
37 return static_cast<decltype(kNone)>(value_);
41 return value_ != kNone;
45 return static_cast<decltype(kNone)>(value_ | static_cast<uint32_t>(b));
48 return static_cast<decltype(kNone)>(value_ | b.value_);
52 return static_cast<decltype(kNone)>(value_ & b.value_);
55 return static_cast<decltype(kNone)>(value_ & static_cast<uint32_t>(b))
63 uint32_t value_; member in namespace:art
    [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/libartbase/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/libchrome/mojo/public/cpp/system/
message.h 25 MessageHandle() : value_(kInvalidMessageHandleValue) {}
26 explicit MessageHandle(MojoMessageHandle value) : value_(value) {}
30 MojoMessageHandle temp = value_;
31 value_ = other.value_;
32 other.value_ = temp;
35 bool is_valid() const { return value_ != kInvalidMessageHandleValue; }
37 const MojoMessageHandle& value() const { return value_; }
38 MojoMessageHandle* mutable_value() { return &value_; }
39 void set_value(MojoMessageHandle value) { value_ = value;
49 MojoMessageHandle value_; member in class:mojo::MessageHandle
    [all...]
  /external/tensorflow/tensorflow/core/grappler/graph_analyzer/
gen_node.h 74 Port(bool inbound, int32_t id) : value_(id << 1) {
76 value_ |= 1;
82 bool IsInbound() const { return (value_ & 0x1); }
84 bool IsControl() const { return (value_ < 0); }
88 return (value_ >> 1);
96 IntPort Encoded() const { return value_; }
100 bool operator==(const Port& other) const { return value_ == other.value_; }
101 bool operator<(const Port& other) const { return value_ < other.value_; }
117 IntPort value_; member in class:tensorflow::grappler::graph_analyzer::GenNode::Port
    [all...]

Completed in 1029 milliseconds

1 2 3 4 5 6 7 8 91011>>