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

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/bind/
bind_template.hpp 20 BOOST_BIND_RETURN l_(type<result_type>(), f_, a, 0);
26 BOOST_BIND_RETURN l_(type<result_type>(), f_, a, 0);
32 BOOST_BIND_RETURN l_(type<result_type>(), f_, a, 0);
38 BOOST_BIND_RETURN l_(type<result_type>(), f_, a, 0);
47 BOOST_BIND_RETURN l_(type<result_type>(), f_, a, 0);
53 BOOST_BIND_RETURN l_(type<result_type>(), f_, a, 0);
61 BOOST_BIND_RETURN l_(type<result_type>(), f_, a, 0);
67 BOOST_BIND_RETURN l_(type<result_type>(), f_, a, 0);
76 BOOST_BIND_RETURN l_(type<result_type>(), f_, a, 0);
82 BOOST_BIND_RETURN l_(type<result_type>(), f_, a, 0)
345 L l_; variable
    [all...]
  /external/libcxx/test/support/
nasty_containers.hpp 156 nasty_list() : l_() {}
157 explicit nasty_list(size_type n) : l_(n) {}
158 nasty_list(size_type n, const value_type& value) : l_(n,value) {}
160 nasty_list(Iter first, Iter last) : l_(first, last) {}
162 nasty_list(std::initializer_list<value_type> il) : l_(il) {}
168 nasty_list& operator=(std::initializer_list<value_type> il) { l_ = il; return *this; }
171 void assign(Iter first, Iter last) { l_.assign(first, last); }
172 void assign(size_type n, const value_type& t) { l_.assign(n, t); }
174 void assign(std::initializer_list<value_type> il) { l_.assign(il); }
178 iterator begin() _NOEXCEPT { return l_.begin();
276 nested_container l_; member in class:nasty_list
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/
nasty_containers.hpp 156 nasty_list() : l_() {}
157 explicit nasty_list(size_type n) : l_(n) {}
158 nasty_list(size_type n, const value_type& value) : l_(n,value) {}
160 nasty_list(Iter first, Iter last) : l_(first, last) {}
162 nasty_list(std::initializer_list<value_type> il) : l_(il) {}
168 nasty_list& operator=(std::initializer_list<value_type> il) { l_ = il; return *this; }
171 void assign(Iter first, Iter last) { l_.assign(first, last); }
172 void assign(size_type n, const value_type& t) { l_.assign(n, t); }
174 void assign(std::initializer_list<value_type> il) { l_.assign(il); }
178 iterator begin() _NOEXCEPT { return l_.begin();
276 nested_container l_; member in class:nasty_list
    [all...]

Completed in 1214 milliseconds