Searched defs:current_pos (Results 1 - 25 of 28) sorted by relevance

12

/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/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/ui/views/controls/scrollbar/
H A Dscroll_bar.cc22 void ScrollBar::Update(int viewport_size, int content_size, int current_pos) { argument
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_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
/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
/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/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/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/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/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/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/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/chromium_org/v8/src/
H A Dscanner.cc664 int current_pos = source_pos(); local
665 DCHECK_EQ(next_.location.end_pos, current_pos);
667 DCHECK(pos >= current_pos);
668 if (pos != current_pos) {
/external/chromium_org/media/base/android/
H A Dmedia_codec_bridge.cc555 const uint8* current_pos = extra_data; local
560 size_t size = *(++current_pos);
575 current_pos++;
578 base::android::ToJavaByteArray(env, current_pos, header_length[0]);
/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/ime/
H A Dime.cc61 size_t GetPrevCharOffsetUtf8(const std::string& str, size_t current_pos) { argument
62 size_t i = current_pos;
71 size_t GetNextCharOffsetUtf8(const std::string& str, size_t current_pos) { argument
72 size_t i = current_pos;
/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/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/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/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);

Completed in 6667 milliseconds

12