HomeSort by relevance Sort by last modified time
    Searched defs:page (Results 226 - 250 of 443) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
TextureAtlas.java 28 import com.badlogic.gdx.graphics.g2d.TextureAtlas.TextureAtlasData.Page;
56 public static class Page {
67 public Page (FileHandle handle, float width, float height, boolean useMipMaps, Format format, TextureFilter minFilter,
82 public Page page; field in class:TextureAtlas.TextureAtlasData.Region
99 final Array<Page> pages = new Array();
105 Page pageImage = null;
138 pageImage = new Page(file, width, height, min.isMipMap(), format, min, max, repeatX, repeatY);
152 region.page = pageImage;
195 public Array<Page> getPages () {
    [all...]
  /external/libogg/src/
framing.c 46 unsigned char *page=og->header; local
47 ogg_int64_t granulepos=page[13]&(0xff);
48 granulepos= (granulepos<<8)|(page[12]&0xff);
49 granulepos= (granulepos<<8)|(page[11]&0xff);
50 granulepos= (granulepos<<8)|(page[10]&0xff);
51 granulepos= (granulepos<<8)|(page[9]&0xff);
52 granulepos= (granulepos<<8)|(page[8]&0xff);
53 granulepos= (granulepos<<8)|(page[7]&0xff);
54 granulepos= (granulepos<<8)|(page[6]&0xff);
74 /* returns the number of packets that are completed on this page (i
637 unsigned char *page=oy->data+oy->returned; local
692 unsigned char *page=oy->data+oy->returned; local
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.cpp 402 // Operation: Page(S+A) - Page(P)
687 int64_t page = (Value + Addend + 0x8000) & ~0xffff; local
688 return (Value + Addend - page) & 0xffff;
    [all...]
  /external/pdfium/core/src/fpdftext/
fpdf_text.cpp 680 static void CheckRotate(CPDF_Page& page, CFX_FloatRect& page_bbox) {
682 FX_POSITION pos = page.GetFirstObjectPosition();
684 CPDF_PageObject* pObj = page.GetNextObject(pos);
712 matrix.Set(0, -1, 1, 0, 0, page.GetPageHeight());
714 matrix.Set(-1, 0, 0, -1, page.GetPageWidth(), page.GetPageHeight());
716 matrix.Set(0, 1, -1, 0, page.GetPageWidth(), 0);
720 page.Transform(matrix);
732 CPDF_Page page; local
733 page.Load(pDoc, pPage)
782 CPDF_Page page; local
    [all...]
  /frameworks/av/media/libstagefright/
OggExtractor.cpp 92 struct Page {
110 Page mCurrentPage;
132 ssize_t readPage(off64_t offset, Page *page);
355 // Given the offset of the "current" page, find the page immediately preceding
357 // To do this we back up from the "current" page's offset until we find any
358 // page preceding it and then scan forward to just before the current page.
376 // We are at the last page and didn't back off enough
858 Page page; local
    [all...]
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
MediaBrowserServiceSupport.java 280 int page = -1; local
285 page = options.getInt(MediaBrowserCompat.EXTRA_PAGE, -1);
288 if (page < 0 || pageSize < 1) {
294 int fromIndex = page == -1 ? 0 : page * pageSize;
301 if (page <= 0) {
316 toIndex = page == -1 ? genres.size() : Math.min(fromIndex + pageSize, genres.size());
337 toIndex = page == -1 ? tracks.size() : Math.min(fromIndex + pageSize, tracks.size());
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
TimerFragment.java 143 // Start watching for page changes away from this fragment.
146 // Initialize the page indicators.
201 // Stop watching for page changes away from this fragment.
332 * Updates the state of the page indicators so they reflect the selected page in the context of
336 final int page = mViewPager.getCurrentItem(); local
340 final int[] states = computePageIndicatorStates(page, pageIndicatorCount, pageCount);
354 * @param page the selected page; value between 0 and {@code pageCount}
355 * @param pageIndicatorCount the number of indicators displaying the {@code page} locatio
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
DragLayer.java 646 // Set the anchor view if the page is scrolling
788 int page = workspace.getNextPage(); local
790 CellLayout leftPage = (CellLayout) workspace.getChildAt(isRtl ? page + 1 : page - 1);
791 CellLayout rightPage = (CellLayout) workspace.getChildAt(isRtl ? page - 1 : page + 1);