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

1 2 3 4 5 6 7 8 91011>>

  /hardware/libhardware/modules/camera/3_4/metadata/
ignored_control_delegate.h 29 IgnoredControlDelegate(T value) : value_(value){};
32 *value = value_;
38 const T value_; member in class:v4l2_camera_hal::IgnoredControlDelegate
no_effect_control_delegate.h 29 NoEffectControlDelegate(T default_value) : value_(default_value){};
32 *value = value_;
36 value_ = value;
41 T value_; member in class:v4l2_camera_hal::NoEffectControlDelegate
property.h 30 Property(int32_t tag, T value) : tag_(tag), value_(std::move(value)){};
40 return UpdateMetadata(metadata, tag_, value_);
65 T value_; member in class:v4l2_camera_hal::Property
  /external/libchrome/dbus/
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/pdfium/core/fxcrt/css/
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.h 19 WideString value() const { return value_; }
23 WideString value_; member in class:CFX_CSSCustomProperty
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
PR23256_constrain_UTypes_ctor.pass.cpp 30 int value_; member in struct:UnconstrainedCtor
32 UnconstrainedCtor() : value_(0) {}
39 constexpr UnconstrainedCtor(T value) noexcept(noexcept(value_ = value))
40 : value_(static_cast<int>(value))
47 int value_; member in struct:ExplicitUnconstrainedCtor
49 ExplicitUnconstrainedCtor() : value_(0) {}
53 noexcept(noexcept(value_ = value))
54 : value_(static_cast<int>(value))
  /external/libcxx/test/support/
hexfloat.h 24 T value_; member in class:hexfloat
44 value_ = std::ldexp(m1 + s * std::ldexp(T(m0), exp2), exp);
47 operator T() const {return value_;}
  /external/webrtc/webrtc/system_wrappers/include/
atomic32.h 56 return (reinterpret_cast<ptrdiff_t>(&value_) & 3) == 0;
61 int32_t value_; member in class:webrtc::Atomic32
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
PR23256_constrain_UTypes_ctor.pass.cpp 30 int value_; member in struct:UnconstrainedCtor
32 UnconstrainedCtor() : value_(0) {}
39 constexpr UnconstrainedCtor(T value) noexcept(noexcept(value_ = value))
40 : value_(static_cast<int>(value))
47 int value_; member in struct:ExplicitUnconstrainedCtor
49 ExplicitUnconstrainedCtor() : value_(0) {}
53 noexcept(noexcept(value_ = value))
54 : value_(static_cast<int>(value))
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
hexfloat.h 24 T value_; member in class:hexfloat
44 value_ = std::ldexp(m1 + s * std::ldexp(T(m0), exp2), exp);
47 operator T() const {return value_;}
  /art/runtime/base/
dumpable.h 35 explicit Dumpable(const T& value) : value_(value) {
39 value_.Dump(os);
43 const T& value_; member in class:art::FINAL
57 explicit MutatorLockedDumpable(T& value) REQUIRES_SHARED(Locks::mutator_lock_) : value_(value) {}
60 value_.Dump(os);
64 const T& value_; member in class:art::MutatorLockedDumpable
  /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/testing/
xfa_js_embedder_test.h 38 CFXJSE_Value* GetValue() const { return value_.get(); }
42 std::unique_ptr<CFXJSE_Value> value_; member in class:XFAJSEmbedderTest
  /external/protobuf/src/google/protobuf/
any.h 82 ValueType* value_; member in class:google::protobuf::internal::AnyMetadata
  /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/v4l2_codec2/vda/
vp8_bool_decoder.h 116 // Fills more bits from |user_buffer_| to |value_|. We shall keep at least 8
117 // bits of the current |user_buffer_| in |value_|.
126 size_t value_; member in class:media::Vp8BoolDecoder
  /external/v8/tools/clang/rewrite_to_chrome_style/tests/
function-templates-expected.cc 26 if (!IsInBounds<T>(rhs.value_))
28 value_ = static_cast<T>(rhs.value_);
35 T value_; member in class:WTF::Checked
  /frameworks/native/services/thermalservice/aidl/android/os/
Temperature.h 16 float getValue() const {return value_;};
24 float value_; member in class:android::os::Temperature
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
any.h 82 ValueType* value_; member in class:google::protobuf::internal::AnyMetadata
  /art/cmdline/
cmdline_parse_result.h 86 return value_;
94 return value_;
102 return std::move(value_);
126 : CmdlineResult(kSuccess), value_(value), has_value_(true) {}
128 : CmdlineResult(kSuccess), value_(std::forward<T>(value)), has_value_(true) {}
130 : CmdlineResult(kSuccess), value_(), has_value_(false) {}
132 T value_; member in struct:art::CmdlineParseResult
  /art/runtime/arch/
code_offset.h 43 uint32_t decoded = value_ * GetInstructionSetInstructionAlignment(isa);
44 DCHECK_GE(decoded, value_) << "Integer overflow";
50 return value_;
59 ALWAYS_INLINE explicit CodeOffset(uint32_t value) : value_(value) {}
61 uint32_t value_ = 0u; member in class:art::CodeOffset
  /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...]

Completed in 431 milliseconds

1 2 3 4 5 6 7 8 91011>>