Lines Matching refs:Row
259 query = graph_data.Row.query(
260 graph_data.Row.parent_test == test_key,
261 graph_data.Row.revision >= start_rev,
262 graph_data.Row.revision <= end_rev)
273 query_up_to_rev = graph_data.Row.query(
274 graph_data.Row.parent_test == test_key,
275 graph_data.Row.revision <= rev)
276 query_up_to_rev = query_up_to_rev.order(-graph_data.Row.revision)
281 query_after_rev = graph_data.Row.query(
282 graph_data.Row.parent_test == test_key,
283 graph_data.Row.revision > rev)
284 query_after_rev = query_after_rev.order(graph_data.Row.revision)
294 query = graph_data.Row.query(graph_data.Row.parent_test == test_key)
295 query = query.order(-graph_data.Row.revision)