Searched defs:tables (Results 1 - 2 of 2) sorted by relevance

/packages/providers/TvProvider/src/com/android/providers/tv/util/
H A DSqlParams.java26 public SqlParams(String tables, String selection, String... selectionArgs) { argument
27 setTables(tables);
43 public void setTables(String tables) { argument
44 mTables = tables;
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
H A DHtmlTreeBuilder.java186 private int tables = 0; // table nesting level field in class:HtmlTreeBuilder.TableFixer
200 if (tables > 0) {
203 tables++;
220 if (tables > 0) {
234 if (tables > 0 && element.getType() == HTML.Element.TABLE_TYPE) {
246 X.assertTrue(tables > 0);
247 tables--;
248 state = (tables > 0) ? IN_CELL : NULL;
256 if (tables > 0 &&
264 X.assertTrue(tables
[all...]

Completed in 121 milliseconds