Home
last modified time | relevance | path

Searched refs:row (Results 1 – 25 of 66) sorted by relevance

123

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dfixdiv.py244 for (row, col), line in slashes:
245 if row == lastrow:
247 rows.append(row)
248 lastrow = row
266 for (row, col), line in slashes:
267 if row == lastrow:
269 lastrow = row
272 print "*** Can't find the / operator in line %d:" % row
276 print "*** Bad warning for line %d:" % row, bad
279 print "%dc%d" % (row, row)
[all …]
Dfinddiv.py60 for type, token, (row, col), end, line in g:
65 if row != lastrow:
66 lastrow = row
67 print "%s:%d:%s" % (filename, row, line),
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dcursor.c306 PyObject* row; in _pysqlite_fetch_one_row() local
328 row = PyTuple_New(numcols); in _pysqlite_fetch_one_row() local
329 if (!row) { in _pysqlite_fetch_one_row()
414 PyTuple_SetItem(row, i, converted); in _pysqlite_fetch_one_row()
417 PyTuple_SetItem(row, i, Py_None); in _pysqlite_fetch_one_row()
422 Py_DECREF(row); in _pysqlite_fetch_one_row()
423 row = NULL; in _pysqlite_fetch_one_row()
426 return row; in _pysqlite_fetch_one_row()
937 PyObject* row; in pysqlite_cursor_fetchone() local
939 row = pysqlite_cursor_iternext(self); in pysqlite_cursor_fetchone()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
Dqueens.py23 self.row = [0] * n # Is row[y] safe?
39 return not self.row[y] and not self.up[x-y] and not self.down[x+y]
43 self.row[y] = 1
49 self.row[y] = 0
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dcsv.py108 row = self.reader.next()
114 while row == []:
115 row = self.reader.next()
116 d = dict(zip(self.fieldnames, row))
118 lr = len(row)
120 d[self.restkey] = row[lf:]
406 for row in rdr:
412 if len(row) != columns:
419 thisType(row[col])
425 thisType = len(row[col])
Dcmd.py375 for row in range(nrows):
376 i = row + nrows*col
391 for row in range(nrows):
394 i = row + nrows*col
Dtokenize.py187 row, col = start
188 if row < self.prev_row or row == self.prev_row and col < self.prev_col:
190 .format(row, col, self.prev_row, self.prev_col))
191 row_offset = row - self.prev_row
Dcalendar.py347 for (i, row) in enumerate(self.yeardays2calendar(theyear, m)):
359 height = max(len(cal) for cal in row)
362 for cal in row:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dcsv.py104 row = self.reader.next()
110 while row == []:
111 row = self.reader.next()
112 d = dict(zip(self.fieldnames, row))
114 lr = len(row)
116 d[self.restkey] = row[lf:]
401 for row in rdr:
407 if len(row) != columns:
414 thisType(row[col])
420 thisType = len(row[col])
Dcmd.py372 for row in range(nrows):
373 i = row + nrows*col
388 for row in range(nrows):
391 i = row + nrows*col
Dtokenize.py186 row, col = start
187 assert row <= self.prev_row
Dcalendar.py343 for (i, row) in enumerate(self.yeardays2calendar(theyear, m)):
355 height = max(len(cal) for cal in row)
358 for cal in row:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/webchecker/
Dwsgui.py96 self.url_label.grid(row=0, column=0, sticky='e')
98 self.url_entry.grid(row=0, column=1, sticky='we',
103 self.dir_label.grid(row=1, column=0, sticky='e')
105 self.dir_entry.grid(row=1, column=1, sticky='we',
108 self.go_button.grid(row=2, column=1, sticky='w')
112 self.cancel_button.grid(row=2, column=2, sticky='w')
115 self.auto_button.grid(row=2, column=3, sticky='w')
117 self.status_label.grid(row=2, column=4, sticky='w')
/device/google/cuttlefish/guest/hals/camera/
DCompressor.cpp88 for (int row = 0; row < numRows; ++row) { in deinterleave() local
89 int offset = ((rowIndex >> 1) + row) * stride; in deinterleave()
92 int index = row * (width >> 1) + i; in deinterleave()
/device/google/cuttlefish/host/frontend/vnc_server/
Djpeg_compressor.cpp58 auto row = static_cast<JSAMPROW>(const_cast<std::uint8_t*>( in Compress() local
62 jpeg_write_scanlines(&cinfo, &row, 1); in Compress()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Dcrc32.c376 unsigned long row; local
386 row = 1;
388 odd[n] = row;
389 row <<= 1;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Dcrc32.c361 unsigned long row; local
371 row = 1;
373 odd[n] = row;
374 row <<= 1;
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
Dcrc32.c378 unsigned long row; local
388 row = 1;
390 odd[n] = row;
391 row <<= 1;
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
DMetaFileTable.py236 for row in self.Cur:
237 comment = row[0]
239 LineNum = row[1]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_csv.py298 for i, row in enumerate(csv.reader(fileobj)):
299 self.assertEqual(row, rows[i])
662 for row in itertools.chain([first], reader):
664 self.assertEqual(row, {"f1": '1', "f2": '2', "f3": 'abc'})
1009 for row in rdr:
1026 for row in rows:
1027 writer.writerow(row)
Dtest_generators.py1323 row = squares[i]
1324 print "|" + "|".join(row) + "|"
/device/linaro/hikey/l-loader/
Dgen_loader_hikey.py54 self.entry_hd = [[0 for col in range(7)] for row in range(5)]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dlnotab_notes.txt19 the increments from one row to the next. Conceptually, the stored list might
30 (b) if at least one column jumps by more than 255 from one row to the next,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dlnotab_notes.txt19 the increments from one row to the next. Conceptually, the stored list might
30 (b) if at least one column jumps by more than 255 from one row to the next,
/device/generic/goldfish-opengl/system/OpenglSystemCommon/
DFormatConversions.cpp34 static int get_rgb_offset(int row, int width, int rgbStride) { in get_rgb_offset() argument
35 return row * width * rgbStride; in get_rgb_offset()

123