HomeSort by relevance Sort by last modified time
    Searched refs:end_col (Results 1 - 18 of 18) sorted by null

  /external/libvterm/src/
rect.h 6 #define ARGSrect(r) (r).start_row, (r).start_col, (r).end_row, (r).end_col
14 if(dst->end_col < src->end_col) dst->end_col = src->end_col;
23 if(dst->end_col > bounds->end_col) dst->end_col = bounds->end_col;
26 if(dst->end_col < dst->start_col) dst->end_col = dst->start_col
    [all...]
vterm.c 242 abs(rightward) >= rect.end_col - rect.start_col) {
254 dest.end_col = rect.end_col - rightward;
256 src.end_col = rect.end_col;
265 dest.end_col = rect.end_col;
267 src.end_col = rect.end_col - leftward;
293 rect.start_col = rect.end_col - rightward
    [all...]
screen.c 130 if(screen->damaged.end_col < rect.end_col)
131 screen->damaged.end_col = rect.end_col;
166 .end_col = screen->cols,
195 .end_col = pos.col+info->width,
213 dest.end_col == screen->cols && // full width
224 int cols = src.end_col - src.start_col;
272 for(int col = rect.start_col; col < rect.end_col; col++) {
356 rect.end_col >= screen->damaged.end_col &
    [all...]
state.c 87 if(rect.start_col == 0 && rect.end_col == state->cols && rightward == 0) {
116 .end_col = SCROLLREGION_RIGHT(state),
312 .end_col = THISROWWIDTH(state),
409 .end_col = SCROLLREGION_RIGHT(state),
957 rect.end_col = SCROLLREGION_RIGHT(state);
959 rect.end_col = THISROWWIDTH(state);
1034 rect.start_col = state->pos.col; rect.end_col = state->cols;
1035 if(rect.end_col > rect.start_col)
1048 rect.start_col = 0; rect.end_col = state->cols;
1051 if(rect.end_col > rect.start_col
    [all...]
  /external/tensorflow/tensorflow/python/debug/cli/
tensor_format_test.py 104 is_omitted, row, start_col, end_col = (
109 self.assertEqual(match.end(), end_col)
504 is_omitted, row, start_col, end_col = tensor_format.locate_tensor_element(
509 self.assertEqual(actual_col_0_0_0 + 4, end_col)
512 is_omitted, row, start_col, end_col = tensor_format.locate_tensor_element(
517 self.assertIsNone(end_col)
520 is_omitted, row, start_col, end_col = tensor_format.locate_tensor_element(
525 self.assertEqual(actual_col_0_1_0 + 4, end_col)
527 is_omitted, row, start_col, end_col = tensor_format.locate_tensor_element(
531 self.assertIsNone(end_col)
    [all...]
tensor_format.py 187 for is_omitted, row, start_col, end_col in zip(are_omitted, rows,
189 if is_omitted or start_col is None or end_col is None:
194 (start_col, end_col, highlight_options.font_attr))
196 formatted.font_attr_segs[row] = [(start_col, end_col,
  /external/libvpx/libvpx/vp8/decoder/
error_concealment.c 124 int end_col = VPXMIN(4 + mb_col * 4 - first_blk_col, 2); local
131 if (new_col >= 0 && (new_col & 0x1F) == 0) end_col = 1;
137 if (new_col < (mb_col * 16) << 3) end_col = 1;
140 for (col = 0; col < end_col; ++col) {
155 int end_row, end_col; local
187 end_col = VPXMIN(mb_cols - overlap_mb_col, 2);
193 if (abs(new_col - ((16 * overlap_mb_col) << 3)) < ((3 * 4) << 3)) end_col = 1;
197 for (rel_col = 0; rel_col < end_col; ++rel_col) {
  /external/v8/tools/clang/scripts/
apply_fixits.py 34 r'(?P<end_line>\d+?):(?P<end_col>\d+?)}:'
38 'FixIt', ('start_line', 'start_col', 'end_line', 'end_col', 'text'))
63 'end_line')), -int(m.group('end_col')), m.group('text')))
81 + line[-fixit.end_col - 1:])
  /external/swiftshader/src/OpenGL/compiler/
glslang_tab.cpp 1684 int end_col = 0 != yylocp->last_column ? yylocp->last_column - 1 : 0; local
    [all...]
  /external/libvterm/include/
vterm.h 34 int end_col; member in struct:__anon26308
41 p.col >= r.start_col && p.col < r.end_col;
48 rect->start_col += col_delta; rect->end_col += col_delta;
  /external/pdfium/core/fxge/
cfx_renderdevice.cpp 208 int end_col,
231 for (int col = start_col; col < end_col; ++col) {
251 for (int col = start_col + 1; col < end_col - 1; ++col) {
265 for (int col = start_col + 1; col < end_col - 1; ++col) {
273 for (int col = start_col; col < end_col; ++col) {
298 for (int col = start_col + 1; col < end_col; ++col) {
323 for (int col = start_col + 1; col < end_col; ++col) {
1070 int end_col = local
    [all...]
  /packages/apps/Terminal/jni/
com_android_terminal_Terminal.cpp 167 rect.start_col, rect.end_col);
178 dest.start_row, dest.end_row, dest.start_col, dest.end_col,
179 src.start_row, src.end_row, src.start_col, src.end_col);
  /external/google-styleguide/cpplint/
cpplint.py     [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_mcomp.c 1503 int start_col, end_col, start_row, end_row; local
    [all...]
  /tools/repohooks/tools/
cpplint.py     [all...]
  /external/opencv/cxcore/src/
cxarray.cpp     [all...]
  /external/opencv/cxcore/include/
cxcore.h 212 /* Selects column span of the input array: arr(:,start_col:end_col)
213 (end_col is not included into the span) */
215 int start_col, int end_col );
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c     [all...]

Completed in 1174 milliseconds