Home
last modified time | relevance | path

Searched refs:inner_ (Results 1 – 2 of 2) sorted by relevance

/external/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/
Dconstruct_piecewise_pair_evil.pass.cpp34 explicit EvilAlloc() : inner_(ex::null_memory_resource()) {} in EvilAlloc()
36 EvilAlloc(ex::polymorphic_allocator<T> & a) : inner_(a) {} in EvilAlloc()
37 EvilAlloc(ex::polymorphic_allocator<T> && a) : inner_(a) {} in EvilAlloc()
42 template <class U> EvilAlloc(EvilAlloc<U> const & rhs) : inner_(rhs.inner_) {} in EvilAlloc()
44 ex::polymorphic_allocator<T> inner_; member
64 return value_ == v && alloc_.inner_ == a; in holds()
78 return value_ == v && alloc_.inner_ == a; in holds()
93 return value_ == v && alloc_.inner_ == a; in holds()
/external/protobuf/src/google/protobuf/compiler/
Dcommand_line_interface.cc390 virtual bool Next(void** data, int* size) { return inner_->Next(data, size); } in Next()
391 virtual void BackUp(int count) { inner_->BackUp(count); } in BackUp()
392 virtual int64 ByteCount() const { return inner_->ByteCount(); } in ByteCount()
407 google::protobuf::scoped_ptr<io::StringOutputStream> inner_; member in google::protobuf::compiler::CommandLineInterface::MemoryOutputStream
580 inner_(new io::StringOutputStream(&data_)) { in MemoryOutputStream()
589 inner_(new io::StringOutputStream(&data_)) { in MemoryOutputStream()
594 inner_.reset(); in ~MemoryOutputStream()