HomeSort by relevance Sort by last modified time
    Searched refs:current_pos (Results 1 - 25 of 47) 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(content::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 97 int current_pos) {
98 ScrollBar::Update(viewport_size, content_size, current_pos);
101 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 virtual uint64_t current_pos() const LLVM_OVERRIDE;
raw_ostream.h 85 uint64_t tell() const { return current_pos() + GetNumBytesInBuffer(); }
266 /// current_pos - Return the current position within the stream, not
268 virtual uint64_t current_pos() const = 0;
327 /// current_pos - Return the current position within the stream, not
329 virtual uint64_t current_pos() const LLVM_OVERRIDE { return pos; }
432 /// current_pos - Return the current position within the stream, not
434 virtual uint64_t current_pos() const LLVM_OVERRIDE { return OS.size(); }
456 /// current_pos - Return the current position within the stream, not
458 virtual uint64_t current_pos() const LLVM_OVERRIDE;
482 /// current_pos - Return the current position within the stream, no
    [all...]
FormattedStream.h 62 /// current_pos - Return the current position within the stream,
64 virtual uint64_t current_pos() const LLVM_OVERRIDE {
circular_raw_ostream.h 86 /// current_pos - Return the current position within the stream,
89 virtual uint64_t current_pos() const LLVM_OVERRIDE {
90 // This has the same effect as calling TheStream.current_pos(),
  /frameworks/compile/mclinker/include/mcld/Support/
raw_mem_ostream.h 39 /// current_pos - Return the current position within the stream, not
41 virtual uint64_t current_pos() const;
  /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/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) {
  /frameworks/compile/mclinker/lib/Support/
raw_mem_ostream.cpp 42 uint64_t raw_mem_ostream::current_pos() const function in class:raw_mem_ostream
  /external/chromium_org/cc/layers/
scrollbar_layer_impl.h 63 void SetCurrentPos(float current_pos);
scrollbar_layer_impl.cc 214 void ScrollbarLayerImpl::SetCurrentPos(float current_pos) {
215 if (current_pos_ == current_pos)
217 current_pos_ = current_pos;
  /external/chromium_org/ui/base/test/
ui_controls_internal_win.cc 265 POINT current_pos; local
266 ::GetCursorPos(&current_pos);
267 if (x == current_pos.x && y == current_pos.y) {
  /external/chromium_org/native_client_sdk/src/examples/demo/nacl_io/
handlers.c 673 int current_pos; local
715 current_pos = non_variable_len;
718 current_pos += sprintf(*output + current_pos,
722 sprintf(*output + current_pos, "\1%s", inet6_addr_str);
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_win.cc     [all...]
  /external/chromium/chrome/browser/automation/
ui_controls_win.cc 244 POINT current_pos; local
245 ::GetCursorPos(&current_pos);
246 if (x == current_pos.x && y == current_pos.y) {
  /external/chromium_org/v8/src/
scanner.cc 598 int current_pos = source_pos(); local
599 ASSERT_EQ(next_.location.end_pos, current_pos);
601 ASSERT(pos >= current_pos);
602 if (pos != current_pos) {
    [all...]
  /external/v8/src/
scanner.cc 597 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) {
  /external/chromium_org/base/
sync_socket_win.cc 102 DWORD GetNextChunkSize(size_t current_pos, size_t max_size) {
104 return static_cast<DWORD>(((max_size - current_pos) <= UINT_MAX) ?
105 (max_size - current_pos) : UINT_MAX);

Completed in 1205 milliseconds

1 2