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

1 2

  /external/chromium_org/chrome/common/
content_settings_pattern_parser.cc 66 size_t current_pos = 0; local
72 current_pos = pattern_spec.find(
74 if (current_pos != std::string::npos) {
75 scheme_component = Component(start, current_pos);
76 start = current_pos + strlen(url::kStandardSchemeSeparator);
77 current_pos = start;
79 current_pos = start;
88 if (pattern_spec[current_pos] == '[')
89 current_pos = pattern_spec.find("]", start);
91 if (current_pos == std::string::npos
    [all...]
  /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
  /external/chromium_org/ui/views/controls/scrollbar/
native_scroll_bar_wrapper.h 27 virtual void Update(int viewport_size, int content_size, int current_pos) = 0;
native_scroll_bar.cc 94 int current_pos) {
95 ScrollBar::Update(viewport_size, content_size, current_pos);
98 native_wrapper_->Update(viewport_size, content_size, current_pos);
scroll_bar.cc 22 void ScrollBar::Update(int viewport_size, int content_size, int current_pos) {
native_scroll_bar.h 59 int current_pos) OVERRIDE;
native_scroll_bar_views.h 58 int current_pos) OVERRIDE;
scroll_bar.h 75 virtual void Update(int viewport_size, int content_size, int current_pos);
  /external/llvm/include/llvm/Support/
raw_os_ostream.h 31 /// current_pos - Return the current position within the stream, not
33 uint64_t current_pos() const override;
raw_ostream.h 90 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 - Return the current position within the stream, no
    [all...]
FormattedStream.h 62 /// current_pos - Return the current position within the stream,
64 uint64_t current_pos() const override {
circular_raw_ostream.h 86 /// 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(),
  /external/chromium_org/gpu/command_buffer/service/
program_cache.cc 116 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/
input_helpers.cc 156 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/
bwe_test_fileutils.cc 36 int32_t current_pos = ftell(file_); local
39 fseek(file_, current_pos, SEEK_SET);
40 return current_pos == end_pos;
  /external/chromium_org/cc/layers/
scrollbar_layer_impl_base.h 30 float current_pos() const { return current_pos_; } function in class:cc::ScrollbarLayerImplBase
31 void SetCurrentPos(float current_pos);
scrollbar_layer_impl_base.cc 114 void ScrollbarLayerImplBase::SetCurrentPos(float current_pos) {
115 if (current_pos_ == current_pos)
117 current_pos_ = current_pos;
  /external/chromium_org/chrome/browser/history/
history_backend_android.cc 96 int current_pos,
98 DCHECK_LE(-1, current_pos);
101 int cur = current_pos;
102 if (current_pos > destination) {
  /external/chromium_org/ui/base/test/
ui_controls_internal_win.cc 262 POINT current_pos; local
263 ::GetCursorPos(&current_pos);
264 if (screen_x == current_pos.x && screen_y == current_pos.y) {
  /external/chromium_org/ppapi/examples/video_decode/
video_decode.cc 199 size_t current_pos = *start_pos; local
200 if (current_pos == 0)
201 current_pos = 32; // Skip stream header.
202 uint32_t frame_size = kData[current_pos] + (kData[current_pos + 1] << 8) +
203 (kData[current_pos + 2] << 16) +
204 (kData[current_pos + 3] << 24);
205 current_pos += 12; // Skip frame header.
206 *start_pos = current_pos;
207 *end_pos = current_pos + frame_size
    [all...]
  /external/chromium_org/v8/src/
scanner.cc 582 int current_pos = source_pos(); local
583 ASSERT_EQ(next_.location.end_pos, current_pos);
585 ASSERT(pos >= current_pos);
586 if (pos != current_pos) {
    [all...]
  /external/chromium_org/base/
sync_socket_win.cc 103 DWORD GetNextChunkSize(size_t current_pos, size_t max_size) {
105 return static_cast<DWORD>(((max_size - current_pos) <= UINT_MAX) ?
106 (max_size - current_pos) : UINT_MAX);
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
stun.cc 160 size_t current_pos = kStunHeaderSize; local
162 while (current_pos < size) {
165 attr_type = talk_base::GetBE16(&data[current_pos]);
166 attr_length = talk_base::GetBE16(&data[current_pos + sizeof(attr_type)]);
171 current_pos + attr_length > size) {
179 current_pos += sizeof(attr_type) + sizeof(attr_length) + attr_length;
181 current_pos += (4 - (attr_length % 4));
190 size_t mi_pos = current_pos;
191 talk_base::scoped_ptr<char[]> temp_data(new char[current_pos]);
192 memcpy(temp_data.get(), data, current_pos);
    [all...]
  /external/chromium_org/chrome/browser/history/android/
android_history_provider_service.cc 125 int current_pos,
136 current_pos, destination);
138 request->ForwardResultAsync(request->handle(), current_pos);
android_history_provider_service.h 117 // Moves the statement's current row from |current_pos| to |destination| in DB
121 int current_pos,

Completed in 423 milliseconds

1 2