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

1 2 3 4 5 6 7 8 91011>>

  /external/skqp/tools/skp/page_sets/
skia_gmailthread_desktop.py 9 from telemetry.page import page as page_module
10 from telemetry.page import shared_page_state
13 class SkiaBuildbotDesktopPage(page_module.Page):
  /external/v8/src/heap/
array-buffer-tracker.h 19 class Page;
32 // access to the tracker by taking the page lock for the corresponding page.
40 // Frees all backing store pointers for dead JSArrayBuffer on a given page.
41 // Requires marking information to be present. Requires the page lock to be
43 static void FreeDead(Page* page);
45 // Frees all remaining, live or dead, array buffers on a page. Only useful
47 static void FreeAll(Page* page);
    [all...]
spaces-inl.h 32 : begin_(Page::FromAddress(start)),
33 end_(Page::FromAllocationAreaAddress(limit)->next_page()) {
46 if (Page::IsAlignedToPageSize(current_)) {
47 Page* page = Page::FromAllocationAreaAddress(current_); local
48 page = page->next_page();
49 DCHECK(!page->is_anchor());
50 current_ = page->area_start()
180 Page* page = static_cast<Page*>(chunk); local
192 Page* page = reinterpret_cast<Page*>(chunk); local
359 Page* FreeListCategory::page() { function in class:v8::internal::FreeListCategory
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/keyboard/
ViewGroupFocusHelper.java 59 PagedView page = (PagedView) parent; local
60 outRect.left -= page.getScrollForPage(page.indexOfChild(child));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateTestWizard.java 56 public IWizardPage getNextPage(IWizardPage page) {
57 if (page == mSelectionPage) {
76 return super.getNextPage(page);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/
LogCatMonitor.java 196 IWorkbenchPage page = window.getActivePage();
197 if (page == null) {
203 if (!isLogCatViewVisible(page)) {
204 boolean showLogCatView = promptUserOnce(page.getWorkbenchWindow().getShell());
211 final LogCatView v = displayLogCatView(page);
223 private boolean isLogCatViewVisible(IWorkbenchPage page) {
224 IViewPart view = page.findView(LogCatView.ID);
225 return view != null && page.isPartVisible(view);
228 private LogCatView displayLogCatView(IWorkbenchPage page) {
229 // if the view is already in the page, just bring it to the fron
    [all...]
  /external/doclava/res/assets/templates-sdk/
docpage.cs 41 if:page.trainingcourse ?> trainingcourse<?cs /if ?><?cs
46 if:(design||training||walkthru) && !page.trainingcourse && !page.article ?><?cs
60 <h1 itemprop="name"><?cs var:page.title ?>
65 <a href="#" class="prev-page-link hide"
73 <a href="#" class="next-page-link hide"
90 elif:!page.trainingcourse ?>
92 <a href="#" class="prev-page-link hide"
100 <a href="#" class="next-page-link hide"
125 if:page.landing ?><?cs # header logic for docs that are landing pages ?
    [all...]
  /external/ImageMagick/coders/
pcl.c 184 page;
228 Set the page density.
247 Determine page geometry from the PCL media box.
253 (void) ResetMagickMemory(&page,0,sizeof(page));
258 if (image_info->page != (char *) NULL)
303 if (width > page.width)
304 page.width=width;
305 if (height > page.height)
306 page.height=height
180 page; local
    [all...]
  /frameworks/av/media/libstagefright/
NuCachedSource2.cpp 37 struct Page {
42 Page *acquirePage();
43 void releasePage(Page *page);
45 void appendPage(Page *page);
58 List<Page *> mActivePages;
59 List<Page *> mFreePages;
61 void freePages(List<Page *> *list);
76 void PageCache::freePages(List<Page *> *list)
79 Page *page = *it; local
92 Page *page = *it; local
98 Page *page = new Page; local
121 Page *page = *it; local
360 PageCache::Page *page = mCache->acquirePage(); local
    [all...]
  /external/pdfium/public/
fpdf_annot.h 110 // Create an annotation in |page| of the subtype |subtype|. If the specified
115 // page - handle to a page.
120 FPDFPage_CreateAnnot(FPDF_PAGE page, FPDF_ANNOTATION_SUBTYPE subtype);
123 // Get the number of annotations in |page|.
125 // page - handle to a page.
127 // Returns the number of annotations in |page|.
128 FPDF_EXPORT int FPDF_CALLCONV FPDFPage_GetAnnotCount(FPDF_PAGE page);
131 // Get annotation in |page| at |index|. Must call FPDFPage_CloseAnnot() when th
    [all...]
fpdf_edit.h 37 // The page object constants.
97 // Create a new PDF page.
100 // page_index - suggested index of the page to create. If it is larger than
101 // document's current last index(L), the created page index is
103 // width - the page width.
104 // height - the page height.
106 // Returns the handle to the new page.
108 // The page should be closed with CPDF_ClosePage() when finished as
109 // with any other page in the document.
115 // Delete the page at |page_index|
    [all...]
  /external/pdfium/fpdfsdk/
fpdfformfill.cpp 12 #include "core/fpdfapi/page/cpdf_page.h"
113 FPDF_PAGE page) {
114 UnderlyingPageType* pPage = UnderlyingFromFPDFPage(page);
136 FPDF_PAGE page,
146 UnderlyingPageType* pPage = UnderlyingFromFPDFPage(page);
213 FPDF_PAGE page,
218 CPDF_Page* pPage = CPDFPageFromFPDFPage(page);
232 CPDFXFA_Page* pXFAPage = UnderlyingFromFPDFPage(page);
271 FPDF_PAGE page,
276 CPDF_Page* pPage = CPDFPageFromFPDFPage(page);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/folder/
FolderPagedView.java 63 * Fraction of the width to scroll when showing the next page hint.
197 * Also sets the current page to the last page.
258 CellLayout page = (CellLayout) mInflater.inflate(R.layout.folder_page, this, false); local
259 page.setCellDimensions(grid.folderCellWidthPx, grid.folderCellHeightPx);
260 page.getShortcutsAndWidgets().setMotionEventSplittingEnabled(false);
261 page.setInvertIfRtl(true);
262 page.setGridSize(mGridCountX, mGridCountY);
264 addView(page, -1, generateDefaultLayoutParams());
265 return page;
311 CellLayout page = (CellLayout) getChildAt(i); local
410 CellLayout page = getPageAt(pageIndex); local
450 CellLayout page = getPageAt(k); local
537 CellLayout page = getPageAt(pageNo); local
630 final CellLayout page = getPageAt(p); local
667 CellLayout page = getPageAt(pageToAnimate); local
    [all...]
  /external/deqp/framework/delibs/depool/
deMemPool.c 37 INITIAL_PAGE_SIZE = 128, /*!< Size for the first allocated memory page. */
38 MAX_PAGE_SIZE = 8096, /*!< Maximum size for a memory page. */
39 MEM_PAGE_BASE_ALIGN = 4 /*!< Base alignment guarantee for mem page data ptr. */
46 * \brief Memory page header.
48 * Represent a page of memory allocate by a memory pool.
96 MemPage* currentPage; /*!< Current memory page from which to allocate. */
117 * \brief Initialize a memory page.
118 * \param page Memory page to initialize.
119 * \param capacity Capacity allocated for the memory page
138 MemPage* page = (MemPage*)deMalloc(sizeof(MemPage) + capacity); local
362 MemPage* page = pool->currentPage; local
    [all...]
  /external/squashfs-tools/kernel/fs/squashfs/
file.c 375 static int squashfs_readpage(struct file *file, struct page *page)
377 struct inode *inode = page->mapping->host;
384 int index = page->index >> (msblk->block_log - PAGE_CACHE_SHIFT);
385 int start_index = page->index & ~mask;
389 TRACE("Entered squashfs_readpage, page index %lx, start block %llx\n",
390 page->index, squashfs_i(inode)->start);
392 if (page->index >= ((i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
419 ERROR("Unable to read page, block %llx, size %x"
436 ERROR("Unable to read page, block %llx, size %x\n"
    [all...]
  /build/make/tools/droiddoc/templates-ndk/
docpage.cs 20 <?cs if:(design||training||walkthru) && !page.trainingcourse && !page.article ?><?cs # header logic for docs that provide previous/next buttons ?>
26 <?cs else ?><h1 itemprop="name"><?cs var:page.title ?></h1>
31 <a href="#" class="prev-page-link hide"
39 <a href="#" class="next-page-link hide"
56 <?cs elif:!page.trainingcourse ?>
58 <a href="#" class="prev-page-link hide"
66 <a href="#" class="next-page-link hide"
100 <?cs if:page.landing ?><?cs # header logic for docs that are landing pages ?>
102 <?cs if:page.landing.image ?><?cs # use two-column layout only if there is an image ?
    [all...]
  /external/rmi4utils/rmidevice/
rmidevice.cpp 58 int RMIDevice::SetRMIPage(unsigned char page)
62 if (m_page == page)
65 m_page = page;
66 rc = Write(RMI_DEVICE_PAGE_SELECT_REGISTER, &page, 1);
263 unsigned int page; local
273 for (page = 0; page < maxPage; ++page) {
274 unsigned int page_start = RMI_DEVICE_PAGE_SIZE * page;
279 SetRMIPage(page);
    [all...]
  /frameworks/av/packages/MediaComponents/src/com/android/media/
MediaBrowser2Impl.java 133 public void getChildren_impl(String parentId, int page, int pageSize, Bundle extras) {
137 if (page < 1 || pageSize < 1) {
138 throw new IllegalArgumentException("Neither page nor pageSize should be less than 1");
144 binder.getChildren(getControllerStub(), parentId, page, pageSize, extras); local
177 public void getSearchResult_impl(String query, int page, int pageSize, Bundle extras) {
181 if (page < 1 || pageSize < 1) {
182 throw new IllegalArgumentException("Neither page nor pageSize should be less than 1");
187 binder.getSearchResult(getControllerStub(), query, page, pageSize, extras); local
212 public void onGetChildrenDone(String parentId, int page, int pageSize, List<MediaItem2> result,
215 mCallback.onGetChildrenDone(getInstance(), parentId, page, pageSize, result, extras)
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
MediaBrowserTest.java 221 for (int page = 0; page <= lastPage; ++page) {
223 options.putInt(MediaBrowser.EXTRA_PAGE, page);
234 if (page != lastPage) {
240 // Check whether all the items in the current page are loaded.
242 assertEquals(StubMediaBrowserService.MEDIA_ID_CHILDREN[page * pageSize + i],
284 final int page = 2; local
287 options.putInt(MediaBrowser.EXTRA_PAGE, page);
298 assertEquals(page, mSubscriptionCallback.mLastOptions.getInt(MediaBrowser.EXTRA_PAGE))
    [all...]
  /external/pdfium/testing/
embedder_test.h 104 // Determine the page numbers present in the document.
108 // Load a specific page of the open document.
111 // Convert a loaded page into a bitmap.
112 FPDF_BITMAP RenderPage(FPDF_PAGE page);
114 // Convert a loaded page into a bitmap with page rendering flags specified.
115 // See public/fpdfview.h for a list of page rendering flags.
116 FPDF_BITMAP RenderPageWithFlags(FPDF_PAGE page,
120 // Relese the resources obtained from LoadPage(). Further use of |page|
122 void UnloadPage(FPDF_PAGE page);
    [all...]
  /external/valgrind/memcheck/tests/
descr_belowsp.stderr.exp 17 In stack guard protected page, .... bytes below stack pointer
23 In stack guard protected page, .... bytes below stack pointer
26 In stack guard protected page, .... bytes below stack pointer
  /frameworks/base/graphics/java/android/graphics/pdf/
PdfDocument.java 35 * create a new document and then for every page you want to add you start a page,
36 * write content to the page, and finish the page. After you are done with all
39 * created one by one, i.e. you can have only a single page to which you are
49 * // crate a page description
52 * // start a page
53 * Page page = document.startPage(pageInfo);
55 * // draw something on the page
    [all...]
  /frameworks/base/media/java/android/media/
MediaBrowser2.java 80 * @param page page number that you've specified with
82 * @param pageSize page size that you've specified with
88 int page, int pageSize, @Nullable List<MediaItem2> result,
125 * @param page page number that you've specified with
127 * @param pageSize page size that you've specified with
133 int page, int pageSize, @Nullable List<MediaItem2> result,
192 * @param page page number to get the result. Starts from {@code 1
    [all...]
  /packages/services/BuiltInPrintService/jni/plugins/
pdf_render.c 60 static int getPageAttributes(pdf_render_ifc_t *obj, int page, double *width, double *height) {
61 LOGD("getPageAttributes %p %d", obj, page);
67 page);
76 static int renderPageStripe(pdf_render_ifc_t *obj, int page, int width, int height, float zoom,
78 LOGD("renderPageStripe %p %d", obj, page);
86 if (!(*self->env)->CallBooleanMethod(self->env, self->obj, gPdfRenderRenderPageStripe, page,
  /packages/services/BuiltInPrintService/src/com/android/bips/jni/
PdfRender.java 98 * Opens the specified document, returning the page count or 0 on error. (Called by native
122 * Returns the size of the specified page or null on error. (Called by native code.)
123 * @param page 0-based page
124 * @return width and height of page in points (1/72")
126 public SizeD getPageSize(int page) {
127 if (DEBUG) Log.d(TAG, "getPageSize() page=" + page);
133 return mService.getPageSize(page - 1);
141 * Renders the content of the page. (Called by native code.
    [all...]

Completed in 468 milliseconds

1 2 3 4 5 6 7 8 91011>>