HomeSort by relevance Sort by last modified time
    Searched refs:begin_offset (Results 1 - 8 of 8) sorted by null

  /external/chromium/googleurl/src/
url_parse_internal.h 71 int begin_offset, int str_len) {
73 while (begin_offset + count < str_len &&
74 IsURLSlash(str[begin_offset + count]))
url_canon_icu.cc 113 int begin_offset = output->length();
114 int dest_capacity = output->capacity() - begin_offset;
119 char* dest = &output->data()[begin_offset];
123 output->set_length(begin_offset + required_capacity);
129 output->Resize(begin_offset + dest_capacity);
  /external/chromium_org/url/
url_parse_internal.h 50 int begin_offset, int str_len) {
52 while (begin_offset + count < str_len &&
53 IsURLSlash(str[begin_offset + count]))
url_canon_icu.cc 125 int begin_offset = output->length();
126 int dest_capacity = output->capacity() - begin_offset;
131 char* dest = &output->data()[begin_offset];
135 output->set_length(begin_offset + required_capacity);
141 output->Resize(begin_offset + dest_capacity);
  /external/chromium_org/tools/gn/
string_utils.cc 72 size_t begin_offset = *i; local
98 *identifier = base::StringPiece(&input[begin_offset],
99 end_offset - begin_offset);
  /frameworks/compile/mclinker/lib/LD/
GNUArchiveReader.cpp 424 uint32_t begin_offset = pArchive.getARFile().fileOffset() + local
429 if (0x0 != (begin_offset & 1))
430 ++begin_offset;
431 begin_offset += sizeof(Archive::MemberHeader) +
435 for (uint32_t offset = begin_offset;
  /external/chromium_org/tools/linux/
procfs.py 565 begin_offset = ProcPagemap._offset(vma.begin)
566 chunk_size = ProcPagemap._offset(vma.end) - begin_offset
567 os.lseek(pagemap_fd, begin_offset, os.SEEK_SET)
  /art/oatdump/
oatdump.cc 159 uint32_t begin_offset = reinterpret_cast<size_t>(oat_data) - local
162 It it = offsets_.upper_bound(begin_offset);
165 return end_offset - begin_offset;
    [all...]

Completed in 247 milliseconds