Searched refs:current_pos (Results 1 - 14 of 14) sorted by relevance

/external/llvm/lib/Support/
H A Draw_os_ostream.cpp30 uint64_t raw_os_ostream::current_pos() const { return OS.tellp(); } function in class:raw_os_ostream
H A Draw_ostream.cpp756 uint64_t raw_svector_ostream::current_pos() const { function in class:raw_svector_ostream
781 uint64_t raw_null_ostream::current_pos() const { function in class:raw_null_ostream
/external/llvm/include/llvm/Support/
H A Draw_os_ostream.h31 /// current_pos - Return the current position within the stream, not
33 virtual uint64_t current_pos() const;
H A Draw_ostream.h84 uint64_t tell() const { return current_pos() + GetNumBytesInBuffer(); }
261 /// current_pos - Return the current position within the stream, not
263 virtual uint64_t current_pos() const = 0;
322 /// current_pos - Return the current position within the stream, not
324 virtual uint64_t current_pos() const { return pos; } function in class:llvm::raw_fd_ostream
443 /// current_pos - Return the current position within the stream, not
445 virtual uint64_t current_pos() const { return OS.size(); } function in class:llvm::raw_string_ostream
467 /// current_pos - Return the current position within the stream, not
469 virtual uint64_t current_pos() const;
493 /// current_pos
[all...]
H A DFormattedStream.h60 /// 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(),
H A Dcircular_raw_ostream.h86 /// 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/chromium/chrome/browser/autocomplete/
H A Dautocomplete_edit_view_win.cc1151 int current_pos,
1169 if (current_pos < 2) {
1170 // Either current_pos == 0, so we have a "not found" case and return 0,
1171 // or current_pos == 1, and the only character before this position is
1179 // which would mean we'd return current_pos -- which isn't "before the
1182 WordBreakProc(edit_text, current_pos - 1, num_bytes, WB_LEFTBREAK);
1197 if (WordBreakProc(edit_text, current_pos, num_bytes, WB_ISDELIMITER)) {
1200 return current_pos + 1;
1206 WordBreakProc(edit_text, current_pos, num_bytes, WB_RIGHTBREAK);
1217 return !!(WordBreakProc(edit_text, current_pos, num_byte
1150 WordBreakProc(LPTSTR edit_text, int current_pos, int num_bytes, int action) argument
1268 SchemeEnd(LPTSTR edit_text, int current_pos, int length) argument
[all...]
H A Dautocomplete_edit_view_win.h270 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/
H A Dui_controls_win.cc244 POINT current_pos; local
245 ::GetCursorPos(&current_pos);
246 if (x == current_pos.x && y == current_pos.y) {
/external/v8/src/
H A Dscanner.cc597 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) {
H A Dhydrogen.cc8068 UsePosition* current_pos = range->first_pos(); local
8069 while (current_pos != NULL) {
8070 if (current_pos->RegisterIsBeneficial() || FLAG_trace_all_uses) {
8071 trace_.Add(" %d M", current_pos->pos().Value());
8073 current_pos = current_pos->next();
/external/quake/quake/src/QW/client/
H A Din_win.c39 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/
H A Din_win.cpp39 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/
H A Dfirstpass.c2373 FIRSTPASS_STATS *current_pos = cpi->stats_in; local
2401 reset_fpf_position(cpi, current_pos);

Completed in 241 milliseconds