Home
last modified time | relevance | path

Searched refs:begin_offset (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/url/
Durl_canon_icu.cc125 int begin_offset = output->length(); in ConvertFromUTF16() local
126 int dest_capacity = output->capacity() - begin_offset; in ConvertFromUTF16()
131 char* dest = &output->data()[begin_offset]; in ConvertFromUTF16()
135 output->set_length(begin_offset + required_capacity); in ConvertFromUTF16()
141 output->Resize(begin_offset + dest_capacity); in ConvertFromUTF16()
Durl_parse_internal.h50 int begin_offset, int str_len) { in CountConsecutiveSlashes() argument
52 while (begin_offset + count < str_len && in CountConsecutiveSlashes()
53 IsURLSlash(str[begin_offset + count])) in CountConsecutiveSlashes()
/external/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDebugAbbrev.cpp35 const lldb::offset_t begin_offset = *offset_ptr; in Extract() local
36 m_offset = begin_offset; in Extract()
52 return begin_offset != *offset_ptr; in Extract()
/external/chromium_org/tools/gn/
Dstring_utils.cc72 size_t begin_offset = *i; in LocateInlineIdenfitier() local
98 *identifier = base::StringPiece(&input[begin_offset], in LocateInlineIdenfitier()
99 end_offset - begin_offset); in LocateInlineIdenfitier()
/external/chromium_org/tools/linux/
Dprocfs.py577 begin_offset = ProcPagemap._offset(vma.begin)
578 chunk_size = ProcPagemap._offset(vma.end) - begin_offset
580 os.lseek(pagemap_fd, begin_offset, os.SEEK_SET)