Home
last modified time | relevance | path

Searched refs:viewName (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Messaging/src/com/android/messaging/datamodel/
DDatabaseHelper.java654 static void rebuildView(final SQLiteDatabase db, final String viewName, in rebuildView() argument
656 dropView(db, viewName, true /* throwOnFailure */); in rebuildView()
660 private static void dropView(final SQLiteDatabase db, final String viewName, in dropView() argument
664 db.execSQL(dropPrefix + viewName); in dropView()
667 LogUtil.d(LogUtil.BUGLE_TAG, "unable to drop view " + viewName + " " in dropView()
754 final String viewName = viewCursor.getString(0); in dropAllViews() local
755 dropView(db, viewName, false /* throwOnFailure */); in dropAllViews()
/packages/apps/TV/tests/unit/src/com/android/tv/
DMainActivityTest.java98 private View assertViewIsShown(String viewName, int viewId, boolean expected) { in assertViewIsShown() argument
102 throw new AssertionError("View " + viewName + " not found"); in assertViewIsShown()
107 assertWithMessage(viewName + " shown").that(view.isShown()).isEqualTo(expected); in assertViewIsShown()