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

1 2

  /external/chromium_org/ppapi/utility/
completion_callback_factory_thread_traits.h 43 RefCount() : ref_(0) {
51 return ++ref_;
59 PP_DCHECK(ref_ > 0);
60 return --ref_;
65 int32_t ref_; member in class:pp::ThreadSafeThreadTraits::RefCount
85 RefCount() : ref_(0) {
101 return ++ref_;
109 return --ref_;
113 int32_t ref_; member in class:pp::NonThreadSafeThreadTraits::RefCount
completion_callback_factory.h 649 ref_.AddRef();
653 if (ref_.Release() == 0)
666 typename ThreadTraits::RefCount ref_; member in class:pp::CompletionCallbackFactory::BackPointer
    [all...]
  /external/chromium_org/sql/
statement.cc 15 // we don't have to NULL-check the ref_ to see if the statement is valid: we
18 : ref_(new Connection::StatementRef(NULL, NULL, false)),
24 : ref_(ref),
38 ref_ = ref;
49 DLOG_IF(FATAL, !ref_->was_valid())
56 ref_->AssertIOAllowed();
61 return CheckError(sqlite3_step(ref_->stmt())) == SQLITE_DONE;
65 ref_->AssertIOAllowed();
70 return CheckError(sqlite3_step(ref_->stmt())) == SQLITE_ROW;
74 ref_->AssertIOAllowed()
    [all...]
statement.h 66 bool is_valid() const { return ref_->is_valid(); }
179 scoped_refptr<Connection::StatementRef> ref_; member in class:sql::Statement
  /external/chromium_org/ppapi/proxy/
proxy_completion_callback_factory.h 22 RefCount() : ref_(0) {
38 return ++ref_;
45 DCHECK(ref_ > 0);
46 return --ref_;
50 int32_t ref_; member in class:ppapi::proxy::ProxyNonThreadSafeThreadTraits::RefCount
  /external/chromium/app/sql/
statement.cc 18 // we don't have to NULL-check the ref_ to see if the statement is valid: we
21 : ref_(new Connection::StatementRef),
26 : ref_(ref),
39 ref_ = ref;
45 return CheckError(sqlite3_step(ref_->stmt())) == SQLITE_DONE;
51 return CheckError(sqlite3_step(ref_->stmt())) == SQLITE_ROW;
59 sqlite3_clear_bindings(ref_->stmt());
60 sqlite3_reset(ref_->stmt());
73 int err = CheckError(sqlite3_bind_null(ref_->stmt(), col + 1));
85 int err = CheckError(sqlite3_bind_int(ref_->stmt(), col + 1, val))
    [all...]
statement.h 59 bool is_valid() const { return ref_->is_valid(); }
157 scoped_refptr<Connection::StatementRef> ref_; member in class:sql::Statement
  /external/chromium/base/memory/
weak_ptr.h 121 // constructor by avoiding the need for a public accessor for ref_. A
123 // base class gives us a way to access ref_ in a protected fashion.
132 WeakReference ref_; member in class:base::internal::WeakPtrBase
164 T* get() const { return ref_.is_valid() ? ptr_ : NULL; }
177 ref_ = internal::WeakReference();
189 // This pointer is only valid when ref_.is_valid() is true. Otherwise, its
weak_ptr.cc 67 WeakPtrBase::WeakPtrBase(const WeakReference& ref) : ref_(ref) {
  /external/chromium_org/base/memory/
weak_ptr.cc 73 WeakPtrBase::WeakPtrBase(const WeakReference& ref) : ref_(ref) {
weak_ptr.h 130 // constructor by avoiding the need for a public accessor for ref_. A
132 // base class gives us a way to access ref_ in a protected fashion.
141 WeakReference ref_; member in class:base::internal::WeakPtrBase
170 return WeakPtr<Derived>(ptr.ref_, static_cast<Derived*>(ptr.ptr_));
203 T* get() const { return ref_.is_valid() ? ptr_ : NULL; }
228 ref_ = internal::WeakReference();
248 // This pointer is only valid when ref_.is_valid() is true. Otherwise, its
  /external/libvpx/libvpx/test/
variance_test.cc 96 ref_ = new uint8_t[block_size_];
98 ASSERT_TRUE(ref_ != NULL);
103 delete[] ref_;
114 uint8_t* ref_; member in class:__anon23894::VarianceTest
126 memset(ref_, j, block_size_);
129 REGISTER_STATE_CHECK(var = variance_(src_, width_, ref_, width_, &sse));
140 ref_[j] = rnd.Rand8();
144 REGISTER_STATE_CHECK(var1 = variance_(src_, width_, ref_, width_, &sse1));
145 const unsigned int var2 = variance_ref(src_, ref_, log2width_,
156 memset(ref_, 255, half)
231 uint8_t *ref_; member in class:__anon23894::SubpelVarianceTest
    [all...]
  /external/chromium/base/win/
scoped_variant_unittest.cc 27 FakeComObject() : ref_(0) {
31 ref_++;
32 return ref_;
36 ref_--;
37 return ref_;
63 return ref_;
67 int ref_; member in class:base::win::__anon4248::FakeComObject
  /external/chromium_org/base/win/
scoped_variant_unittest.cc 27 FakeComObject() : ref_(0) {
31 ref_++;
32 return ref_;
36 ref_--;
37 return ref_;
63 return ref_;
67 int ref_; member in class:base::win::__anon6502::FakeComObject
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
transport.h 391 ChannelMapEntry() : impl_(NULL), candidates_allocated_(false), ref_(0) {}
395 ref_(0) {
398 void AddRef() { ++ref_; }
400 ASSERT(ref_ > 0);
401 --ref_;
403 int ref() const { return ref_; }
415 int ref_; member in struct:cricket::Transport::ChannelMapEntry
  /external/chromium_org/third_party/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/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/chromium/testing/gmock/include/gmock/
gmock-actions.h 537 explicit ReturnRefAction(T& ref) : ref_(ref) {} // NOLINT
549 return Action<F>(new Impl<F>(ref_));
560 explicit Impl(T& ref) : ref_(ref) {} // NOLINT
563 return ref_;
567 T& ref_; member in class:testing::internal::ReturnRefAction::Impl
572 T& ref_; member in class:testing::internal::ReturnRefAction
    [all...]
  /external/valgrind/main/drd/tests/
tsan_unittest.cpp 3750 int ref_; member in struct:RefCountedClass
3932 int ref_; \/\/ used in atomic ops. member in struct:AtomicRefCountedClass
    [all...]
  /external/chromium_org/ui/base/x/
x11_util.cc 213 ref_(1) {
225 ++ref_;
230 if (--ref_ == 0) {
239 int ref_; member in class:ui::__anon17528::XCustomCursorCache::XCustomCursor
    [all...]
  /external/valgrind/unittest/
racecheck_unittest.cc 3561 int ref_; member in struct:RefCountedClass
3743 int ref_; \/\/ used in atomic ops. member in struct:AtomicRefCountedClass
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder.cc 360 TextureRef* ref_; member in class:gpu::gles2::ScopedModifyPixels
363 ScopedModifyPixels::ScopedModifyPixels(TextureRef* ref) : ref_(ref) {
364 if (ref_)
365 ref_->texture()->OnWillModifyPixels();
369 if (ref_)
370 ref_->texture()->OnDidModifyPixels();
    [all...]
  /external/chromium_org/chrome/third_party/chromevox/
chromeVoxChromeBackgroundScript.js     [all...]

Completed in 1860 milliseconds

1 2