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

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
xcodeproj.py 39 def _check_development_region(self, line_index, line):
45 self.handle_style_error(line_index,
52 for line_index, line in enumerate(lines):
53 if self._check_development_region(line_index, line):
cpp.py 748 def find_next_multi_line_comment_start(lines, line_index):
750 while line_index < len(lines):
751 if lines[line_index].strip().startswith('/*'):
753 if lines[line_index].strip().find('*/', 2) < 0:
754 return line_index
755 line_index += 1
759 def find_next_multi_line_comment_end(lines, line_index):
761 while line_index < len(lines):
762 if lines[line_index].strip().endswith('*/'):
763 return line_index
    [all...]
  /external/qemu/android/
charmap.c 393 * line_index - Index of the parsing line in .kcm file.
403 int line_index,
425 kcm_file_path, token, line_index);
433 kcm_file_path, line_index);
441 kcm_file_path, line_index);
449 kcm_file_path, line_index);
457 kcm_file_path, line_index);
465 kcm_file_path, line_index);
473 kcm_file_path, line_index);
484 kcm_file_path, line_index);
    [all...]
  /frameworks/native/opengl/libs/EGL/
trace.cpp 82 int line_index; member in class:android::StringBuilder
85 line_index = 0;
91 line_index += vsnprintf(line + line_index, lineSize-line_index, fmt, argp);
95 line_index = 0;
  /external/libpng/
pngread.c 949 png_line_indexp line_index = index->pass_line_index[pass][n]; local
964 inflateCopy(&png_ptr->zstream, line_index->z_state);
966 // Set the png read position to line_index.
967 png_set_read_offset(png_ptr, line_index->stream_idat_position,
968 line_index->bytes_left_in_idat);
970 png_ptr->prev_row, line_index->prev_row, row_byte_length);
1035 png_line_indexp line_index = png_malloc(png_ptr, sizeof(png_line_index)); local
    [all...]
  /external/chromium_org/chrome_frame/test/reliability/
page_load_test.cc 307 for (int line_index = 1;
308 line_index <= g_end_index && !file.eof();
309 ++line_index) {
318 if (line_index % 3 != 0) {
325 if (g_start_index <= line_index) {
  /external/chromium_org/content/browser/accessibility/
browser_accessibility_cocoa.mm     [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
linemap.c 254 /* Binary search through map to find highest line_index <= index */

Completed in 6740 milliseconds