HomeSort by relevance Sort by last modified time
    Searched defs:l_ (Results 1 - 5 of 5) sorted by null

  /external/libcxx/test/support/
nasty_containers.hpp 160 nasty_list() : l_() {}
161 explicit nasty_list(size_type n) : l_(n) {}
162 nasty_list(size_type n, const value_type& value) : l_(n,value) {}
164 nasty_list(Iter first, Iter last) : l_(first, last) {}
166 nasty_list(std::initializer_list<value_type> il) : l_(il) {}
172 nasty_list& operator=(std::initializer_list<value_type> il) { l_ = il; return *this; }
175 void assign(Iter first, Iter last) { l_.assign(first, last); }
176 void assign(size_type n, const value_type& t) { l_.assign(n, t); }
178 void assign(std::initializer_list<value_type> il) { l_.assign(il); }
182 iterator begin() TEST_NOEXCEPT { return l_.begin();
281 nested_container l_; member in class:nasty_list
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
nasty_containers.hpp 160 nasty_list() : l_() {}
161 explicit nasty_list(size_type n) : l_(n) {}
162 nasty_list(size_type n, const value_type& value) : l_(n,value) {}
164 nasty_list(Iter first, Iter last) : l_(first, last) {}
166 nasty_list(std::initializer_list<value_type> il) : l_(il) {}
172 nasty_list& operator=(std::initializer_list<value_type> il) { l_ = il; return *this; }
175 void assign(Iter first, Iter last) { l_.assign(first, last); }
176 void assign(size_type n, const value_type& t) { l_.assign(n, t); }
178 void assign(std::initializer_list<value_type> il) { l_.assign(il); }
182 iterator begin() TEST_NOEXCEPT { return l_.begin();
281 nested_container l_; member in class:nasty_list
    [all...]
  /art/dexlayout/
dex_writer.cc 97 uint64_t l_; member in union:art::DoubleUnion
103 uint64_t long_value = double_union.l_;
    [all...]
  /build/kati/
parser.cc 71 l_ = 0;
73 for (l_ = 0; l_ < buf_.size();) {
78 StringPiece line(buf_.data() + l_, e - l_);
88 l_ = e + 1;
150 return ::FindEndOfLine(buf_, l_, lf_cnt);
295 define_start_ = l_;
310 rhs = buf_.substr(define_start_, l_ - define_start_ - 1);
512 size_t l_; member in class:Parser
    [all...]
  /external/annotation-tools/asmx/test/lib/
ccl.jar 

Completed in 76 milliseconds