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

1 2 3 4 5

  /external/chromium_org/net/base/
upload_progress.h 14 UploadProgress() : size_(0), position_(0) {}
16 : size_(size), position_(position) {}
19 uint64 position() const { return position_; }
23 uint64 position_; member in class:net::UploadProgress
  /external/chromium_org/third_party/ots/test/
file-stream.h 16 : file_(stream), position_(0) {
24 position_ += length;
33 position_ = position;
38 position_ = position;
46 return position_;
51 off_t position_; member in class:ots::FILEStream
  /external/chromium_org/media/filters/
in_memory_url_protocol.cc 15 position_(0),
25 int64 available_bytes = size_ - position_;
30 memcpy(data, data_ + position_, size);
31 position_ += size;
41 *position_out = position_;
48 position_ = position;
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
memory_input_stream.cc 32 position_(0),
41 return length_ - position_;
63 if (position_ >= length_) {
69 byte_t value = buffer_[position_++];
85 if (position_ >= length_) {
91 size_t read_count = std::min<size_t>(length_ - position_, length);
95 memcpy(&((*b)[offset]), buffer_ + position_, read_count);
96 position_ += read_count;
113 skip_count = std::max<int64_t>(0 - (int64_t)position_, n);
114 position_ -= (size_t)(0 - skip_count)
    [all...]
file_input_stream.cc 30 position_(0),
39 return length_ - position_;
46 position_ = 0;
75 position_ += length;
97 size_t read_count = std::min<size_t>(length_ - position_, length);
102 position_ += actual_read;
119 skip_count = std::max<int64_t>(0 - (int64_t)position_, n);
120 position_ -= (size_t)(0 - skip_count);
121 fseek(file_, position_, SEEK_SET);
123 skip_count = std::min<size_t>(length_ - position_, (size_t)n)
    [all...]
  /external/sfntly/cpp/src/sfntly/port/
memory_input_stream.cc 30 position_(0),
39 return length_ - position_;
61 if (position_ >= length_) {
67 byte_t value = buffer_[position_++];
83 if (position_ >= length_) {
89 size_t read_count = std::min<size_t>(length_ - position_, length);
93 memcpy(&((*b)[offset]), buffer_ + position_, read_count);
94 position_ += read_count;
111 skip_count = std::max<int64_t>(0 - (int64_t)position_, n);
112 position_ -= (size_t)(0 - skip_count)
    [all...]
file_input_stream.cc 28 position_(0),
37 return length_ - position_;
44 position_ = 0;
73 position_ += length;
95 size_t read_count = std::min<size_t>(length_ - position_, length);
100 position_ += actual_read;
117 skip_count = std::max<int64_t>(0 - (int64_t)position_, n);
118 position_ -= (size_t)(0 - skip_count);
119 fseek(file_, position_, SEEK_SET);
121 skip_count = std::min<size_t>(length_ - position_, (size_t)n)
    [all...]
  /external/chromium_org/chrome/common/
partial_circular_buffer.cc 24 position_(0),
44 position_(0),
55 position_ = buffer_data_->end_position;
73 if (position_ < buffer_data_->wrap_position) {
74 uint32 to_wrap_pos = buffer_data_->wrap_position - position_;
77 memcpy(buffer_uint8, buffer_data_->data + position_, to_read);
78 position_ += to_read;
81 if (position_ == buffer_data_->wrap_position &&
86 position_ = buffer_data_->end_position;
100 DCHECK_GE(position_, buffer_data_->wrap_position)
    [all...]
  /external/chromium_org/content/browser/geolocation/
mock_location_provider.cc 40 position_ = position;
41 NotifyCallback(position_);
60 *position = position_;
79 position_.accuracy = 3;
80 position_.latitude = 4.3;
81 position_.longitude = -7.8;
84 position_.timestamp = base::Time::Now();
86 position_.error_code = Geoposition::ERROR_CODE_POSITION_UNAVAILABLE;
111 position_));
  /external/ceres-solver/internal/ceres/
block_structure.h 52 Block(int size_, int position_) : size(size_), position(position_) {}
60 Cell(int block_id_, int position_)
61 : block_id(block_id_), position(position_) {}
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
zero_copy_stream_impl_lite.cc 59 position_(0),
67 if (position_ < size_) {
68 last_returned_size_ = min(block_size_, size_ - position_);
69 *data = data_ + position_;
71 position_ += last_returned_size_;
85 position_ -= count;
92 if (count > size_ - position_) {
93 position_ = size_;
96 position_ += count;
102 return position_;
    [all...]
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_impl_lite.cc 57 position_(0),
65 if (position_ < size_) {
66 last_returned_size_ = min(block_size_, size_ - position_);
67 *data = data_ + position_;
69 position_ += last_returned_size_;
83 position_ -= count;
90 if (count > size_ - position_) {
91 position_ = size_;
94 position_ += count;
100 return position_;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
utils.h 186 : buffer_(buffer, size), position_(0) { }
195 return position_;
203 position_ = position;
207 void Reset() { position_ = 0; }
214 ASSERT(!is_finalized() && position_ < buffer_.length());
215 buffer_[position_++] = c;
227 ASSERT(!is_finalized() && position_ + n < buffer_.length());
229 memcpy(&buffer_[position_], s, n * kCharSize);
230 position_ += n;
244 ASSERT(!is_finalized() && position_ < buffer_.length())
    [all...]
  /external/chromium_org/v8/src/
zone-inl.h 34 position_ += ((~size) & 4) & (reinterpret_cast<intptr_t>(position_) & 4);
40 Address result = position_;
49 if (size_with_redzone > limit_ - position_) {
52 position_ += size_with_redzone;
57 ASSERT(redzone_position + kASanRedzoneBytes == position_);
utils.cc 20 position_ = 0;
30 ASSERT(!is_finalized() && position_ + n <= buffer_.length());
32 MemCopy(&buffer_[position_], s, n * kCharSize);
33 position_ += n;
54 position_ += digits;
56 buffer_[position_ - i] = '0' + static_cast<char>(number % 10);
63 ASSERT(!is_finalized() && position_ <= buffer_.length());
65 if (position_ == buffer_.length()) {
66 position_--;
68 for (int i = 3; i > 0 && position_ > i; --i) buffer_[position_ - i] = '.'
    [all...]
json-parser.h 38 position_(-1) {
52 position_++;
53 if (position_ >= source_length_) {
56 c0_ = seq_source_->SeqOneByteStringGet(position_);
58 c0_ = source_->Get(position_);
103 if (source_->length() - position_ - 1 > length) {
108 const uint8_t* input_chars = seq_source_->GetChars() + position_ + 1;
118 position_ = position_ + length + 1;
195 int position_; member in class:v8::internal::BASE_EMBEDDED
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
font_input_stream.cc 24 : stream_(is), position_(0), length_(0), bounded_(false) {
28 : stream_(is), position_(0), length_(length), bounded_(true) {
68 if (!stream_ || (bounded_ && position_ >= length_)) {
73 position_++;
80 (bounded_ && position_ >= length_)) {
84 bounded_ ? std::min<int32_t>(length, (int32_t)(length_ - position_)) :
87 position_ += bytes_read;
135 position_ += skipped;
font_output_stream.cc 25 position_(0) {
35 position_++;
42 position_ += b->size();
59 position_ += len;
74 position_ += len;
126 position_ = 0;
font_input_stream.h 75 virtual int64_t position() { return position_; }
90 int64_t position_; member in class:sfntly::FontInputStream
font_output_stream.h 51 virtual size_t position() { return position_; }
74 size_t position_; member in class:sfntly::FontOutputStream
  /external/sfntly/cpp/src/sfntly/data/
font_input_stream.cc 24 : stream_(is), position_(0), length_(0), bounded_(false) {
28 : stream_(is), position_(0), length_(length), bounded_(true) {
68 if (!stream_ || (bounded_ && position_ >= length_)) {
73 position_++;
80 (bounded_ && position_ >= length_)) {
84 bounded_ ? std::min<int32_t>(length, (int32_t)(length_ - position_)) :
87 position_ += bytes_read;
135 position_ += skipped;
font_output_stream.cc 25 position_(0) {
35 position_++;
42 position_ += b->size();
59 position_ += len;
74 position_ += len;
126 position_ = 0;
font_input_stream.h 75 virtual int64_t position() { return position_; }
90 int64_t position_; member in class:sfntly::FontInputStream
  /external/chromium_org/sdch/open-vcdiff/src/
headerparser.h 46 return end_ - position_;
51 return position_ - start_;
57 const char* UnparsedData() const { return position_; }
60 const char** UnparsedDataAddr() { return &position_; }
70 position_ = end_;
81 position_ = start_;
89 // Must always respect start_ <= position_ <= end_.
90 const char* position_; member in class:open_vcdiff::ParseableChunk
  /external/chromium_org/content/browser/fileapi/
upload_file_system_file_element_reader.cc 29 position_(0),
41 position_ = 0;
69 return GetContentLength() - position_;
110 position_ += result;
111 DCHECK_LE(position_, GetContentLength());

Completed in 867 milliseconds

1 2 3 4 5