Searched refs:current_pos (Results 1 - 25 of 41) sorted by last modified time

12

/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_debug.cpp93 uint64_t current_pos() const { return pos; } function in class:raw_debug_ostream
96 uint64_t current_pos() { return pos; } function in class:raw_debug_ostream
/external/llvm/include/llvm/MC/
H A DMCLinkerOptimizationHint.h140 uint64_t current_pos() const override { return Count; }
/external/llvm/include/llvm/Support/
H A DFormattedStream.h62 /// current_pos - Return the current position within the stream,
64 uint64_t current_pos() const override {
H A Dcircular_raw_ostream.h86 /// current_pos - Return the current position within the stream,
89 uint64_t current_pos() const override {
90 // This has the same effect as calling TheStream.current_pos(),
H A Draw_os_ostream.h31 /// current_pos - Return the current position within the stream, not
33 uint64_t current_pos() const override;
H A Draw_ostream.h90 uint64_t tell() const { return current_pos() + GetNumBytesInBuffer(); }
271 /// current_pos - Return the current position within the stream, not
273 virtual uint64_t current_pos() const = 0;
332 /// current_pos - Return the current position within the stream, not
334 uint64_t current_pos() const override { return pos; }
437 /// current_pos - Return the current position within the stream, not
439 uint64_t current_pos() const override { return OS.size(); }
461 /// current_pos - Return the current position within the stream, not
463 uint64_t current_pos() const override;
487 /// current_pos
[all...]
/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.cpp753 uint64_t raw_svector_ostream::current_pos() const { function in class:raw_svector_ostream
778 uint64_t raw_null_ostream::current_pos() const { function in class:raw_null_ostream
/external/libvpx/libvpx/vp8/encoder/
H A Dfirstpass.c2839 FIRSTPASS_STATS *current_pos = cpi->twopass.stats_in; local
2867 reset_fpf_position(cpi, current_pos);
/external/chromium_org/v8/src/
H A Dhydrogen.cc12422 UsePosition* current_pos = range->first_pos(); local
12423 while (current_pos != NULL) {
12424 if (current_pos->RegisterIsBeneficial() || FLAG_trace_all_uses) {
12425 trace_.Add(" %d M", current_pos->pos().Value());
12427 current_pos = current_pos->next();
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/primitives/
H A Dinput_helpers.cc156 size_t current_pos = 0; local
158 while ((next_delimiter = to_split.find(delimiter, current_pos)) !=
161 current_pos, next_delimiter - current_pos);
163 current_pos = next_delimiter + 1;
165 std::string last_part = to_split.substr(current_pos);
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
H A Dbwe_test_fileutils.cc36 int32_t current_pos = ftell(file_); local
39 fseek(file_, current_pos, SEEK_SET);
40 return current_pos == end_pos;
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dfirstpass.c2839 FIRSTPASS_STATS *current_pos = cpi->twopass.stats_in; local
2867 reset_fpf_position(cpi, current_pos);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_debug.cpp93 uint64_t current_pos() const { return pos; } function in class:raw_debug_ostream
96 uint64_t current_pos() { return pos; } function in class:raw_debug_ostream
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dstun.cc161 size_t current_pos = kStunHeaderSize; local
163 while (current_pos < size) {
166 attr_type = rtc::GetBE16(&data[current_pos]);
167 attr_length = rtc::GetBE16(&data[current_pos + sizeof(attr_type)]);
172 current_pos + attr_length > size) {
180 current_pos += sizeof(attr_type) + sizeof(attr_length) + attr_length;
182 current_pos += (4 - (attr_length % 4));
191 size_t mi_pos = current_pos;
192 rtc::scoped_ptr<char[]> temp_data(new char[current_pos]);
193 memcpy(temp_data.get(), data, current_pos);
[all...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dwebrtcsdp.cc881 size_t current_pos = 0; local
885 if (!ParseSessionDescription(message, &current_pos, &session_id,
894 supports_msid, &current_pos, desc, &candidates,
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
H A Dcpp.py2720 current_pos = Position(line_number, control_match.end() - 1)
2726 open_paren_pos = current_pos
2730 current_pos = close_paren_pos
2732 end_line_of_conditional = current_pos.row
2735 current_pos = _find_in_lines(r'\S', lines, current_pos, None)
2736 if not current_pos:
2740 if lines[current_pos.row][current_pos.column] == '{':
2744 error(current_pos
[all...]
/external/chromium_org/ui/base/test/
H A Dui_controls_internal_win.cc262 POINT current_pos; local
263 ::GetCursorPos(&current_pos);
264 if (screen_x == current_pos.x && screen_y == current_pos.y) {
/external/chromium_org/ui/views/controls/
H A Dscroll_view.cc56 int CheckScrollBounds(int viewport_size, int content_size, int current_pos) { argument
58 if (current_pos < 0)
60 if (current_pos > max)
62 return current_pos;
/external/chromium_org/ui/views/controls/scrollbar/
H A Dnative_scroll_bar.cc93 int current_pos) {
94 ScrollBar::Update(viewport_size, content_size, current_pos);
97 native_wrapper_->Update(viewport_size, content_size, current_pos);
91 Update(int viewport_size, int content_size, int current_pos) argument
H A Dnative_scroll_bar.h59 int current_pos) OVERRIDE;
H A Dnative_scroll_bar_views.cc346 int current_pos) {
347 BaseScrollBar::Update(viewport_size, content_size, current_pos);
344 Update(int viewport_size, int content_size, int current_pos) argument
H A Dnative_scroll_bar_views.h58 int current_pos) OVERRIDE;
H A Dnative_scroll_bar_wrapper.h27 virtual void Update(int viewport_size, int content_size, int current_pos) = 0;
H A Dscroll_bar.cc22 void ScrollBar::Update(int viewport_size, int content_size, int current_pos) { argument

Completed in 505 milliseconds

12