Home
last modified time | relevance | path

Searched refs:offsets_ (Results 1 – 13 of 13) sorted by relevance

/external/icu/icu4c/source/i18n/
Dcoleitr.cpp56 : UObject(other), iter_(NULL), rbc_(NULL), otherHalf_(0), dir_(0), offsets_(NULL) { in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
63 delete offsets_; in ~CollationElementIterator()
84 if (dir_ < 0 && offsets_ != NULL && !offsets_->isEmpty()) { in getOffset()
92 U_ASSERT(i < offsets_->size()); in getOffset()
93 return offsets_->elementAti(i); in getOffset()
187 if (offsets_ == NULL) { in previous()
188 offsets_ = new UVector32(status); in previous()
189 if (offsets_ == NULL) { in previous()
198 int64_t ce = iter_->previousCE(*offsets_, status); in previous()
206 if (offsets_->isEmpty()) { in previous()
[all …]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
DCollationElementIterator.java123 private UVector32 offsets_; field in CollationElementIterator
202 offsets_ = null; in CollationElementIterator()
289 if (dir_ < 0 && offsets_ != null && !offsets_.isEmpty()) { in getOffset()
297 assert (i < offsets_.size()); in getOffset()
298 return offsets_.elementAti(i); in getOffset()
395 if (offsets_ == null) { in previous()
396 offsets_ = new UVector32(); in previous()
402 long ce = iter_.previousCE(offsets_); in previous()
412 if (offsets_.isEmpty()) { in previous()
416 offsets_.addElement(iter_.getOffset()); in previous()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DCollationElementIterator.java123 private UVector32 offsets_; field in CollationElementIterator
197 offsets_ = null; in CollationElementIterator()
280 if (dir_ < 0 && offsets_ != null && !offsets_.isEmpty()) { in getOffset()
288 assert (i < offsets_.size()); in getOffset()
289 return offsets_.elementAti(i); in getOffset()
384 if (offsets_ == null) { in previous()
385 offsets_ = new UVector32(); in previous()
391 long ce = iter_.previousCE(offsets_); in previous()
401 if (offsets_.isEmpty()) { in previous()
405 offsets_.addElement(iter_.getOffset()); in previous()
[all …]
/external/v8/src/interpreter/
Dbytecode-array-random-iterator.cc14 : BytecodeArrayAccessor(bytecode_array, 0), offsets_(zone) { in BytecodeArrayRandomIterator()
18 offsets_.push_back(current_offset()); in BytecodeArrayRandomIterator()
26 static_cast<size_t>(current_index_) < offsets_.size(); in IsValid()
31 SetOffset(offsets_[current_index_]); in UpdateOffsetFromIndex()
Dbytecode-array-random-iterator.h47 size_t size() const { return offsets_.size(); } in size()
58 DCHECK_LT(offsets_.size() - 1, static_cast<size_t>(INT_MAX)); in GoToEnd()
59 current_index_ = static_cast<int>(offsets_.size() - 1); in GoToEnd()
66 ZoneVector<int> offsets_;
/external/google-breakpad/src/processor/
Dstatic_map-inl.h52 offsets_ = reinterpret_cast<const uint32_t*>( in StaticMap()
142 if (offsets_[node_index] != static_cast<uint32_t>(first_offset)) { in ValidateInMemoryStructure()
150 if (offsets_[node_index] <= offsets_[node_index - 1]) { in ValidateInMemoryStructure()
Dstatic_map.h90 offsets_(0), in StaticMap()
134 const uint32_t* offsets_; variable
Dstatic_map_iterator-inl.h51 offsets_ = reinterpret_cast<const uint32_t*>(base_ + sizeof(num_nodes_)); in StaticMapIterator()
120 return base_ + offsets_[index_]; in GetValueRawPtr()
Dstatic_map_iterator.h104 const uint32_t* offsets_; variable
/external/protobuf/src/google/protobuf/
Dmap_entry.h246 descriptor, entry, offsets_, in CreateDefaultInstance()
279 static int offsets_[2]; variable
299 default_enum_value>::offsets_[2] = {
Dgenerated_message_reflection.cc189 offsets_ (offsets), in GeneratedMessageReflection()
219 offsets_ (offsets), in GeneratedMessageReflection()
1731 offsets_[field->index()]) in MutableRawRepeatedField()
1734 return reinterpret_cast<uint8*>(message) + offsets_[field->index()]; in MutableRawRepeatedField()
1763 offsets_[field->index()])->GetRepeatedField()); in GetRawRepeatedField()
1765 return reinterpret_cast<const uint8*>(&message) + offsets_[field->index()]; in GetRawRepeatedField()
1900 offsets_[index]; in GetRaw()
1910 void* ptr = reinterpret_cast<uint8*>(message) + offsets_[index]; in MutableRaw()
1919 offsets_[field->index()] : in DefaultRaw()
1921 offsets_[field->index()]; in DefaultRaw()
[all …]
Dgenerated_message_reflection.h444 const int* offsets_; variable
/external/icu/icu4c/source/i18n/unicode/
Dcoleitr.h375 UVector32 *offsets_; variable