HomeSort by relevance Sort by last modified time
    Searched refs:current_pos (Results 1 - 17 of 17) sorted by null

  /external/llvm/lib/Support/
raw_os_ostream.cpp 30 uint64_t raw_os_ostream::current_pos() const { return OS.tellp(); } function in class:raw_os_ostream
raw_ostream.cpp 762 uint64_t raw_svector_ostream::current_pos() const { function in class:raw_svector_ostream
787 uint64_t raw_null_ostream::current_pos() const { function in class:raw_null_ostream
  /external/llvm/include/llvm/Support/
raw_os_ostream.h 31 /// current_pos - Return the current position within the stream, not
33 virtual uint64_t current_pos() const LLVM_OVERRIDE;
raw_ostream.h 84 uint64_t tell() const { return current_pos() + GetNumBytesInBuffer(); }
265 /// current_pos - Return the current position within the stream, not
267 virtual uint64_t current_pos() const = 0;
326 /// current_pos - Return the current position within the stream, not
328 virtual uint64_t current_pos() const LLVM_OVERRIDE { return pos; }
447 /// current_pos - Return the current position within the stream, not
449 virtual uint64_t current_pos() const LLVM_OVERRIDE { return OS.size(); }
471 /// current_pos - Return the current position within the stream, not
473 virtual uint64_t current_pos() const LLVM_OVERRIDE;
497 /// current_pos - Return the current position within the stream, no
    [all...]
FormattedStream.h 60 /// current_pos - Return the current position within the stream,
62 virtual uint64_t current_pos() const LLVM_OVERRIDE {
circular_raw_ostream.h 86 /// current_pos - Return the current position within the stream,
89 virtual uint64_t current_pos() const LLVM_OVERRIDE {
90 // This has the same effect as calling TheStream.current_pos(),
  /frameworks/compile/mclinker/include/mcld/Support/
raw_mem_ostream.h 39 /// current_pos - Return the current position within the stream, not
41 virtual uint64_t current_pos() const;
  /frameworks/compile/mclinker/lib/Support/
raw_mem_ostream.cpp 42 uint64_t raw_mem_ostream::current_pos() const function in class:raw_mem_ostream
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_win.cc     [all...]
autocomplete_edit_view_win.h 270 int current_pos,
274 // Returns true if |edit_text| starting at |current_pos| is "://".
275 static bool SchemeEnd(LPTSTR edit_text, int current_pos, int length);
  /external/chromium/chrome/browser/automation/
ui_controls_win.cc 244 POINT current_pos; local
245 ::GetCursorPos(&current_pos);
246 if (x == current_pos.x && y == current_pos.y) {
  /external/v8/src/
scanner.cc 597 int current_pos = source_pos(); local
598 ASSERT_EQ(next_.location.end_pos, current_pos);
600 ASSERT(pos >= current_pos);
601 if (pos != current_pos) {
hydrogen.cc 8068 UsePosition* current_pos = range->first_pos(); local
    [all...]
  /packages/inputmethods/PinyinIME/jni/share/
dictlist.cpp 179 size_t current_pos = 0; local
184 current_pos = lemma_arr[0].hz_str_len;
189 utf16_strncpy(buf_ + current_pos, lemma_arr[i].hanzi_str,
193 current_pos += lemma_arr[i].hz_str_len;
196 assert(current_pos == start_pos_[kMaxLemmaSize]);
  /external/quake/quake/src/QW/client/
in_win.c 39 POINT current_pos; variable
672 GetCursorPos (&current_pos);
673 mx = current_pos.x - window_center_x + mx_accum;
674 my = current_pos.y - window_center_y + my_accum;
757 GetCursorPos (&current_pos);
759 mx_accum += current_pos.x - window_center_x;
760 my_accum += current_pos.y - window_center_y;
  /external/quake/quake/src/WinQuake/
in_win.cpp 39 POINT current_pos; variable
673 GetCursorPos (&current_pos);
674 mx = current_pos.x - window_center_x + mx_accum;
675 my = current_pos.y - window_center_y + my_accum;
763 GetCursorPos (&current_pos);
765 mx_accum += current_pos.x - window_center_x;
766 my_accum += current_pos.y - window_center_y;
  /external/libvpx/libvpx/vp8/encoder/
firstpass.c 2832 FIRSTPASS_STATS *current_pos = cpi->twopass.stats_in; local
    [all...]

Completed in 572 milliseconds