HomeSort by relevance Sort by last modified time
    Searched defs:val_ (Results 1 - 12 of 12) sorted by null

  /external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.create/
make_unique.array.pass.cpp 18 foo () : val_(3) {}
19 int get () const { return val_; }
21 int val_; member in class:foo
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.create/
make_unique.array.pass.cpp 18 foo () : val_(3) {}
19 int get () const { return val_; }
21 int val_; member in class:foo
  /external/compiler-rt/test/asan/TestCases/
use-after-scope-dtor-order.cc 7 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
  /art/runtime/arch/
memcmp16_test.cc 22 explicit RandGen(uint32_t seed) : val_(seed) {}
25 val_ = val_ * 48271 % 2147483647 + 13;
26 return val_;
29 uint32_t val_; member in class:RandGen
stub_test.cc 907 explicit RandGen(uint32_t seed) : val_(seed) {}
914 uint32_t val_; member in class:art::RandGen
    [all...]
  /art/runtime/
monitor_pool_test.cc 29 explicit RandGen(uint32_t seed) : val_(seed) {}
32 val_ = val_ * 48271 % 2147483647 + 13;
33 return val_;
36 uint32_t val_; member in class:art::RandGen
offsets.h 29 explicit Offset(size_t val) : val_(val) {}
31 return static_cast<int32_t>(val_);
34 return static_cast<uint32_t>(val_);
37 return val_;
41 size_t val_; member in class:art::Offset
49 bool operator>(FrameOffset other) const { return val_ > other.val_; }
50 bool operator<(FrameOffset other) const { return val_ < other.val_; }
  /art/runtime/gc/accounting/
space_bitmap_test.cc 103 explicit RandGen(uint32_t seed) : val_(seed) {}
106 val_ = val_ * 48271 % 2147483647;
107 return val_;
110 uint32_t val_; member in class:art::gc::accounting::RandGen
  /external/vixl/test/
test-invalset.cc 44 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/
bit_reader.h 116 vp8l_val_t val_; // pre-fetched bits member in struct:__anon21249
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/
gmock-matchers_test.cc 2844 T* val_; member in class:testing::gmock_matchers_test::ConstPropagatingPtr
    [all...]
  /external/v8/include/
v8.h 203 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 1123 milliseconds