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

1 2 3 4 5 6 78 91011>>

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/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:__anon39443
90 int pgbuf; /* buffer where page will be stored *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/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:__anon40957
90 int pgbuf; /* buffer where page will be stored *
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtUtils.java 281 IWorkbenchPage page = window.getActivePage(); local
282 if (page != null) {
283 return page.getActiveEditor();
310 * Returns the current active workbench page, or null if not found
312 * @return the current page, or null
318 IWorkbenchPage page = window.getActivePage(); local
319 if (page == null) {
322 page = pages[0];
326 return page;
386 for (IWorkbenchPage page : pages)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidTextEditor.java 68 * Multi-page form editor for Android text files.
78 /** Preference name for the current page of this file */
84 /** Page id of the XML source editor, used for switching tabs programmatically */
90 /** Page index of the text editor (always the last page) */
96 /** flag set during page creation */
119 * as well as text editor page) have been created. This give a chance to deriving
120 * classes to adjust behavior once the text page has been created.
141 * Creates the pages of the multi-page editor.
150 * Creates the page for the Android Editor
405 Object page = pages.get(i); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
BaseProjectHelper.java 368 // workbench page has an editor area (typically the ddms perspective doesn't).
371 IWorkbenchPage page = window.getActivePage(); local
372 if (page.isEditorAreaVisible() == false) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/build/
AaptQuickFixTest.java 115 IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage(); local
116 assertNotNull(page);
117 IEditorPart editor = IDE.openEditor(page, file);
225 IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage(); local
226 assertNotNull(page);
227 IEditorPart editor = IDE.openEditor(page, file);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/
HyperlinksTest.java 208 IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage(); local
209 assertNotNull(page);
210 IEditorPart editor = IDE.openEditor(page, file);
  /bionic/libc/kernel/common/linux/
skbuff.h 64 struct page *page; member in struct:skb_frag_struct
  /development/ndk/platforms/android-3/include/linux/
skbuff.h 61 struct page *page; member in struct:skb_frag_struct
  /external/chromium_org/chrome/browser/chromeos/system/
ash_system_tray_delegate.cc 130 // The URL for the Google Drive settings page.
221 // Shows the settings sub page in the last active browser. If there is no such
222 // browser, creates a new browser with the settings sub page.
232 std::string page = chrome::kInternetOptionsSubPage; local
233 page += "?servicePath=" + net::EscapeUrlEncodedData(service_path, true);
237 page,
544 // TODO(tengs): Open the drive-specific settings page once we put it in.
545 // For now just show Google Drive main page.
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_blocking_page_test.cc 338 // Tests the safe browsing blocking page in a browser.
378 // service, navigates to that page, and returns the url.
389 // navigates to a page with an iframe containing the malware site, and
390 // returns the url of the parent page.
406 // to its interstital page until it gets a command from the renderer
441 TestSafeBrowsingBlockingPage* page = local
444 page->WaitForDelete();
492 // Load the test page.
494 // Trigger the safe browsing interstitial page via a redirect in
502 // Cancel the redirect request while interstitial page is open
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/
history_ui.cc 759 history::URLResult const &page = (*results)[i]; member in class:history
764 page.url(),
765 page.title(),
766 page.visit_time(),
769 page.snippet().text(),
770 page.blocked_visit(),
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAnchorElement.cpp 41 #include "core/page/Chrome.h"
42 #include "core/page/ChromeClient.h"
43 #include "core/page/Page.h"
159 Page* page = document().page(); local
160 if (!page)
162 if (!page->chrome().client().tabsToLinks())
  /external/chromium_org/third_party/WebKit/Source/web/
WebPluginContainerImpl.cpp 43 #include "core/page/Chrome.h"
44 #include "core/page/EventHandler.h"
61 #include "core/page/FocusController.h"
64 #include "core/page/Page.h"
65 #include "core/page/scrolling/ScrollingCoordinator.h"
271 Page* page = m_element->document().page(); local
272 if (!page)
279 Page* page = m_element->document().page(); local
707 Page* page = parentView->frame().page(); local
    [all...]
  /external/chromium_org/v8/src/
heap-inl.h 59 Page::FromAllocationTop(reinterpret_cast<Address>(limit_)));
358 NewSpacePage* page = NewSpacePage::FromAddress(old_address); local
360 bool below_mark = page->IsFlagSet(MemoryChunk::NEW_SPACE_BELOW_AGE_MARK) &&
361 (!page->ContainsLimit(age_mark) || old_address < age_mark);
  /external/libnfc-nxp/src/
phFriNfc_ISO15693Map.c 161 /* CC indicating tag is capable of inventory page read */
517 uint8_t page,
554 page;
584 // Inventory page reads return an extra security byte per page
589 // Going for another page of 16 bytes, check for space in dst buffer
1641 uint32_t page = 0; local
    [all...]
  /external/tcpdump/
print-wb.c 76 #define PT_PREQ 5 /* page vector request */
77 #define PT_PREP 7 /* page vector reply */
89 u_int32_t p_uid; /* page number */
122 struct PageID pd_page; /* page that operations apply to */
133 struct PageID pr_page; /* page of drawops */
154 struct PageID page; member in struct:pgstate
165 struct PageID pi_mpage; /* current page */
198 ipaddr_string(&id->pi_ps.page.p_sid),
199 EXTRACT_32BITS(&id->pi_ps.page.p_uid),
276 ipaddr_string(&ps->page.p_sid)
    [all...]
  /external/tremolo/Tremolo/
framing.c 481 /* returns the number of packets that are completed on this page (if
482 the leading packet is begun on a previous page, but ends on this
483 page, it's counted */
486 If a page consists of a packet begun on a previous page, and a new
487 packet begun (but not completed) on this page, the return will be:
488 ogg_page_packets(page) ==1,
489 ogg_page_continued(page) !=0
491 If a page happens to be a single packet that was begun on a
492 previous page, and spans to the next page (in the case of a three o
695 oggbyte_buffer page; local
    [all...]
  /external/v8/src/
heap-inl.h 59 Page::FromAllocationTop(reinterpret_cast<Address>(limit_)));
118 { MaybeObject* maybe_result = (size > Page::kMaxNonCodeHeapObjectSize)
152 { MaybeObject* maybe_result = (size > Page::kMaxNonCodeHeapObjectSize)
326 NewSpacePage* page = NewSpacePage::FromAddress(old_address); local
328 bool below_mark = page->IsFlagSet(MemoryChunk::NEW_SPACE_BELOW_AGE_MARK) &&
329 (!page->ContainsLimit(age_mark) || old_address < age_mark);
  /packages/apps/Calculator/src/com/android/calculator2/
Calculator.java 72 // Single page UI
309 final View page = position == 0 ? mSimplePage : mAdvancedPage; local
310 ((ViewGroup) container).addView(page);
311 return page;
  /packages/apps/Exchange/src/com/android/exchange/adapter/
Parser.java 56 // Where tags start in a page
73 // The current tag table (i.e. the tag table for the current page)
94 // The current page
95 public int page; field in class:Parser
160 String[] page = pages[i]; typedefs
161 if (page.length > 0) {
162 tagTables[i] = page;
287 * looking for it, generate an EodException. The tag returned consists of the page number
296 // Lose the page information
299 // If we're a start, set tag to include the page and return i
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
FocusHelper.java 119 * Returns the Viewgroup containing page contents for the page at the index specified.
122 ViewGroup page = (ViewGroup) ((PagedView) container).getPageAt(index); local
123 if (page instanceof PagedViewCellLayout) {
125 page = (ViewGroup) page.getChildAt(0);
127 return page;
159 // Select the previous widget or the last widget on the previous page
176 // Select the next widget or the first widget on the next page
226 // Select the first item on the previous page, or the first item on this pag
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
FocusHelper.java 118 * Returns the Viewgroup containing page contents for the page at the index specified.
121 ViewGroup page = (ViewGroup) ((PagedView) container).getPageAt(index); local
122 if (page instanceof CellLayout) {
124 page = ((CellLayout) page).getShortcutsAndWidgets();
126 return page;
158 // Select the previous widget or the last widget on the previous page
175 // Select the next widget or the first widget on the next page
225 // Select the first item on the previous page, or the first item on this pag
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
cursesf.h 217 // Mark the field to start a new page
222 // Retrieve whether or not the field starts a new page.
551 // Make the page the current page of the form.
556 // Retrieve current page number
557 int page() const { function in class:NCursesForm
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
cursesf.h 217 // Mark the field to start a new page
222 // Retrieve whether or not the field starts a new page.
551 // Make the page the current page of the form.
556 // Retrieve current page number
557 int page() const { function in class:NCursesForm

Completed in 788 milliseconds

1 2 3 4 5 6 78 91011>>