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

12

/external/chromium_org/components/content_settings/core/common/
H A Dcontent_settings_pattern_parser.cc55 size_t current_pos = 0; local
62 current_pos = pattern_spec.find(standard_scheme_separator, start);
63 if (current_pos != std::string::npos) {
64 scheme_component = Component(start, current_pos);
65 start = current_pos + standard_scheme_separator.size();
66 current_pos = start;
68 current_pos = start;
77 if (pattern_spec[current_pos] == '[')
78 current_pos = pattern_spec.find("]", start);
80 if (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
/external/llvm/include/llvm/Support/
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...]
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 DFormattedStream.h62 /// current_pos - Return the current position within the stream,
64 uint64_t current_pos() const override {
/external/chromium_org/ui/views/controls/scrollbar/
H A Dnative_scroll_bar_wrapper.h27 virtual void Update(int viewport_size, int content_size, int current_pos) = 0;
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 Dscroll_bar.cc22 void ScrollBar::Update(int viewport_size, int content_size, int current_pos) { argument
H A Dscroll_bar.h75 virtual void Update(int viewport_size, int content_size, int current_pos);
H A Dnative_scroll_bar.h59 int current_pos) OVERRIDE;
H A Dnative_scroll_bar_views.h58 int current_pos) OVERRIDE;
/external/chromium_org/gpu/command_buffer/service/
H A Dprogram_cache.cc116 size_t current_pos = shader0_size + shader1_size; local
122 memcpy(&buffer.get()[current_pos], it->first.c_str(), name_size);
123 current_pos += name_size;
125 buffer[current_pos++] = value >> 24;
126 buffer[current_pos++] = value >> 16;
127 buffer[current_pos++] = value >> 8;
128 buffer[current_pos++] = value;
/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/chrome/browser/history/
H A Dhistory_backend_android.cc68 int current_pos,
70 DCHECK_LE(-1, current_pos);
73 int cur = current_pos;
74 if (current_pos > destination) {
67 MoveStatement(history::AndroidStatement* statement, int current_pos, int destination) argument
/external/chromium_org/cc/layers/
H A Dscrollbar_layer_impl_base.h30 float current_pos() const { return current_pos_; } function in class:cc::ScrollbarLayerImplBase
31 bool SetCurrentPos(float current_pos);
H A Dscrollbar_layer_impl_base.cc108 bool ScrollbarLayerImplBase::SetCurrentPos(float current_pos) { argument
109 if (current_pos_ == current_pos)
111 current_pos_ = current_pos;
/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/native_client_sdk/src/examples/api/video_decode/
H A Dvideo_decode.cc201 size_t current_pos = *start_pos; local
202 if (current_pos == 0)
203 current_pos = 32; // Skip stream header.
204 uint32_t frame_size = kData[current_pos] + (kData[current_pos + 1] << 8) +
205 (kData[current_pos + 2] << 16) +
206 (kData[current_pos + 3] << 24);
207 current_pos += 12; // Skip frame header.
208 *start_pos = current_pos;
209 *end_pos = current_pos
[all...]
/external/chromium_org/ppapi/examples/video_decode/
H A Dvideo_decode.cc202 size_t current_pos = *start_pos; local
203 if (current_pos == 0)
204 current_pos = 32; // Skip stream header.
205 uint32_t frame_size = kData[current_pos] + (kData[current_pos + 1] << 8) +
206 (kData[current_pos + 2] << 16) +
207 (kData[current_pos + 3] << 24);
208 current_pos += 12; // Skip frame header.
209 *start_pos = current_pos;
210 *end_pos = current_pos
[all...]
/external/chromium_org/base/
H A Dsync_socket_win.cc103 DWORD GetNextChunkSize(size_t current_pos, size_t max_size) { argument
105 return static_cast<DWORD>(((max_size - current_pos) <= UINT_MAX) ?
106 (max_size - current_pos) : UINT_MAX);
/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/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/chrome/browser/history/android/
H A Dandroid_history_provider_service.cc153 int current_pos,
168 current_pos,
172 callback.Run(current_pos);
151 MoveStatement( history::AndroidStatement* statement, int current_pos, int destination, const MoveStatementCallback& callback, base::CancelableTaskTracker* tracker) argument

Completed in 552 milliseconds

12