HomeSort by relevance Sort by last modified time
    Searched refs:current_pos (Results 1 - 15 of 15) 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 737 uint64_t raw_svector_ostream::current_pos() const { function in class:raw_svector_ostream
762 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;
raw_ostream.h 84 uint64_t tell() const { return current_pos() + GetNumBytesInBuffer(); }
252 /// current_pos - Return the current position within the stream, not
254 virtual uint64_t current_pos() const = 0;
313 /// current_pos - Return the current position within the stream, not
315 virtual uint64_t current_pos() const { return pos; } function in class:llvm::raw_fd_ostream
430 /// current_pos - Return the current position within the stream, not
432 virtual uint64_t current_pos() const { return OS.size(); } function in class:llvm::raw_string_ostream
454 /// current_pos - Return the current position within the stream, not
456 virtual uint64_t current_pos() const;
480 /// 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 { function in class:llvm::formatted_raw_ostream
63 // This has the same effect as calling TheStream.current_pos(),
circular_raw_ostream.h 86 /// current_pos - Return the current position within the stream,
89 virtual uint64_t current_pos() const { function in class:llvm::circular_raw_ostream
90 // This has the same effect as calling TheStream.current_pos(),
  /external/v8/src/
scanner-base.cc 463 int current_pos = source_pos(); local
464 ASSERT_EQ(next_.location.end_pos, current_pos);
466 ASSERT(pos >= current_pos);
467 if (pos != current_pos) {
hydrogen.cc 5986 UsePosition* current_pos = range->first_pos(); local
    [all...]
  /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) {
  /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/vp8/encoder/
firstpass.c 2373 FIRSTPASS_STATS *current_pos = cpi->stats_in; local
    [all...]

Completed in 617 milliseconds