Home | History | Annotate | Download | only in browse

Lines Matching refs:getInt

29             return options2.getInt(MediaBrowser.EXTRA_PAGE, -1) == -1
30 && options2.getInt(MediaBrowser.EXTRA_PAGE_SIZE, -1) == -1;
32 return options1.getInt(MediaBrowser.EXTRA_PAGE, -1) == -1
33 && options1.getInt(MediaBrowser.EXTRA_PAGE_SIZE, -1) == -1;
35 return options1.getInt(MediaBrowser.EXTRA_PAGE, -1)
36 == options2.getInt(MediaBrowser.EXTRA_PAGE, -1)
37 && options1.getInt(MediaBrowser.EXTRA_PAGE_SIZE, -1)
38 == options2.getInt(MediaBrowser.EXTRA_PAGE_SIZE, -1);
43 int page1 = options1 == null ? -1 : options1.getInt(MediaBrowser.EXTRA_PAGE, -1);
44 int page2 = options2 == null ? -1 : options2.getInt(MediaBrowser.EXTRA_PAGE, -1);
45 int pageSize1 = options1 == null ? -1 : options1.getInt(MediaBrowser.EXTRA_PAGE_SIZE, -1);
46 int pageSize2 = options2 == null ? -1 : options2.getInt(MediaBrowser.EXTRA_PAGE_SIZE, -1);