Searched defs:val_ (Results 1 - 6 of 6) sorted by relevance

/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.create/
H A Dmake_unique.array.pass.cpp18 foo () : val_(3) {}
19 int get () const { return val_; }
21 int val_; member in class:foo
/external/compiler-rt/test/asan/TestCases/
H A Duse-after-scope-dtor-order.cc7 explicit IntHolder(int *val = 0) : val_(val) { }
9 printf("Value: %d\n", *val_); // BOOM
13 void set(int *val) { val_ = val; }
14 int *get() { return val_; }
16 int *val_; member in struct:IntHolder
/external/vixl/test/
H A Dtest-invalset.cc44 Obj(KeyType key, ValType val) : key_(key), val_(val) {}
46 ValType val_; member in class:vixl::Obj
49 return (key_ == other.key_) && (val_ == other.val_);
53 ((key_ == other.key_) && (val_ < other.val_));
57 ((key_ == other.key_) && (val_ <= other.val_));
61 ((key_ == other.key_) && (val_ > other.val_));
[all...]
/external/webp/src/utils/
H A Dbit_reader.h116 vp8l_val_t val_; // pre-fetched bits member in struct:__anon16977
120 int bit_pos_; // current bit-reading position in val_
141 return (uint32_t)(br->val_ >> br->bit_pos_);
/external/google-breakpad/src/testing/test/
H A Dgmock-matchers_test.cc2833 ConstPropagatingPtr() : val_() {}
2834 explicit ConstPropagatingPtr(T* t) : val_(t) {}
2835 ConstPropagatingPtr(const ConstPropagatingPtr& other) : val_(other.val_) {}
2837 T* get() { return val_; }
2838 T& operator*() { return *val_; }
2840 const T* get() const { return val_; }
2841 const T& operator*() const { return *val_; }
2844 T* val_; member in class:testing::gmock_matchers_test::ConstPropagatingPtr
/external/v8/include/
H A Dv8.h203 V8_INLINE Handle() : val_(0) {}
216 : val_(reinterpret_cast<T*>(*that)) {
228 V8_INLINE bool IsEmpty() const { return val_ == 0; }
233 V8_INLINE void Clear() { val_ = 0; }
235 V8_INLINE T* operator->() const { return val_; }
237 V8_INLINE T* operator*() const { return val_; }
246 internal::Object** a = reinterpret_cast<internal::Object**>(this->val_);
247 internal::Object** b = reinterpret_cast<internal::Object**>(that.val_);
255 internal::Object** a = reinterpret_cast<internal::Object**>(this->val_);
256 internal::Object** b = reinterpret_cast<internal::Object**>(that.val_);
323 T* val_; member in class:v8::Handle
576 T* val_; member in class:v8::PersistentBase
[all...]

Completed in 821 milliseconds