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

<<21222324252627282930>>

  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/
numeric 22 accumulate(InputIterator first, InputIterator last, T init);
26 accumulate(InputIterator first, InputIterator last, T init, BinaryOperation binary_op);
39 partial_sum(InputIterator first, InputIterator last, OutputIterator result);
43 partial_sum(InputIterator first, InputIterator last, OutputIterator result, BinaryOperation binary_op);
47 adjacent_difference(InputIterator first, InputIterator last, OutputIterator result);
51 adjacent_difference(InputIterator first, InputIterator last, OutputIterator result, BinaryOperation binary_op);
54 void iota(ForwardIterator first, ForwardIterator last, T value);
  /external/bison/data/
location.cc 283 position last = loc.end - 1;
285 if (last.filename
287 || *loc.begin.filename != *last.filename))
288 ostr << '-' << last;
289 else if (loc.begin.line != last.line)
290 ostr << '-' << last.line << '.' << last.column;
291 else if (loc.begin.column != last.column)
292 ostr << '-' << last.column;
  /external/chromium-trace/catapult/devil/devil/android/
logcat_monitor_test.py 43 'last line'
110 actual_match = test_log.WaitFor(r'.*last line.*', None)
121 test_log.WaitFor(r'.*last line.*', None)
145 test_log.WaitFor(r'.*last line.*', None)
157 test_log.WaitFor(r'.*last line.*', None)
172 test_log.WaitFor(r'.*last line.*', None)
187 test_log.WaitFor(r'.*last line.*', None)
205 test_log.WaitFor(r'.*last line.*', None)
222 'last line')
  /external/dng_sdk/source/
dng_color_spec.cpp 531 dng_xy_coord last = D50_xy_coord (); local
536 dng_matrix xyzToCamera = FindXYZtoCamera (last);
540 if (Abs_real64 (next.x - last.x) +
541 Abs_real64 (next.y - last.y) < 0.0000001)
549 // in a two value oscillation. So take the average of the last
555 next.x = (last.x + next.x) * 0.5;
556 next.y = (last.y + next.y) * 0.5;
560 last = next;
564 return last;
  /external/jsilver/src/com/google/streamhtmlparser/util/
JavascriptTokenBuffer.java 47 * Size of the ring buffer used to lookup the last token in the javascript
60 /** Index of the last item in our circular buffer. */
123 * Returns the last character in the buffer and removes it from the buffer
126 * @return last character in the buffer or '\0' if the buffer is empty
145 * <p>Position must be negative where -1 is the index of the last
169 * last character in the buffer.
189 * Returns the last javascript identifier/keyword in the buffer.
191 * @return the last identifier or {@code null} if none was found
218 * @param end the index of the last character to copy
  /external/libnfc-nxp/src/
phFriNfc_ISO15693Map.h 70 * file/card storage \b or continue from the last offset. The last Offset set is stored
73 * start reading from the last offset set (continue where it has stopped before).
82 * \retval NFCSTATUS_SUCCESS Last Byte of the card read.
114 * file/card storage \b or continue from the last offset. The last Offset set is stored
117 * start writing from the last offset set (continue where it has stopped before).
124 * \retval NFCSTATUS_EOF_NDEF_CONTAINER_REACHED Last byte is written to the card after this
200 * \retval NFCSTATUS_EOF_NDEF_CONTAINER_REACHED Last byte is written to the card after this
  /external/v8/tools/release/
auto_roll.py 34 MESSAGE = "Detect commit ID of the last Chromium roll."
46 # The revision rolled last.
49 assert self["last_version"], "The last rolled v8 revision is not tagged."
69 # There must be some progress between the last roll and the new candidate
72 # compared to the last roll, i.e. if the newest release is a cherry-pick
96 # Make sure the last roll and the roll candidate are releases.
100 assert version, "The revision used as last roll is not tagged."
186 parser.add_argument("--last-roll",
187 help="The git commit ID of the last rolled version. "
  /prebuilts/gdb/darwin-x86/lib/python2.7/curses/
textpad.py 55 returning the index of the last non-blank character."""
56 last = self.maxx
58 if curses.ascii.ascii(self.win.inch(y, last)) != curses.ascii.SP:
59 last = min(self.maxx, last+1)
61 elif last == 0:
63 last = last - 1
64 return last
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
SearchEngine.py 119 first, last = get_selection(text)
122 start = last
131 start = last
207 last = text.index("sel.last")
209 first = last = None
212 if not last:
213 last = first
214 return first, last
  /prebuilts/gdb/linux-x86/lib/python2.7/curses/
textpad.py 55 returning the index of the last non-blank character."""
56 last = self.maxx
58 if curses.ascii.ascii(self.win.inch(y, last)) != curses.ascii.SP:
59 last = min(self.maxx, last+1)
61 elif last == 0:
63 last = last - 1
64 return last
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
SearchEngine.py 119 first, last = get_selection(text)
122 start = last
131 start = last
207 last = text.index("sel.last")
209 first = last = None
212 if not last:
213 last = first
214 return first, last
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
textpad.py 55 returning the index of the last non-blank character."""
56 last = self.maxx
58 if curses.ascii.ascii(self.win.inch(y, last)) != curses.ascii.SP:
59 last = min(self.maxx, last+1)
61 elif last == 0:
63 last = last - 1
64 return last
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
SearchEngine.py 119 first, last = get_selection(text)
122 start = last
131 start = last
207 last = text.index("sel.last")
209 first = last = None
212 if not last:
213 last = first
214 return first, last
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
textpad.py 55 returning the index of the last non-blank character."""
56 last = self.maxx
58 if curses.ascii.ascii(self.win.inch(y, last)) != curses.ascii.SP:
59 last = min(self.maxx, last+1)
61 elif last == 0:
63 last = last - 1
64 return last
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
SearchEngine.py 119 first, last = get_selection(text)
122 start = last
131 start = last
207 last = text.index("sel.last")
209 first = last = None
212 if not last:
213 last = first
214 return first, last
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
TranslationAdvice.java 29 * where the last source argument is used as a constant. (That is, the
30 * last argument must have a type which indicates it is a known constant.)
37 * using a constant for the last argument
  /dalvik/dx/src/com/android/dx/rop/code/
TranslationAdvice.java 29 * where the last source argument is used as a constant. (That is, the
30 * last argument must have a type which indicates it is a known constant.)
37 * using a constant for the last argument
  /development/tools/axl/
chewperf.py 33 last = 0
39 out.append("%s %d" % (line, (tm - last)))
40 last = tm
  /external/autotest/client/deps/webgl_clear/files/
WebGLClear.html 22 var last = 0.0;
63 if (now - last > 500) {
66 last = now;
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/
effect-callback.js 23 var last = undefined;
34 if (t !== last)
36 last = t;
  /external/clang/utils/TableGen/
ClangASTNodesEmitter.cpp 70 // Returns the first and last non-abstract subrecords
80 Record *First = nullptr, *Last = nullptr;
84 First = Last = Base;
109 Last = Result.second;
112 Last = R;
123 assert (Last && "Got a first node but not a last node for a range!");
129 << Last->getName() << ")\n\n";
132 return std::make_pair(First, Last);
145 << macroName(Root.getName()) << "_RANGE(Base, First, Last)\n"
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
TranslationAdvice.java 29 * where the last source argument is used as a constant. (That is, the
30 * last argument must have a type which indicates it is a known constant.)
37 * using a constant for the last argument
  /external/e2fsprogs/e2fsck/
CHANGES 18 The last bit in the last group of the block bitmap badding was not
21 The free_blocks and free_inodes count in the last group weren't being
  /external/e2fsprogs/lib/ext2fs/
kernel-list.h 92 struct list_head *last = list->prev; local
98 last->next = at;
99 at->prev = last;
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
SortedSetNavigationTester.java 77 sortedSet.last();
90 assertEquals(a, sortedSet.last());
100 assertEquals(c, sortedSet.last());

Completed in 1796 milliseconds

<<21222324252627282930>>