HomeSort by relevance Sort by last modified time
    Searched defs:page (Results 151 - 175 of 381) sorted by null

1 2 3 4 5 67 8 91011>>

  /packages/apps/Exchange/src/com/android/exchange/adapter/
Serializer.java 109 int page = mPendingTag >> Tags.PAGE_SHIFT; local
111 if (page != mTagPage) {
112 mTagPage = page;
114 mOutput.write(page);
119 String name = Tags.pages[page][tag - 5];
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
CreateAssetSetWizard.java 177 IWorkbenchPage page = workbench.getActiveWorkbenchWindow().getActivePage(); local
178 IViewPart viewPart = page.findView(JavaUI.ID_PACKAGES);
282 IWorkbenchPage page = window.getActivePage(); local
283 if (page != null) {
284 IEditorPart activeEditor = page.getActiveEditor();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
XmlEditorMultiOutline.java 34 import org.eclipse.ui.part.Page;
49 public class XmlEditorMultiOutline extends Page implements IContentOutlinePage,
133 public void setPageActive(IContentOutlinePage page) {
134 if (page == null) {
138 page = mEmptyPage;
143 page.addSelectionChangedListener(this);
144 mCurrentPage = page;
149 Control control = page.getControl();
151 if (page instanceof IPageBookViewPage) {
153 ((IPageBookViewPage) page).init(getSite())
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/
SourceRevealer.java 80 // workbench page has an editor area (typically the ddms perspective doesn't).
83 IWorkbenchPage page = window.getActivePage(); local
84 if (page.isEditorAreaVisible() == false) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/
AndroidXmlAutoEditStrategyTest.java 40 IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage(); local
41 assertNotNull(page);
42 IEditorPart editor = IDE.openEditor(page, file);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractStyleRefactoringTest.java 145 IWorkbenchPage page = activeWorkbenchWindow.getActivePage(); local
146 IDE.openEditor(page, file);
171 IWorkbenchPage page = activeWorkbenchWindow.getActivePage(); local
172 IDE.openEditor(page, file);
  /system/core/libutils/
LinearAllocator.cpp 34 // The ideal size of a page allocation (these need to be multiples of 8)
38 // The maximum amount of wasted space we can have per page
39 // Allocations exceeding this will have their own dedicated page
86 class LinearAllocator::Page {
88 Page* next() { return mNextPage; }
89 void setNext(Page* next) { mNextPage = next; }
91 Page()
98 return (void*) (((size_t)this) + sizeof(Page));
106 Page(const Page& other) {
168 Page* page = newPage(size); local
    [all...]
  /external/chromium_org/chrome/browser/extensions/
chrome_app_sorting.cc 25 // The number of apps per page. This isn't a hard limit, but new apps installed
26 // from the webstore will overflow onto a new page if this limit is reached.
33 // A preference determining the page on which an app appears in the NTP.
93 // Convert all the page index values to page ordinals. If there are any
102 syncer::StringOrdinal page = GetPageOrdinal(*ext_id); local
107 // Some extensions have invalid page index, so we don't
111 << " has an invalid page index " << old_page_index
118 page = PageIntegerAsStringOrdinal(old_page_index);
119 SetPageOrdinal(*ext_id, page);
166 syncer::StringOrdinal page = page_it->first; local
179 AppLaunchOrdinalMap& page = page_it->second; local
447 PageOrdinalMap::const_iterator page = local
589 const AppLaunchOrdinalMap& page = page_it->second; local
    [all...]
  /external/chromium_org/chrome/browser/ui/views/
profile_chooser_view.cc 577 GURL page = signin::GetPromoURL(signin::SOURCE_MENU, false); local
578 chrome::ShowSingletonTab(browser_, page);
  /external/chromium_org/chrome/renderer/printing/
print_web_view_helper_browsertest.cc 31 // A simple web page.
44 ".break { page-break-after: always; }"
52 // A simple web page with print page size css.
56 " @page {"
64 // A simple web page with print page layout css.
68 " @page {"
76 // A longer web page.
80 // A web page to simulate the print preview page
344 const char* page; member in struct:printing::__anon6875::TestPageData
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFormControlElement.cpp 437 Page* page = document().page(); local
438 if (!page)
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
Geolocation.cpp 259 Page* Geolocation::page() const function in class:WebCore::Geolocation
261 return document() ? document()->page() : 0;
266 Page* page = this->page(); local
267 if (page && m_allowGeolocation == InProgress)
268 GeolocationController::from(page)->cancelPermissionRequest(this);
269 // The frame may be moving to a new page and we want to get the permissions from the new page's client
278 Page* page = this->page(); local
644 Page* page = this->page(); local
654 Page* page = this->page(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontFastPath.cpp 130 static inline std::pair<GlyphData, GlyphPage*> glyphDataAndPageForNonCJKCharacterWithGlyphOrientation(UChar32 character, NonCJKGlyphOrientation orientation, GlyphData& data, GlyphPage* page, unsigned pageNumber)
135 GlyphPage* uprightPage = uprightNode->page();
140 return make_pair(data, page);
149 GlyphPage* verticalRightPage = verticalRightNode->page();
155 return make_pair(data, page);
161 return make_pair(data, page);
194 GlyphPage* page = 0; local
198 page = node->page();
199 if (page) {
317 GlyphPage* page = node->page(); local
    [all...]
  /external/chromium_org/tools/site_compare/
site_compare.py 28 import commands.compare2 # compare one page in two versions of same browser namespace
30 import commands.measure # measure length of time a page takes to load namespace
35 # import commands.timeload # measure length of time a page takes to load
46 timeout: time (in seconds) to wait for page to load
  /external/chromium_org/v8/src/
store-buffer.cc 192 { 97, ((Page::kPageSize / kPointerSize) / 97) / 8 },
193 { 23, ((Page::kPageSize / kPointerSize) / 23) / 16 },
194 { 7, ((Page::kPageSize / kPointerSize) / 7) / 32 },
195 { 3, ((Page::kPageSize / kPointerSize) / 3) / 256 },
368 Page* page = it.next(); local
370 reinterpret_cast<PagedSpace*>(page->owner()),
371 page,
447 Address page = Page::FromAddress(addr)->area_start() local
454 Address page = Page::FromAllocationTop(addr)->area_start(); local
660 Page* page = reinterpret_cast<Page*>(chunk); local
    [all...]
  /external/iputils/Modules/
pg3.c 304 struct page *page = alloc_pages(GFP_KERNEL, 0); local
305 skb_shinfo(skb)->frags[i].page = page;
328 get_page(skb_shinfo(skb)->frags[i].page);
329 skb_shinfo(skb)->frags[i].page = skb_shinfo(skb)->frags[i-1].page;
  /external/linux-tools-perf/
builtin-help.c 36 OPT_SET_UINT('m', "man", &help_format, "show man page", HELP_FORMAT_MAN),
39 OPT_SET_UINT('i', "info", &help_format, "show info page",
117 static void exec_woman_emacs(const char *path, const char *page)
125 strbuf_addf(&man_page, "(woman \"%s\")", page);
131 static void exec_man_konqueror(const char *path, const char *page)
153 strbuf_addf(&man_page, "man:%s(1)", page);
159 static void exec_man_man(const char *path, const char *page)
163 execlp(path, "man", page, NULL);
167 static void exec_man_cmd(const char *cmd, const char *page)
170 strbuf_addf(&shell_cmd, "%s %s", cmd, page);
358 const char *page = cmd_to_page(perf_cmd); local
373 const char *page = cmd_to_page(perf_cmd); local
406 const char *page = cmd_to_page(perf_cmd); local
    [all...]
  /external/linux-tools-perf/util/
trace-event-read.c 206 die("did not read header page");
212 * The size field in the page is of type long,
287 char *page; member in struct:cpu_data
307 if (!cpu_data[cpu].page)
312 free(cpu_data[cpu].page);
313 cpu_data[cpu].page = NULL;
325 ret = read(input_fd, cpu_data[cpu].page, page_size);
327 die("failed to read page");
335 munmap(cpu_data[cpu].page, page_size);
336 cpu_data[cpu].page = NULL
374 void *page = cpu_data[cpu].page; local
    [all...]
  /external/qemu/hw/
dma.c 42 uint8_t page; member in struct:dma_regs
91 d->regs[ichan].page = data;
117 return d->regs[ichan].page;
406 target_phys_addr_t addr = ((r->pageh & 0x7f) << 24) | (r->page << 16) | r->now[ADDR];
428 target_phys_addr_t addr = ((r->pageh & 0x7f) << 24) | (r->page << 16) | r->now[ADDR];
523 qemu_put_8s (f, &r->page);
551 qemu_get_8s (f, &r->page);
goldfish_events_device.c 54 int page; member in struct:__anon25427
94 QFIELD_INT32(page),
185 int page = s->page; local
186 if (page == PAGE_NAME) {
189 } if (page >= PAGE_EVBITS && page <= PAGE_EVBITS + EV_MAX)
190 return s->ev_bits[page - PAGE_EVBITS].len;
191 if (page == PAGE_ABSDATA)
199 int page = s->page local
    [all...]
scsi-disk.c 462 /* Supported page codes, mandatory */
474 outbuf[r->iov.iov_len++] = 0x00; // this page
477 outbuf[r->iov.iov_len++] = 0x00; // list of supported pages (this page)
498 /* Supported page codes */
505 outbuf[r->iov.iov_len++] = 0x80; // this page
515 /* Device identification page, mandatory */
530 outbuf[r->iov.iov_len++] = 0x83; // this page
555 BADF("Error: Inquiry (STANDARD) page or code "
560 /* PAGE CODE == 0 */
613 int page; local
    [all...]
  /external/v8/src/
store-buffer.cc 210 { 97, ((Page::kPageSize / kPointerSize) / 97) / 8 },
211 { 23, ((Page::kPageSize / kPointerSize) / 23) / 16 },
212 { 7, ((Page::kPageSize / kPointerSize) / 7) / 32 },
213 { 3, ((Page::kPageSize / kPointerSize) / 3) / 256 },
386 Page* page = it.next(); local
388 reinterpret_cast<PagedSpace*>(page->owner()),
389 page,
456 Address page = Page::FromAddress(addr)->area_start() local
463 Address page = Page::FromAllocationTop(addr)->area_start(); local
646 Page* page = reinterpret_cast<Page*>(chunk); local
    [all...]
  /external/yaffs2/yaffs2/mtdemul/
nandemul2k.c 75 nandemul_Page *page[PAGES_PER_BLOCK]; member in struct:__anon28978
101 static void nandemul2k_Read(void *buffer, int page, int start, int nBytes)
103 int pg = page%PAGES_PER_BLOCK;
104 int blk = page/PAGES_PER_BLOCK;
107 memcpy(buffer,&ned.block[blk]->page[pg]->data[start],nBytes);
112 static void nandemul2k_Program(const void *buffer, int page, int start, int nBytes)
114 int pg = page%PAGES_PER_BLOCK;
115 int blk = page/PAGES_PER_BLOCK;
119 p = &ned.block[blk]->page[pg]->data[start];
145 memset(blk->page[i],0xff,sizeof(nandemul_Page))
321 int start, page; local
379 int col, page; local
425 int start, page; local
483 int col, page; local
    [all...]
  /frameworks/av/media/libstagefright/
NuCachedSource2.cpp 35 struct Page {
40 Page *acquirePage();
41 void releasePage(Page *page);
43 void appendPage(Page *page);
56 List<Page *> mActivePages;
57 List<Page *> mFreePages;
59 void freePages(List<Page *> *list);
74 void PageCache::freePages(List<Page *> *list)
77 Page *page = *it; local
90 Page *page = *it; local
96 Page *page = new Page; local
119 Page *page = *it; local
314 PageCache::Page *page = mCache->acquirePage(); local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
videotext.h 36 #define VTXIOCCLRPAGE_OLD 0x7102 /* clear page-buffer */
37 #define VTXIOCCLRFOUND_OLD 0x7103 /* clear bits indicating that page was found */
38 #define VTXIOCPAGEREQ_OLD 0x7104 /* search for page */
39 #define VTXIOCGETSTAT_OLD 0x7105 /* get status of page-buffer */
40 #define VTXIOCGETPAGE_OLD 0x7106 /* get contents of page-buffer */
42 #define VTXIOCPUTPAGE_OLD 0x7108 /* display page on TV-screen */
61 int numpages; /* number of page-buffers of vtx-chipset */
86 int page; /* number of requested page (hexadecimal) */ member in struct:__anon37852
90 int pgbuf; /* buffer where page will be stored *
    [all...]

Completed in 372 milliseconds

1 2 3 4 5 67 8 91011>>