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

  /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/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::__anon3780::FakeComObject
  /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/expat/xmlwf/
xmlwin32url.cxx 41 ULONG ref_; member in class:Callback
50 return ref_++;
56 if (--ref_ == 0) {
60 return ref_;
228 ref_(0),
  /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/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/ceres-solver/internal/ceres/gmock/
gmock.h 1435 T& ref_; member in class:testing::internal::ReturnRefAction::Impl
1440 T& ref_; member in class:testing::internal::ReturnRefAction
    [all...]

Completed in 256 milliseconds