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

  /art/runtime/base/
debug_stack.h 113 : ref_(ref) {
117 : ref_(other.ref_) {
121 CHECK(ref_ == other.ref_);
129 ref_->CheckTop();
133 DebugStackReferenceImpl<kIsDebug>* ref_; member in class:art::DebugStackIndirectTopRefImpl
  /external/webrtc/webrtc/p2p/base/
transportcontroller.h 129 RefCountedChannel() : impl_(nullptr), ref_(0) {}
131 : impl_(impl), ref_(0) {}
133 void AddRef() { ++ref_; }
135 ASSERT(ref_ > 0);
136 --ref_;
138 int ref() const { return ref_; }
145 int ref_; member in struct:cricket::TransportController::RefCountedChannel
  /external/libchrome/base/memory/
weak_ptr.cc 73 WeakPtrBase::WeakPtrBase(const WeakReference& ref) : ref_(ref) {
weak_ptr.h 137 // constructor by avoiding the need for a public accessor for ref_. A
139 // base class gives us a way to access ref_ in a protected fashion.
148 WeakReference ref_; member in class:base::internal::WeakPtrBase
177 return WeakPtr<Derived>(ptr.ref_, static_cast<Derived*>(ptr.ptr_));
210 T* get() const { return ref_.is_valid() ? ptr_ : NULL; }
235 ref_ = internal::WeakReference();
255 // This pointer is only valid when ref_.is_valid() is true. Otherwise, its
  /external/libweave/third_party/chromium/base/memory/
weak_ptr.cc 63 WeakPtrBase::WeakPtrBase(const WeakReference& ref) : ref_(ref) {
weak_ptr.h 134 // constructor by avoiding the need for a public accessor for ref_. A
136 // base class gives us a way to access ref_ in a protected fashion.
145 WeakReference ref_; member in class:base::internal::WeakPtrBase
174 return WeakPtr<Derived>(ptr.ref_, static_cast<Derived*>(ptr.ptr_));
207 T* get() const { return ref_.is_valid() ? ptr_ : NULL; }
232 ref_ = internal::WeakReference();
252 // This pointer is only valid when ref_.is_valid() is true. Otherwise, its
  /system/update_engine/update_manager/
generic_variables.h 60 : Variable<T>(name, kVariableModePoll), ref_(ref), is_set_p_(is_set_p),
70 : Variable<T>(name, poll_interval), ref_(ref), is_set_p_(is_set_p),
95 return new T(ref_);
100 const T& ref_; member in class:chromeos_update_manager::PollCopyVariable
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
variance_test.cc 94 ref_ = new uint8_t[block_size_];
96 ASSERT_TRUE(ref_ != NULL);
101 delete[] ref_;
112 uint8_t* ref_; member in class:__anon30100::VarianceTest
124 memset(ref_, j, block_size_);
127 REGISTER_STATE_CHECK(var = variance_(src_, width_, ref_, width_, &sse));
138 ref_[j] = rnd.Rand8();
142 REGISTER_STATE_CHECK(var1 = variance_(src_, width_, ref_, width_, &sse1));
143 const unsigned int var2 = variance_ref(src_, ref_, log2width_,
154 memset(ref_, 255, half)
229 uint8_t *ref_; member in class:__anon30100::SubpelVarianceTest
    [all...]
  /external/libvpx/libvpx/test/
variance_test.cc 236 ref_ = new uint8_t[block_size_ * 2];
241 ref_ = CONVERT_TO_BYTEPTR(new uint16_t[block_size_ * 2]);
245 ASSERT_TRUE(ref_ != NULL);
251 delete[] ref_;
255 delete[] CONVERT_TO_SHORTPTR(ref_);
269 uint8_t *ref_; member in class:__anon16450::VarianceTest
292 memset(ref_, j, block_size_);
295 vpx_memset16(CONVERT_TO_SHORTPTR(ref_), j << (bit_depth_ - 8),
302 var = variance_(src_, width_, ref_, width_, &sse));
314 ref_[j] = rnd_.Rand8()
425 uint8_t* ref_; member in class:__anon16450::MseTest
607 uint8_t *ref_; member in class:__anon16450::SubpelVarianceTest
    [all...]
  /external/regex-re2/re2/
regexp.cc 20 ref_(1),
66 if (ref_ < kMaxRef)
67 return ref_;
80 if (ref_ >= kMaxRef-1) {
86 if (ref_ == kMaxRef) {
92 ref_ = kMaxRef;
98 ref_++;
104 if (ref_ == kMaxRef) {
109 ref_ = r;
117 ref_--
    [all...]
regexp.h 525 // when ref_ reaches kMaxRef.
526 uint16 ref_; member in class:re2::Regexp
  /external/gmock/include/gmock/
gmock-actions.h 539 explicit ReturnRefAction(T& ref) : ref_(ref) {} // NOLINT
551 return Action<F>(new Impl<F>(ref_));
562 explicit Impl(T& ref) : ref_(ref) {} // NOLINT
565 return ref_;
569 T& ref_; member in class:testing::internal::ReturnRefAction::Impl
574 T& ref_; member in class:testing::internal::ReturnRefAction
    [all...]
  /external/google-breakpad/src/testing/include/gmock/
gmock-actions.h 539 explicit ReturnRefAction(T& ref) : ref_(ref) {} // NOLINT
551 return Action<F>(new Impl<F>(ref_));
562 explicit Impl(T& ref) : ref_(ref) {} // NOLINT
565 return ref_;
569 T& ref_; member in class:testing::internal::ReturnRefAction::Impl
574 T& ref_; member in class:testing::internal::ReturnRefAction
    [all...]
  /external/libchrome/base/
bind_helpers.h 534 MaybeScopedRefPtr(T* o, const Rest&...) : ref_(o) {}
535 scoped_refptr<T> ref_; member in struct:base::internal::MaybeScopedRefPtr
547 MaybeScopedRefPtr(const T* o, const Rest&...) : ref_(o) {}
548 scoped_refptr<const T> ref_; member in struct:base::internal::MaybeScopedRefPtr
bind_internal.h 407 ref_(bound_args...),
411 MaybeScopedRefPtr<HasIsMethodTag<Runnable>::value, BoundArgs...> ref_; member in struct:base::internal::final
  /external/libweave/third_party/chromium/base/
bind_helpers.h 473 MaybeScopedRefPtr(T* o, const Rest&...) : ref_(o) {}
474 scoped_refptr<T> ref_; member in struct:base::internal::MaybeScopedRefPtr
486 MaybeScopedRefPtr(const T* o, const Rest&...) : ref_(o) {}
487 scoped_refptr<const T> ref_; member in struct:base::internal::MaybeScopedRefPtr
bind_internal.h 407 ref_(bound_args...),
411 MaybeScopedRefPtr<HasIsMethodTag<Runnable>::value, BoundArgs...> ref_; member in struct:base::internal::final
  /external/deqp/modules/gles3/functional/
es3fTextureShadowTests.cpp 188 FilterCase (const glu::Texture2D* tex_, const float ref_, const tcu::Vec2& minCoord_, const tcu::Vec2& maxCoord_)
192 , ref (ref_)
439 FilterCase (const glu::TextureCube* tex_, const float ref_, const tcu::Vec2& bottomLeft_, const tcu::Vec2& topRight_)
443 , ref (ref_)
732 FilterCase (const glu::Texture2DArray* tex_, float ref_, const tcu::Vec3& minCoord_, const tcu::Vec3& maxCoord_)
736 , ref (ref_)
    [all...]
  /external/valgrind/drd/tests/
tsan_unittest.cpp 3754 int ref_; member in struct:RefCountedClass
3936 int ref_; \/\/ used in atomic ops. member in struct:AtomicRefCountedClass
    [all...]
  /external/deqp/framework/common/
tcuTexture.cpp     [all...]
  /art/compiler/optimizing/
code_generator_arm64.cc 636 ref_(ref),
744 parallel_move.AddMove(ref_,
779 size_t ref = static_cast<int>(XRegisterFrom(ref_).code());
796 const Location ref_; member in class:art::arm64::ReadBarrierForHeapReferenceSlowPathARM64
    [all...]
code_generator_arm.cc 468 ref_(ref),
571 parallel_move.AddMove(ref_,
605 size_t ref = static_cast<int>(ref_.AsRegister<Register>());
622 const Location ref_; member in class:art::arm::ReadBarrierForHeapReferenceSlowPathARM
    [all...]
code_generator_x86.cc 485 ref_(ref),
588 parallel_move.AddMove(ref_,
622 size_t ref = static_cast<int>(ref_.AsRegister<Register>());
639 const Location ref_; member in class:art::x86::ReadBarrierForHeapReferenceSlowPathX86
    [all...]
code_generator_x86_64.cc 506 ref_(ref),
606 parallel_move.AddMove(ref_,
642 size_t ref = static_cast<int>(ref_.AsRegister<CpuRegister>().AsRegister());
659 const Location ref_; member in class:art::x86_64::ReadBarrierForHeapReferenceSlowPathX86_64
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
elfxx-mips.c     [all...]

Completed in 474 milliseconds