Searched defs:start_offset (Results 1 - 25 of 30) sorted by relevance

12

/external/chromium/googleurl/src/
H A Durl_file.h64 // Returns true if the start_offset in the given spec looks like it begins a
65 // drive spec, for example "c:". This function explicitly handles start_offset
69 // plus a colon starting at |start_offset|.
71 inline bool DoesBeginWindowsDriveSpec(const CHAR* spec, int start_offset, argument
73 int remaining_len = spec_len - start_offset;
76 if (!IsWindowsDriveLetter(spec[start_offset]))
78 if (!IsWindowsDriveSeparator(spec[start_offset + 1]))
83 // Returns true if the start_offset in the given text looks like it begins a
84 // UNC path, for example "\\". This function explicitly handles start_offset
92 int start_offset,
91 DoesBeginUNCPath(const CHAR* text, int start_offset, int len, bool strict_slashes) argument
[all...]
H A Durl_canon_relative.cc75 bool DoesBeginSlashWindowsDriveSpec(const CHAR* spec, int start_offset, argument
77 if (start_offset >= spec_len)
79 return url_parse::IsURLSlash(spec[start_offset]) &&
80 url_parse::DoesBeginWindowsDriveSpec(spec, start_offset + 1, spec_len);
H A Durl_parse.cc54 // from start_offset. If no terminator is found, the return value will be equal
58 int start_offset,
60 for (int i = start_offset; i < spec_len; i++) {
57 FindNextAuthorityTerminator(const CHAR* spec, int start_offset, int spec_len) argument
/external/oprofile/libpp/
H A Dprofile.h141 u64 start_offset; member in class:profile_t
165 const_iterator() : start_offset(0) {}
167 : it(it_), start_offset(start_offset_) {}
172 odb_key_t vma() const { return it->first + start_offset; }
184 u64 start_offset; member in class:profile_t::const_iterator
/external/chromium/net/tools/tld_cleanup/
H A Dtld_cleanup.cc121 size_t start_offset = 0; local
135 if (domain->find("*.", start_offset) != std::string::npos ||
136 domain->find('!', start_offset) != std::string::npos) {
/external/chromium/net/disk_cache/
H A Dbitmap.cc137 int start_offset = begin & (kIntBits - 1); local
138 if (start_offset) {
140 int len = std::min(end - begin, kIntBits - start_offset);
/external/qemu/android/
H A Dsnapshot.c119 uint64_t start_offset = seek_or_die(fd, 0, SEEK_CUR); local
156 uint32_t total_size = end_offset - start_offset;
160 seek_or_die(fd, start_offset + aligned_size, SEEK_SET);
/external/v8/src/
H A Dregexp-macro-assembler.cc122 int start_offset = previous_index; local
123 int char_length = subject_ptr->length() - start_offset;
143 StringCharacterPosition(subject_ptr, start_offset + slice_offset);
148 start_offset,
160 int start_offset,
173 start_offset,
157 Execute( Code* code, String* input, int start_offset, const byte* input_start, const byte* input_end, int* output, Isolate* isolate) argument
/external/chromium/base/
H A Dstring_util_unittest.cc562 string16::size_type start_offset; member in struct:base::__anon1612
583 ReplaceSubstringsAfterOffset(&str, cases[i].start_offset,
593 string16::size_type start_offset; member in struct:base::__anon1613
613 ReplaceFirstSubstringAfterOffset(&str, cases[i].start_offset,
H A Dstring_util.cc710 typename StringType::size_type start_offset,
714 if ((start_offset == StringType::npos) || (start_offset >= str->length()))
718 for (typename StringType::size_type offs(str->find(find_this, start_offset));
729 string16::size_type start_offset,
732 DoReplaceSubstringsAfterOffset(str, start_offset, find_this, replace_with,
737 std::string::size_type start_offset,
740 DoReplaceSubstringsAfterOffset(str, start_offset, find_this, replace_with,
745 string16::size_type start_offset,
748 DoReplaceSubstringsAfterOffset(str, start_offset, find_thi
709 DoReplaceSubstringsAfterOffset(StringType* str, typename StringType::size_type start_offset, const StringType& find_this, const StringType& replace_with, bool replace_all) argument
728 ReplaceFirstSubstringAfterOffset(string16* str, string16::size_type start_offset, const string16& find_this, const string16& replace_with) argument
736 ReplaceFirstSubstringAfterOffset(std::string* str, std::string::size_type start_offset, const std::string& find_this, const std::string& replace_with) argument
744 ReplaceSubstringsAfterOffset(string16* str, string16::size_type start_offset, const string16& find_this, const string16& replace_with) argument
752 ReplaceSubstringsAfterOffset(std::string* str, std::string::size_type start_offset, const std::string& find_this, const std::string& replace_with) argument
[all...]
/external/chromium/chrome/browser/accessibility/
H A Dbrowser_accessibility_win.h238 LONG* start_offset,
241 STDMETHODIMP get_text(LONG start_offset, LONG end_offset, BSTR* text);
245 LONG* start_offset, LONG* end_offset,
250 LONG* start_offset, LONG* end_offset,
255 LONG* start_offset, LONG* end_offset,
259 STDMETHODIMP addSelection(LONG start_offset, LONG end_offset) { argument
262 STDMETHODIMP get_attributes(LONG offset, LONG* start_offset, LONG* end_offset, argument
284 LONG start_offset,
478 LONG start_offset,
283 setSelection(LONG selection_index, LONG start_offset, LONG end_offset) argument
H A Dbrowser_accessibility_win.cc606 LONG* start_offset,
611 if (!start_offset || !end_offset || selection_index != 0)
619 *start_offset = sel_start;
622 *start_offset = 0;
626 *start_offset = 0;
634 LONG start_offset, LONG end_offset, BSTR* text) {
644 if (start_offset > end_offset) {
645 LONG tmp = start_offset;
646 start_offset = end_offset;
653 if (start_offset <
605 get_selection(LONG selection_index, LONG* start_offset, LONG* end_offset) argument
633 get_text( LONG start_offset, LONG end_offset, BSTR* text) argument
667 get_textAtOffset( LONG offset, enum IA2TextBoundaryType boundary_type, LONG* start_offset, LONG* end_offset, BSTR* text) argument
694 get_textBeforeOffset( LONG offset, enum IA2TextBoundaryType boundary_type, LONG* start_offset, LONG* end_offset, BSTR* text) argument
721 get_textAfterOffset( LONG offset, enum IA2TextBoundaryType boundary_type, LONG* start_offset, LONG* end_offset, BSTR* text) argument
1208 FindBoundary( const string16& text, IA2TextBoundaryType boundary, LONG start_offset, LONG direction) argument
[all...]
/external/openfst/src/include/fst/
H A Dconst-fst.h338 size_t start_offset = 0; local
345 } else if ((start_offset = strm.tellp()) == -1) {
399 &hdr, start_offset);
H A Dvector-fst.h540 size_t start_offset = 0; local
541 if (fst.Properties(kExpanded, false) || (start_offset = strm.tellp()) != -1) {
569 &hdr, start_offset);
/external/qemu/block/
H A Dqcow2-cluster.c652 int start_offset = (8 * l2_index) & ~511; local
654 size_t len = end_offset - start_offset;
658 ret = bdrv_pwrite_sync(bs->file, l2_offset + start_offset,
H A Dqcow2.c70 * start reading from start_offset
75 static int qcow_read_extensions(BlockDriverState *bs, uint64_t start_offset, argument
82 printf("qcow_read_extensions: start=%ld end=%ld\n", start_offset, end_offset);
84 offset = start_offset;
/external/speex/libspeex/
H A Djitter.c465 EXPORT int jitter_buffer_get(JitterBuffer *jitter, JitterBufferPacket *packet, spx_int32_t desired_span, spx_int32_t *start_offset) argument
472 if (start_offset != NULL)
473 *start_offset = 0;
614 if (start_offset != NULL)
615 *start_offset = offset;
617 speex_warning_int("jitter_buffer_get() discarding non-zero start_offset", offset);
630 if (start_offset != NULL)
631 jitter->buffered += *start_offset;
716 static int _jitter_buffer_update_delay(JitterBuffer *jitter, JitterBufferPacket *packet, spx_int32_t *start_offset) argument
739 EXPORT int jitter_buffer_update_delay(JitterBuffer *jitter, JitterBufferPacket *packet, spx_int32_t *start_offset) argument
[all...]
/external/elfutils/libelf/
H A DlibelfP.h297 off_t start_offset; member in struct:Elf
/external/libnfc-nci/src/nfa/ee/
H A Dnfa_ee_act.c1531 int start_offset; local
1594 start_offset = 0;
1601 pa = &p_cb->aid_cfg[start_offset];
1612 start_offset += p_cb->aid_len[xx];
/external/libnfc-nci/src/nfc/tags/
H A Drw_t1t_ndef.c900 UINT8 start_offset = T1T_UID_LEN + T1T_CC_LEN + T1T_RES_BYTE_LEN; local
908 for (offset = start_offset; offset < end_offset && !failed && !found;)
/external/bluetooth/bluedroid/stack/gatt/
H A Dgatt_int.h388 UINT16 start_offset; member in struct:__anon1055
/external/v8/test/cctest/
H A Dtest-regexp.cc709 int start_offset,
716 start_offset,
707 Execute(Code* code, String* input, int start_offset, const byte* input_start, const byte* input_end, int* captures) argument
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete_edit_view_gtk.cc1954 gint start_offset = gtk_text_iter_get_offset(&start); local
1959 DCHECK(preedit_.empty() || start_offset == end_offset);
1961 start_offset += preedit_.size();
1966 return CharRange(start_offset, end_offset);
/external/qemu/hw/
H A Dusb-ohci.c617 uint32_t start_offset, next_offset, end_offset = 0; local
692 start_offset = iso_td.offset[relative_frame_number];
695 if (!(OHCI_BM(start_offset, TD_PSW_CC) & 0xe) ||
699 start_offset, next_offset);
703 if ((relative_frame_number < frame_count) && (start_offset > next_offset)) {
704 printf("usb-ohci: ISO_TD start_offset=0x%.8x > next_offset=0x%.8x\n",
705 start_offset, next_offset);
709 if ((start_offset & 0x1000) == 0) {
711 (start_offset & OHCI_OFFSET_MASK);
714 (start_offset
[all...]
/external/v8/src/ia32/
H A Dmacro-assembler-ia32.cc1539 void MacroAssembler::InitializeFieldsWithFiller(Register start_offset, argument
1545 mov(Operand(start_offset, 0), filler);
1546 add(start_offset, Immediate(kPointerSize));
1548 cmp(start_offset, end_offset);

Completed in 646 milliseconds

12