HomeSort by relevance Sort by last modified time
    Searched refs:start_offset (Results 1 - 25 of 200) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium/googleurl/src/
url_file.h 64 // 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,
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,
    [all...]
  /external/chromium_org/url/
url_file.h 39 // Returns true if the start_offset in the given spec looks like it begins a
40 // drive spec, for example "c:". This function explicitly handles start_offset
44 // plus a colon starting at |start_offset|.
46 inline bool DoesBeginWindowsDriveSpec(const CHAR* spec, int start_offset,
48 int remaining_len = spec_len - start_offset;
51 if (!IsWindowsDriveLetter(spec[start_offset]))
53 if (!IsWindowsDriveSeparator(spec[start_offset + 1]))
58 // Returns true if the start_offset in the given text looks like it begins a
59 // UNC path, for example "\\". This function explicitly handles start_offset
67 int start_offset,
    [all...]
  /external/chromium_org/ui/base/ime/
composition_underline.h 18 : start_offset(0),
24 : start_offset(s),
30 return (this->start_offset == rhs.start_offset) &&
42 unsigned start_offset; member in struct:ui::CompositionUnderline
  /external/chromium_org/base/process/
process_info_linux.cc 21 TimeDelta start_offset = internal::ClockTicksToTimeDelta(start_ticks); local
24 return Time(boot_time + start_offset);
  /external/chromium_org/ui/base/accessibility/
accessible_text_utils.cc 15 size_t start_offset,
18 DCHECK(start_offset <= text_size);
21 if (direction == FORWARDS_DIRECTION && start_offset < text_size)
22 return start_offset + 1;
24 return start_offset;
29 if (line_break > start_offset)
40 if (line_break <= start_offset)
47 size_t result = start_offset;
accessible_text_utils.h 42 // (depending on |direction|) from the given |start_offset| until the
48 size_t start_offset,
  /external/chromium_org/ppapi/shared_impl/
url_request_info_data.cc 20 start_offset(0),
28 start_offset(0),
35 int64_t start_offset,
41 start_offset(start_offset),
url_request_info_data.h 26 int64_t start_offset,
49 int64_t start_offset; member in struct:ppapi::URLRequestInfoData::BodyItem
  /external/elfutils/libelf/
elf_getbase.c 65 return elf == NULL ? (off_t) -1 : elf->start_offset;
elf_getaroff.c 74 return elf->start_offset - sizeof (struct ar_hdr) - parent->start_offset;
elf_readall.c 75 child->start_offset -= offset;
118 elf->start_offset)
135 set_address (elf, elf->start_offset);
139 elf->state.ar.offset -= elf->start_offset;
140 elf->start_offset = 0;
elf_rand.c 73 elf->state.ar.offset = elf->start_offset + offset;
elf_rawfile.c 86 result = (char *) elf->map_address + elf->start_offset;
  /external/sfntly/cpp/src/sfntly/table/bitmap/
bitmap_glyph_info.h 39 int32_t start_offset,
50 int32_t start_offset,
57 int32_t offset() const { return block_offset() + start_offset(); }
58 int32_t start_offset() const { return start_offset_; } function in class:sfntly::BitmapGlyphInfo
bitmap_glyph_info.cc 23 int32_t start_offset,
29 start_offset_(start_offset),
35 int32_t start_offset,
41 start_offset_(start_offset),
65 return lhs->start_offset() > rhs->start_offset();
  /external/oprofile/libpp/
profile.h 141 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
profile.cpp 35 : start_offset(0)
132 // address space and setting a non zero start_offset will overflow
137 start_offset = header.anon_start;
139 start_offset = abfd.get_start_offset(0);
142 cverb << (vdebug) << "start_offset is now " << start_offset << endl;
149 // Check the start position isn't before start_offset:
154 if (start < start_offset) {
159 start -= start_offset;
160 end -= start_offset;
    [all...]
  /external/chromium_org/content/renderer/android/
content_detector.cc 60 for (size_t start_offset = 0; start_offset < content.length();) {
62 if (!FindContent(content.begin() + start_offset,
66 size_t content_start = start_offset + relative_start;
67 size_t content_end = start_offset + relative_end;
76 start_offset += relative_end;
  /external/chromium_org/ppapi/thunk/
ppb_url_request_info_api.h 25 int64_t start_offset,
ppb_url_request_info_thunk.cc 55 int64_t start_offset,
63 start_offset,
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-layout.h 76 unsigned int start_offset,
85 unsigned int start_offset,
101 unsigned int start_offset,
122 unsigned int start_offset,
130 unsigned int start_offset,
153 unsigned int start_offset,
162 unsigned int start_offset,
178 unsigned int start_offset,
  /external/harfbuzz_ng/src/
hb-ot-layout.h 76 unsigned int start_offset,
85 unsigned int start_offset,
101 unsigned int start_offset,
122 unsigned int start_offset,
130 unsigned int start_offset,
153 unsigned int start_offset,
162 unsigned int start_offset,
178 unsigned int start_offset,
  /external/elfutils/libdw/
dwarf_ranges.c 96 Dwarf_Word start_offset;
97 if (INTUSE(dwarf_formudata) (attr, &start_offset) != 0)
100 offset = start_offset;
101 assert ((Dwarf_Word) offset == start_offset);
  /external/chromium_org/ui/base/gtk/
gtk_im_context_util_unittest.cc 19 int start_offset; member in struct:__anon16605::AttributeInfo
24 unsigned start_offset; member in struct:__anon16605::Underline
99 EXPECT_EQ(a.start_offset, b.start_offset);
130 g_utf8_offset_to_pointer(text, attrs[a].start_offset) - text;
  /external/chromium_org/ppapi/cpp/
url_request_info.cc 63 int64_t start_offset,
71 start_offset,

Completed in 467 milliseconds

1 2 3 4 5 6 7 8