Home
last modified time | relevance | path

Searched refs:inner_ (Results 1 – 4 of 4) 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/perfetto/src/trace_processor/importers/gzip/
Dgzip_trace_parser.cc39 if (!inner_) { in Parse()
40 inner_.reset(new ForwardingTraceParser(context_)); in Parse()
71 inner_->Parse(std::move(buffer), result.bytes_written); in Parse()
Dgzip_trace_parser.h40 std::unique_ptr<ChunkedTraceReader> inner_; variable
/external/protobuf/src/google/protobuf/compiler/
Dcommand_line_interface.cc416 virtual bool Next(void** data, int* size) { return inner_->Next(data, size); } in Next()
417 virtual void BackUp(int count) { inner_->BackUp(count); } in BackUp()
418 virtual int64 ByteCount() const { return inner_->ByteCount(); } in ByteCount()
440 std::unique_ptr<io::StringOutputStream> inner_; member in google::protobuf::compiler::CommandLineInterface::MemoryOutputStream
614 inner_(new io::StringOutputStream(&data_)) {} in MemoryOutputStream()
622 inner_(new io::StringOutputStream(&data_)) {} in MemoryOutputStream()
664 inner_.reset(); in ~MemoryOutputStream()