Lines Matching refs:start_location
21 size_t start_location, char value) { in SkipWhiteSpaceFindChar() argument
22 for (size_t location = start_location; location < segment.GetEnd(); in SkipWhiteSpaceFindChar()
78 size_t JpegSegment::Find(size_t start_location, Byte value) const { in Find() argument
84 value_location = begin_segment_->Find(start_location, value); in Find()
87 DataSegment::Find(start_location, value, begin_segment_, end_segment_); in Find()
93 size_t start_location, const char* property_name) const { in ExtractXmpPropertyValue() argument
95 FindXmpPropertyValueBegin(start_location, property_name); in ExtractXmpPropertyValue()
106 size_t JpegSegment::FindXmpPropertyValueBegin(size_t start_location, in FindXmpPropertyValueBegin() argument
108 size_t property_location = Find(start_location, property_name); in FindXmpPropertyValueBegin()
123 size_t JpegSegment::FindXmpPropertyValueEnd(size_t start_location) const { in FindXmpPropertyValueEnd()
124 return Find(start_location, Byte('"')); in FindXmpPropertyValueEnd()
130 size_t start_location = data_range.GetBegin(); in ExtractString() local
134 ValidatedByte validated_byte = GetValidatedByte(start_location + index); in ExtractString()