Searched defs:has_rows (Results 1 - 3 of 3) sorted by relevance

/external/chromium-trace/catapult/dashboard/dashboard/models/
H A Dgraph_data.py105 both. A Test entity that the property has_rows set to True corresponds to a
147 has_rows = ndb.BooleanProperty(default=False, indexed=True) variable in class:Test
368 """Sets the has_rows property of the parent test before putting this Row.
383 if not parent_test.has_rows:
384 parent_test.has_rows = True
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_bitstream.c410 const int has_rows = (mi_row + hbs) < cm->mi_rows; local
413 if (has_rows && has_cols) {
415 } else if (!has_rows && has_cols) {
418 } else if (has_rows && !has_cols) {
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decodeframe.c933 int has_rows, int has_cols, int bsl) {
939 if (has_rows && has_cols)
941 else if (!has_rows && has_cols)
943 else if (has_rows && !has_cols)
964 const int has_rows = (mi_row + hbs) < cm->mi_rows; local
970 partition = read_partition(xd, mi_row, mi_col, r, has_rows, has_cols,
985 if (has_rows)
931 read_partition(MACROBLOCKD *xd, int mi_row, int mi_col, vpx_reader *r, int has_rows, int has_cols, int bsl) argument

Completed in 157 milliseconds