HomeSort by relevance Sort by last modified time
    Searched full:start_index (Results 26 - 50 of 164) sorted by null

12 3 4 5 6 7

  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
merge.cc 327 int start_index = timestamps_per_call_ + local
329 start_index = std::max(start_position, start_index);
330 start_index = std::max(start_index - input_length, 0);
332 int start_index_downsamp = start_index / (fs_mult_ * 2);
347 best_correlation_index += start_index;
dsp_helper.cc 84 size_t start_index,
88 assert(start_index + length <= signal->Size());
89 if (start_index + length > signal->Size()) {
97 RampSignal(&(*signal)[channel][start_index], length, factor, increment);
  /external/chromium_org/v8/src/
uri.h 49 Isolate* isolate, Handle<String> string, int start_index);
86 Isolate* isolate, Handle<String> string, int start_index) {
93 for (int i = start_index; i < length; unescaped_length++) {
103 ASSERT(start_index < length);
105 isolate->factory()->NewProperSubString(string, 0, start_index);
115 for (int i = start_index; i < length; dest_position++) {
127 for (int i = start_index; i < length; dest_position++) {
regexp.js 308 var start_index;
311 start_index = lastMatchInfo[CAPTURE0];
315 start_index = OVERRIDE_POS(override);
318 return %_SubString(subject, 0, start_index);
323 var start_index;
326 start_index = lastMatchInfo[CAPTURE1];
332 start_index = OVERRIDE_POS(override) + match.length;
334 return %_SubString(subject, start_index, subject.length);
regexp-macro-assembler.cc 52 int start_index) {
55 ASSERT(start_index >= 0);
56 ASSERT(start_index <= subject->length());
67 return address + start_index;
76 return reinterpret_cast<const byte*>(data + start_index);
string-search.h 107 int start_index);
111 int start_index);
115 int start_index);
120 int start_index);
124 int start_index);
287 int start_index) {
298 int index = start_index;
410 int start_index) {
422 int index = start_index; // No matches found prior to this index.
550 int start_index) {
    [all...]
  /art/runtime/base/
bit_vector.h 101 uint32_t FindIndex(uint32_t start_index) const {
102 DCHECK_LE(start_index, BitSize());
103 uint32_t word_index = start_index / kWordBits;
105 return start_index;
109 word &= static_cast<uint32_t>(-1) << (start_index & 0x1f);
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
tree.rb 224 attr_accessor :start_index
377 | start = #{ start_index.inspect }
382 freshen( start_index )
475 @start_index = -1
481 @start_index = payload.start_index
525 def start_index method in class:ANTLR3.CommonTree
526 @start_index == -1 and @token and return @token.index
527 return @start_index
535 alias token_start_index= start_index
    [all...]
  /external/chromium_org/ash/
focus_cycler.cc 61 int start_index = index; local
73 if (index == start_index)
  /external/chromium_org/chrome/browser/ui/
singleton_tabs.cc 89 int start_index = local
93 int tab_index = (start_index + i) % tab_count;
  /external/chromium_org/chrome/browser/ui/views/extensions/
browser_action_overflow_menu_controller.h 44 int start_index);
111 // won't show all items, just the one starting at |start_index| and above.
browser_action_overflow_menu_controller.cc 66 int start_index)
73 start_index_(start_index),
80 for (size_t i = start_index; i < views_->size(); ++i) {
  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_menu_controller_views.cc 174 int start_index; local
176 bookmark_bar_loc, &start_index);
180 menu_delegate_->SetActiveMenu(node, start_index);
  /external/chromium_org/chrome/common/favicon/
favicon_url_parser.cc 24 // |start_index|.
26 size_t start_index,
28 return path.compare(start_index, search.length(), search) == 0;
  /external/chromium_org/tools/ipc_fuzzer/mutate/
message_util.cc 85 size_t start_index = 0; local
89 start_index = static_cast<size_t>(temp);
132 bool valid = (i >= start_index && i < end_index);
  /external/chromium_org/ui/gfx/geometry/
r_tree_base.cc 351 size_t RTreeBase::Node::ChooseSplitIndex(size_t start_index,
358 low_bounds[start_index], high_bounds[start_index]).size().GetArea();
359 int smallest_combined_area = low_bounds[start_index].size().GetArea() +
360 high_bounds[start_index].size().GetArea();
361 size_t optimal_split_index = start_index;
362 for (size_t p = start_index + 1; p < end_index; ++p) {
382 int RTreeBase::Node::SmallestMarginSum(size_t start_index,
387 DCHECK_LT(start_index, low_bounds.size());
388 DCHECK_LE(start_index, end_index)
    [all...]
  /external/chromium_org/v8/test/webkit/
testcfg.py 134 start_index = 0
143 yield ActIterator(lines[start_index:index])
145 start_index = index + 1
  /frameworks/base/tools/orientationplot/
orientationplot.py 396 start_index = prefix_index + len(prefix)
397 delim_index = line.find(',', start_index)
399 return line[start_index:]
401 return line[start_index:delim_index]
415 start_index = prefix_index + len(prefix) + 1
416 delim_index = line.find(']', start_index)
421 while start_index < delim_index:
422 comma_index = line.find(', ', start_index, delim_index)
424 result.append(float(line[start_index:delim_index]))
426 result.append(float(line[start_index:comma_index])
    [all...]
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
indentation.py 170 Position(token.start_index, token.length)])
179 Position(token.start_index, token.length)])
370 start_index = token.start_index
372 start_index += self._start_index_offset[token.line_number]
375 hard_stops.add(start_index + 1)
378 hard_stops.add(start_index + 7)
381 hard_stops.add(start_index + 1)
384 hard_stops.add(start_index + len(token.string) + 1)
387 hard_stops.add(start_index + 2
    [all...]
  /external/chromium_org/third_party/closure_linter/closure_linter/
indentation.py 170 Position(token.start_index, token.length)])
179 Position(token.start_index, token.length)])
370 start_index = token.start_index
372 start_index += self._start_index_offset[token.line_number]
375 hard_stops.add(start_index + 1)
378 hard_stops.add(start_index + 7)
381 hard_stops.add(start_index + 1)
384 hard_stops.add(start_index + len(token.string) + 1)
387 hard_stops.add(start_index + 2
    [all...]
  /external/pdfium/core/src/fxcrt/
fx_basic_buffer.cpp 31 void CFX_BinaryBuf::Delete(int start_index, int count)
33 if (!m_pBuffer || start_index < 0 || start_index + count > m_DataSize) {
36 FXSYS_memmove32(m_pBuffer + start_index, m_pBuffer + start_index + count, m_DataSize - start_index - count);
  /external/pdfium/fpdfsdk/include/
fpdftext.h 113 // start_index - Index for the start characters.
122 DLLEXPORT int STDCALL FPDFText_GetText(FPDF_TEXTPAGE text_page, int start_index, int count, unsigned short* result);
128 // start_index - Index for the start characters.
138 DLLEXPORT int STDCALL FPDFText_CountRects(FPDF_TEXTPAGE text_page, int start_index, int count);
183 // start_index - Start from this character. -1 for end of the page.
188 unsigned long flags, int start_index);
  /external/chromium_org/native_client_sdk/src/libraries/xray/
xray.c 187 int start_index = 1; local
192 for (i = start_index; i < num; ++i) {
199 start_index = 0;
255 int start_index = 1; local
262 for (i = start_index; i < num; ++i) {
273 start_index = 0;
285 int start_index = 1; local
289 for (i = start_index; i < num; ++i) {
298 start_index = 0;
  /frameworks/base/tools/velocityplot/
velocityplot.py 248 start_index = prefix_index + len(prefix)
249 delim_index = line.find(',', start_index)
251 return line[start_index:]
253 return line[start_index:delim_index]
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
tokens.py 44 start_index: The character index in the line where this token starts.
72 self.start_index = None

Completed in 2538 milliseconds

12 3 4 5 6 7