HomeSort by relevance Sort by last modified time
    Searched full:last (Results 476 - 500 of 22121) sorted by null

<<11121314151617181920>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.binary.search/lower.bound/
lower_bound.pass.cpp 15 // lower_bound(Iter first, Iter last, const T& value);
25 test(Iter first, Iter last, const T& value)
27 Iter i = std::lower_bound(first, last, value);
30 for (Iter j = i; j != last; ++j)
lower_bound_comp.pass.cpp 15 // lower_bound(Iter first, Iter last, const T& value);
26 test(Iter first, Iter last, const T& value)
28 Iter i = std::lower_bound(first, last, value, std::greater<int>());
31 for (Iter j = i; j != last; ++j)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.binary.search/upper.bound/
upper_bound.pass.cpp 15 // upper_bound(Iter first, Iter last, const T& value);
25 test(Iter first, Iter last, const T& value)
27 Iter i = std::upper_bound(first, last, value);
30 for (Iter j = i; j != last; ++j)
upper_bound_comp.pass.cpp 15 // upper_bound(Iter first, Iter last, const T& value, Compare comp);
26 test(Iter first, Iter last, const T& value)
28 Iter i = std::upper_bound(first, last, value, std::greater<int>());
31 for (Iter j = i; j != last; ++j)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
construct_iter_iter.pass.cpp 13 // template <class InputIter> vector(InputIter first, InputIter last);
23 test(Iterator first, Iterator last)
25 C c(first, last);
27 assert(c.size() == std::distance(first, last));
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
is_rvalue_reference.hpp 14 // should be the last #include
  /prebuilts/gdb/darwin-x86/include/python2.7/
compile.h 19 int ff_lineno; /* line number of last future statement */
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
FormatParagraph.py 38 first, last = self.editwin.get_selection_indices()
39 if first and last:
40 data = text.get(first, last)
43 first, last, comment_header, data = \
73 text.delete(first, last)
77 text.mark_set("insert", last)
94 last = "%d.0" % lineno
104 return first, last, comment_header, text.get(first, last)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
multifile.py 47 self.last = 0
73 self.last = 0
82 self.last = (self.level > 0)
83 if self.last:
97 self.last = 0
100 self.last = 1
125 if self.level > 1 or self.last:
128 self.last = 0
145 self.last = 0
  /prebuilts/gdb/linux-x86/include/python2.7/
compile.h 19 int ff_lineno; /* line number of last future statement */
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
FormatParagraph.py 38 first, last = self.editwin.get_selection_indices()
39 if first and last:
40 data = text.get(first, last)
43 first, last, comment_header, data = \
73 text.delete(first, last)
77 text.mark_set("insert", last)
94 last = "%d.0" % lineno
104 return first, last, comment_header, text.get(first, last)
  /prebuilts/gdb/linux-x86/lib/python2.7/
multifile.py 47 self.last = 0
73 self.last = 0
82 self.last = (self.level > 0)
83 if self.last:
97 self.last = 0
100 self.last = 1
125 if self.level > 1 or self.last:
128 self.last = 0
145 self.last = 0
  /prebuilts/go/darwin-x86/src/cmd/gofmt/testdata/
rewrite6.golden 8 // attribute for the last argument into account.
rewrite6.input 8 // attribute for the last argument into account.
rewrite7.golden 8 // attribute for the last argument into account.
rewrite7.input 8 // attribute for the last argument into account.
  /prebuilts/go/darwin-x86/src/compress/lzw/
reader.go 61 // last is the most recently seen code, or decoderInvalidCode.
62 clear, eof, hi, overflow, last uint16
65 // suffix[c] is the last of these bytes.
66 // prefix[c] is the code for all but the last byte.
150 if d.last != decoderInvalidCode {
153 d.prefix[d.hi] = d.last
159 d.last = decoderInvalidCode
168 // code == hi is a special case which expands to the last expansion
169 // followed by the head of the last expansion. To find the head, we walk
171 c = d.last
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug357.go 8 // error used to have last line number in file
  /prebuilts/go/linux-x86/src/cmd/gofmt/testdata/
rewrite6.golden 8 // attribute for the last argument into account.
rewrite6.input 8 // attribute for the last argument into account.
rewrite7.golden 8 // attribute for the last argument into account.
rewrite7.input 8 // attribute for the last argument into account.
  /prebuilts/go/linux-x86/src/compress/lzw/
reader.go 61 // last is the most recently seen code, or decoderInvalidCode.
62 clear, eof, hi, overflow, last uint16
65 // suffix[c] is the last of these bytes.
66 // prefix[c] is the code for all but the last byte.
150 if d.last != decoderInvalidCode {
153 d.prefix[d.hi] = d.last
159 d.last = decoderInvalidCode
168 // code == hi is a special case which expands to the last expansion
169 // followed by the head of the last expansion. To find the head, we walk
171 c = d.last
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
bug357.go 8 // error used to have last line number in file
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
compile.h 19 int ff_lineno; /* line number of last future statement */

Completed in 1329 milliseconds

<<11121314151617181920>>