/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/ |
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_; }
|
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
|
/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
|
/prebuilts/misc/common/swig/include/2.0.11/typemaps/ |
attribute.swg | 158 template < class C > inline void %mangle(Class) ##_## AttributeName ## _set(C* self_, AttributeType val_) { 165 #define %mangle(Class) ##_## AttributeName ## _set(self_, val_) SetMethodCall 198 %attribute_custom(%arg(Class), %arg(AttributeType), AttributeName, GetMethod, SetMethod, self_->GetMethod(), self_->SetMethod(val_)) 206 %attribute_custom(%arg(Class), %arg(AttributeType), AttributeName, GetMethod, SetMethod, &self_->GetMethod(), self_->SetMethod(*val_)) 214 %attribute_custom(%arg(Class), %arg(AttributeType), AttributeName, AccessorMethod, AccessorMethod, self_->AccessorMethod(), self_->AccessorMethod() = val_) 216 %attribute_custom(%arg(Class), %arg(AttributeType), AttributeName, AttributeName, AttributeName, self_->AttributeName(), self_->AttributeName() = val_) 222 %attribute_custom(%arg(Class), %arg(AttributeType), AttributeName, AccessorMethod, AccessorMethod, &self_->AccessorMethod(), self_->AccessorMethod() = *val_) 224 %attribute_custom(%arg(Class), %arg(AttributeType), AccessorName, AccessorName, AccessorName, &self_->AccessorName(), self_->AccessorName() = *val_) 231 %attribute_custom(%arg(Class), %arg(AttributeType), AttributeName, AccessorMethod, AccessorMethod, self_->AccessorMethod(), self_->AccessorMethod() = val_) 233 %attribute_custom(%arg(Class), %arg(AttributeType), AccessorMethod, AccessorMethod, AccessorMethod, self_->AccessorMethod(), self_->AccessorMethod() = val_) [all...] |
/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.c | 136 br->val_ = 0; 141 if (length > sizeof(br->val_)) { 142 length = sizeof(br->val_); 147 br->val_ = value; 167 br->val_ >>= 8; 168 br->val_ |= ((vp8l_val_t)br->buf_[br->pos_]) << (VP8L_LBITS - 8); 180 if (br->pos_ + sizeof(br->val_) < br->len_) { 181 br->val_ >>= VP8L_WBITS; 185 br->val_ |= (vp8l_val_t)*(const uint32_t*)(br->buf_ + br->pos_) << 199 (uint32_t)(br->val_ >> br->bit_pos_) & kBitMask[n_bits] [all...] |
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_);
|
/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/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/v8/include/ |
v8-util.h | 166 reinterpret_cast<internal::Object**>(parent.val_), 323 V* v = persistent->val_; 324 persistent->val_ = 0; 330 return reinterpret_cast<PersistentContainerValue>(persistent->val_); 340 p.val_ = FromVal(v); 456 p.val_ = FromVal(Traits::Get(&impl_, i)); 472 V* v = persistent->val_; 473 persistent->val_ = 0;
|
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...] |
/external/jpeg/ |
wrppm.c | 45 { register int val_ = v; \ 46 *ptr++ = (char) (val_ & 0xFF); \ 47 *ptr++ = (char) ((val_ >> 8) & 0xFF); \
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
codegen.ml | 50 let val_ = codegen_expr rhs in 56 ignore(build_store val_ variable builder); 57 val_
|
/external/google-breakpad/src/testing/test/ |
gmock-matchers_test.cc | 2844 T* val_; member in class:testing::gmock_matchers_test::ConstPropagatingPtr [all...] |
/external/llvm/docs/tutorial/ |
OCamlLangImpl7.rst | 614 let val_ = codegen_expr rhs in 620 ignore(build_store val_ variable builder); 621 val_ [all...] |
/external/v8/src/ |
api.h | 278 reinterpret_cast<v8::internal::Object**>(persistent.val_));
|