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

1 2 3 4 5 6

  /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/v8/src/
utils.cc 40 position_ = 0;
50 ASSERT(!is_finalized() && position_ + n <= buffer_.length());
52 OS::MemCopy(&buffer_[position_], s, n * kCharSize);
53 position_ += n;
74 position_ += digits;
76 buffer_[position_ - i] = '0' + static_cast<char>(number % 10);
83 ASSERT(!is_finalized() && position_ <= buffer_.length());
85 if (position_ == buffer_.length()) {
86 position_--;
88 for (int i = 3; i > 0 && position_ > i; --i) buffer_[position_ - i] = '.'
    [all...]
zone-inl.h 49 position_ += ((~size) & 4) & (reinterpret_cast<intptr_t>(position_) & 4);
55 Address result = position_;
57 if (size > limit_ - position_) {
60 position_ += size;
scanner.h 156 LiteralBuffer() : is_ascii_(true), position_(0), backing_store_() { }
165 if (position_ >= backing_store_.length()) ExpandBuffer();
168 backing_store_[position_] = static_cast<byte>(code_unit);
169 position_ += kOneByteSize;
175 *reinterpret_cast<uc16*>(&backing_store_[position_]) = code_unit;
176 position_ += kUC16Size;
182 return is_ascii() && keyword.length() == position_ &&
183 (memcmp(keyword.start(), backing_store_.start(), position_) == 0);
188 ASSERT((position_ & 0x1) == 0);
191 position_ >> 1)
253 int position_; member in class:v8::internal::LiteralBuffer
    [all...]
  /external/v8/src/
utils.cc 39 position_ = 0;
49 ASSERT(!is_finalized() && position_ + n < buffer_.length());
51 memcpy(&buffer_[position_], s, n * kCharSize);
52 position_ += n;
73 position_ += digits;
75 buffer_[position_ - i] = '0' + static_cast<char>(number % 10);
82 ASSERT(!is_finalized() && position_ < buffer_.length());
83 buffer_[position_] = '\0';
86 ASSERT(strlen(buffer_.start()) == static_cast<size_t>(position_));
87 position_ = -1
    [all...]
zone-inl.h 50 position_ += ((~size) & 4) & (reinterpret_cast<intptr_t>(position_) & 4);
56 Address result = position_;
58 if (size > limit_ - position_) {
61 position_ += size;
  /external/chromium_org/media/filters/
in_memory_url_protocol.cc 13 position_(0),
20 int available_bytes = size_ - position_;
24 memcpy(data, data_ + position_, size);
25 position_ += size;
33 *position_out = position_;
40 position_ = position;
  /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_));
core_location_provider_mac.h 35 Geoposition position_; member in class:content::CoreLocationProviderMac
  /external/chromium/net/spdy/
spdy_io_buffer.h 43 return position_ > other.position_;
49 uint64 position_; member in class:net::SpdyIOBuffer
spdy_io_buffer.cc 17 position_(++order_),
20 SpdyIOBuffer::SpdyIOBuffer() : priority_(0), position_(0), stream_(NULL) {}
  /external/ceres-solver/internal/ceres/
block_structure.h 54 Block(int size_, int position_) : size(size_), position(position_) {}
62 Cell(int block_id_, int position_)
63 : block_id(block_id_), position(position_) {}
  /external/chromium_org/third_party/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/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/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;
  /external/chromium/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/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/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/webkit/browser/fileapi/
upload_file_system_file_element_reader.cc 27 position_(0),
39 position_ = 0;
67 return GetContentLength() - position_;
108 position_ += result;
109 DCHECK_LE(position_, GetContentLength());
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
utils.h 190 : buffer_(buffer, size), position_(0) { }
199 return position_;
207 position_ = position;
211 void Reset() { position_ = 0; }
218 ASSERT(!is_finalized() && position_ < buffer_.length());
219 buffer_[position_++] = c;
231 ASSERT(!is_finalized() && position_ + n < buffer_.length());
233 memcpy(&buffer_[position_], s, n * kCharSize);
234 position_ += n;
248 ASSERT(!is_finalized() && position_ < buffer_.length())
    [all...]

Completed in 719 milliseconds

1 2 3 4 5 6