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

12 3 4 5 6

  /external/v8/src/
scanner.h 175 LiteralBuffer() : is_ascii_(true), position_(0), backing_store_() { }
184 if (position_ >= backing_store_.length()) ExpandBuffer();
187 backing_store_[position_] = static_cast<byte>(code_unit);
188 position_ += kASCIISize;
194 *reinterpret_cast<uc16*>(&backing_store_[position_]) = code_unit;
195 position_ += kUC16Size;
202 ASSERT((position_ & 0x1) == 0);
205 position_ >> 1);
212 position_);
216 return is_ascii_ ? position_ : (position_ >> 1)
267 int position_; member in class:v8::internal::LiteralBuffer
    [all...]
zone.cc 73 position_(0),
144 position_ = RoundUp(start, kAlignment);
151 position_ = limit_ = 0;
171 ASSERT(size > limit_ - position_);
204 position_ = result + size;
206 if (position_ < result) {
211 ASSERT(position_ <= limit_);
json-parser.h 57 position_++;
58 if (position_ >= source_length_) {
61 c0_ = seq_source_->SeqAsciiStringGet(position_);
63 c0_ = source_->Get(position_);
163 int position_; member in class:v8::internal::BASE_EMBEDDED
179 position_ = -1;
223 position_,
224 position_ + 1);
354 int beg_pos = position_;
393 int length = position_ - beg_pos
    [all...]
  /external/chromium_org/v8/src/
json-parser.h 61 position_(-1) {
75 position_++;
76 if (position_ >= source_length_) {
79 c0_ = seq_source_->SeqOneByteStringGet(position_);
81 c0_ = source_->Get(position_);
126 if (source_->length() - position_ - 1 > length) {
131 const uint8_t* input_chars = seq_source_->GetChars() + position_ + 1;
141 position_ = position_ + length + 1;
218 int position_; member in class:v8::internal::BASE_EMBEDDED
    [all...]
zone.cc 73 position_(0),
121 position_ = RoundUp(start, kAlignment);
128 position_ = limit_ = 0;
181 ASSERT(size > limit_ - position_);
214 position_ = result + size;
216 if (position_ < result) {
221 ASSERT(position_ <= limit_);
serialize.h 166 : data_(array), length_(length), position_(0) { }
168 bool HasMore() { return position_ < length_; }
171 ASSERT(position_ < length_);
172 return data_[position_++];
178 ASSERT(position_ + sizeof(answer) <= length_ + 0u);
179 answer = *reinterpret_cast<const int32_t*>(data_ + position_);
181 int32_t answer = data_[position_];
182 answer |= data_[position_ + 1] << 8;
183 answer |= data_[position_ + 2] << 16;
184 answer |= data_[position_ + 3] << 24
    [all...]
  /external/sfntly/cpp/src/sfntly/data/
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/chromium_org/media/filters/
in_memory_url_protocol.h 34 int64 position_; member in class:media::InMemoryUrlProtocol
  /external/chromium_org/ppapi/tests/
test_mouse_lock.h 34 pp::Rect position_; member in class:TestMouseLock
test_mouse_lock.cc 32 position_ = view.GetRect();
73 position_.CenterPoint(),
  /external/chromium_org/chrome/renderer/spellchecker/
spellcheck_worditerator.cc 297 position_(UBRK_DONE),
348 position_ = ubrk_first(iterator_);
349 if (position_ == UBRK_DONE)
366 if (!text_ || position_ == UBRK_DONE)
377 if (Normalize(position_, next - position_, word_string)) {
378 *word_start = position_;
379 *word_length = next - position_;
380 position_ = next;
384 position_ = next
    [all...]
  /art/compiler/utils/
assembler.h 50 Label() : position_(0) {}
61 return IsBound() ? -position_ - kPointerSize : position_ - kPointerSize;
66 return position_ - kWordSize;
69 bool IsBound() const { return position_ < 0; }
70 bool IsUnused() const { return position_ == 0; }
71 bool IsLinked() const { return position_ > 0; }
74 int position_; member in class:art::Label
77 position_ = 0;
82 position_ = -position - kPointerSize
110 int position_; member in class:art::AssemblerFixup
    [all...]
  /external/chromium_org/chrome/browser/ui/views/location_bar/
location_bar_layout.h 79 Position position_; member in class:LocationBarLayout
  /external/chromium_org/chrome/common/
partial_circular_buffer.h 61 uint32 position_; member in class:PartialCircularBuffer
  /external/chromium_org/content/browser/geolocation/
mock_location_provider.h 34 Geoposition position_; member in class:content::MockLocationProvider
geolocation_provider_impl.cc 63 if (position_.Validate() ||
64 position_.error_code != Geoposition::ERROR_CODE_NONE) {
65 callback.Run(position_);
113 position_ = position;
149 position_ = Geoposition();
207 position_ = position;
214 callback.Run(position_);
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
zero_copy_stream_impl_lite.h 84 int position_; member in class:google::protobuf::io::ArrayInputStream
116 int position_; member in class:google::protobuf::io::ArrayOutputStream
230 int64 position_; member in class:google::protobuf::io::CopyingInputStreamAdaptor
319 int64 position_; member in class:google::protobuf::io::CopyingOutputStreamAdaptor
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_impl_lite.h 84 int position_; member in class:google::protobuf::io::ArrayInputStream
116 int position_; member in class:google::protobuf::io::ArrayOutputStream
230 int64 position_; member in class:google::protobuf::io::CopyingInputStreamAdaptor
319 int64 position_; member in class:google::protobuf::io::CopyingOutputStreamAdaptor
  /external/sfntly/cpp/src/sfntly/port/
file_input_stream.h 51 size_t position_; member in class:sfntly::FileInputStream
memory_input_stream.h 51 size_t position_; member in class:sfntly::MemoryInputStream
  /external/chromium_org/remoting/base/
compound_buffer.h 108 int position() const { return position_; }
121 int position_; member in class:remoting::CompoundBufferInputStream
compound_buffer.cc 200 position_(0),
219 position_ += read_size;
225 DCHECK_EQ(position_, buffer_->total_bytes());
243 position_ -= count;
244 DCHECK_GE(position_, 0);
260 position_ += read;
274 return position_;
  /external/chromium_org/chrome/browser/chromeos/policy/
device_status_collector.cc 177 position_ = position;
243 position_ = content::Geoposition();
390 if (!position_.Validate()) {
393 location->set_error_message(position_.error_message);
395 location->set_latitude(position_.latitude);
396 location->set_longitude(position_.longitude);
397 location->set_accuracy(position_.accuracy);
399 (position_.timestamp - Time::UnixEpoch()).InMilliseconds());
401 if (position_.altitude > -10000.)
402 location->set_altitude(position_.altitude)
    [all...]
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
regexp_adapter_icu.cc 71 position_(0) {}
76 return UnicodeStringToUtf8String(utf8_input_.tempSubString(position_));
87 return position_;
92 position_ = position;
97 int position_; member in class:i18n::phonenumbers::IcuRegExpInput

Completed in 1733 milliseconds

12 3 4 5 6