Home
last modified time | relevance | path

Searched refs:GetBegin (Results 1 – 25 of 30) sorted by relevance

12

/external/image_io/src/base/
Ddata_context.cc24 ss << "Invalid location:" << location_ << " range:[" << range_.GetBegin() in GetInvalidLocationAndRangeErrorText()
26 << segment_.GetDataRange().GetBegin() << "," in GetInvalidLocationAndRangeErrorText()
77 size_t spaces_count = location_ + spaces_before_caret - line_range.GetBegin(); in GetErrorText()
121 line_begin = (clipped_range->GetBegin() + kLimit < location_) in GetClippedAndLineRange()
123 : clipped_range->GetBegin(); in GetClippedAndLineRange()
143 reinterpret_cast<const char*>(segment_.GetBuffer(line_range.GetBegin())); in GetLineString()
145 if (line_range.GetBegin() != clipped_range.GetBegin()) { in GetLineString()
155 if (index + line_range.GetBegin() < location_) { in GetLineString()
Ddata_segment.cc24 memchr((buffer_ + start_location) - GetBegin(), value, in Find()
26 return location ? (location - buffer_) + GetBegin() : GetEnd(); in Find()
37 size_t byte0_location = (byte0_ptr - buffer_) + GetBegin(); in Find()
64 if (segment1 && segment2 && segment1->GetEnd() == segment2->GetBegin()) { in Find()
69 value_location = segment2->Find(segment2->GetBegin(), value); in Find()
Ddata_line_map.cc18 return lhs.range.GetBegin() < rhs.range.GetBegin(); in GetDataLine()
38 size_t line_begin = range.GetBegin(); in FindDataLines()
43 line_begin = data_lines_.back().range.GetBegin(); in FindDataLines()
Ddata_range_tracking_destination.cc30 if (tracked_data_range_.GetEnd() == transfer_range.GetBegin()) { in Transfer()
32 DataRange(tracked_data_range_.GetBegin(), transfer_range.GetEnd()); in Transfer()
Dostream_ref_data_destination.cc18 const Byte* buffer = data_segment.GetBuffer(transfer_range.GetBegin()); in Transfer()
Distream_ref_data_source.cc39 for (size_t begin = data_range.GetBegin(); begin < data_range.GetEnd(); in TransferData()
/external/image_io/includes/image_io/jpeg/
Djpeg_segment.h44 size_t GetBegin() const { return data_range_.GetBegin(); } in GetBegin() function
58 size_t GetMarkerLocation() const { return GetBegin(); } in GetMarkerLocation()
62 size_t GetPayloadLocation() const { return GetBegin() + JpegMarker::kLength; } in GetPayloadLocation()
/external/image_io/includes/image_io/base/
Ddata_segment.h58 size_t GetBegin() const { return data_range_.GetBegin(); } in GetBegin() function
76 return Contains(location) ? ValidatedByte(buffer_[location - GetBegin()]) in GetValidatedByte()
85 return Contains(location) ? &buffer_[location - GetBegin()] : nullptr; in GetBuffer()
Ddata_range.h29 size_t GetBegin() const { return begin_; } in GetBegin() function
/external/image_io/src/jpeg/
Djpeg_xmp_data_extractor.cc32 << " - data range from " << transfer_range.GetBegin() << " to " in Transfer()
39 size_t encoded_data_begin = transfer_range.GetBegin() + xmp_header_length; in Transfer()
74 string strb((const char*)data_segment.GetBuffer(xmp_data_range.GetBegin()), in Transfer()
82 for (size_t i = transfer_range.GetBegin(); i < data_segment.GetEnd(); in Transfer()
Djpeg_apple_depth_builder.cc141 size_t first_end = std::min(primary_image_jfif_segment_range_.GetBegin(), in TransferPrimaryImage()
142 primary_image_mpf_segment_range_.GetBegin()); in TransferPrimaryImage()
156 if (first_end == primary_image_jfif_segment_range_.GetBegin()) { in TransferPrimaryImage()
165 primary_image_mpf_segment_range_.GetBegin()); in TransferPrimaryImage()
211 primary_image_length - primary_image_mpf_segment_range_.GetBegin() - 8; in TransferNewMpfSegment()
Djpeg_info_builder.cc49 DataRange(segment.GetBegin(), segment.GetBegin() + JpegMarker::kLength); in Process()
52 DataRange image_range(most_recent_soi_marker_range_.GetBegin(), in Process()
53 segment.GetBegin() + JpegMarker::kLength); in Process()
190 size_t segment_begin = segment.GetBegin(); in MaybeCaptureSegmentBytes()
Djpeg_segment_lister.cc133 marker.GetName(), Size2HexString(segment.GetBegin()), in Process()
134 Size2HexString(segment.GetEnd() - segment.GetBegin() - 2), in Process()
Djpeg_segment.cc129 if (Contains(data_range.GetBegin()) && data_range.GetEnd() <= GetEnd()) { in ExtractString()
130 size_t start_location = data_range.GetBegin(); in ExtractString()
Djpeg_image_extractor.cc91 sstream << "Segment " << index << " from " << data_range.GetBegin() in ExtractImage()
Djpeg_scanner.cc49 std::max(current_location_, next_segment_->GetBegin()); in FindAndProcessSegments()
/external/libchrome/mojo/public/cpp/bindings/
Dmap_traits_stl.h36 static ConstIterator GetBegin(const std::map<K, V, Compare>& input) {
39 static Iterator GetBegin(std::map<K, V, Compare>& input) {
87 static ConstIterator GetBegin(const std::unordered_map<K, V>& input) {
90 static Iterator GetBegin(std::unordered_map<K, V>& input) {
Dmap_traits_flat_map.h24 static ConstIterator GetBegin(const base::flat_map<K, V, Compare>& input) {
27 static Iterator GetBegin(base::flat_map<K, V, Compare>& input) {
Dmap_traits_wtf_hash_map.h35 static ConstIterator GetBegin(const WTF::HashMap<K, V>& input) {
38 static Iterator GetBegin(WTF::HashMap<K, V>& input) { return input.begin(); }
Darray_traits_stl.h79 static ConstIterator GetBegin(const std::set<T>& input) {
118 static ConstIterator GetBegin(const MapValuesArrayView<K, V>& input) {
/external/libchrome/mojo/public/cpp/bindings/lib/
Dserialization_util.h140 decltype(U::GetBegin(std::declval<MaybeConstUserType&>())) *);
154 decltype(Traits::GetBegin(std::declval<MaybeConstUserType&>()))
156 return Traits::GetBegin(input);
Dmap_serialization.h26 decltype(Traits::GetBegin(std::declval<MaybeConstUserType&>()));
29 : input_(input), iter_(Traits::GetBegin(input_)) {} in MapReaderBase()
/external/image_io/src/extras/
Dbase64_decoder_data_destination.cc65 data_segment.GetBuffer(transfer_range.GetBegin()); in Transfer()
/external/image_io/src/gcontainer/
Dgcontainer.cc174 input_jpeg_stream.seekg(file_range.GetBegin(), input_jpeg_stream.beg); in ParseFileAfterImageFromStream()
/external/libchrome/mojo/public/cpp/base/
Dvalues_mojom_traits.h30 static Iterator GetBegin(const base::Value& input) {

12