HomeSort by relevance Sort by last modified time
    Searched refs:page (Results 1301 - 1325 of 3073) sorted by null

<<51525354555657585960>>

  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
backing-dev.h 32 void (*unplug_io_fn)(struct backing_dev_info *, struct page *);
shm.h 17 #include <asm/page.h>
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/editors/
UiAutomatorViewer.java 137 IWorkbenchPage page = window.getActivePage();
138 if (page == null) {
143 if (page.isEditorAreaVisible() == false && InstallDetails.isAdtInstalled()) {
152 editor = IDE.openEditorOnFileStore(page, fileStore);
  /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/resources/history/
history.js 24 // or just make the classes own more of the page.
106 this.isRendered = false; // Has the visit already been rendered on the page?
137 * Returns a dom structure for a browse page result or a search page result.
337 // link on the page.
424 * fill the currently requested page. This is somewhat dependent on the view,
457 var page = this.requestedPage_;
464 this.requestedPage_ = page;
479 * Tell the model that the view will want to see the current page. When
481 * @param {number} page The page we want to view
    [all...]
history_focus_manager.js 25 $('history-page');
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/form/
MultiPagedForm.java 66 // If we don't have a page to go back to, finish as cancelled.
91 public void onBundlePageResult(FormPage page, Bundle bundleResults) {
93 page.complete(bundleResults);
95 // Indicate that we've completed a page. If we get back false it means
96 // the data was invalid and the page must be filled out again.
97 // Otherwise, we move on to the next page.
98 if (!onPageComplete(page)) {
127 FormPage page = (FormPage) currentLocation; local
136 onBundlePageResult(page, results);
147 * Called when a form page completes. If necessary, add or remove any page
403 FormPage page = (FormPage) currentLocation; local
    [all...]
  /development/ndk/platforms/android-9/arch-mips/include/asm/
pgtable.h 71 #define mk_pte(page, pgprot) pfn_pte(page_to_pfn(page), (pgprot))
  /external/chromium_org/chrome/browser/printing/
print_job.h 44 // usually a PrinterQuery. Set the expected page count of the print job.
168 // A new page started printing.
171 // A page is done printing.
189 JobEventDetails(Type type, PrintedDocument* document, PrintedPage* page);
193 PrintedPage* page() const;
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
init_document.js 39 cvox.ChromeVox.recallInit_('ChromeVox not starting on unloaded page: ' +
60 // and one because the background page injects the content script into
61 // every tab on startup. This allows the background page to first deactivate
72 * again, but our injected page script has remained.
  /external/chromium_org/chrome/browser/resources/options/
options_settings_app.css 30 html.settings-app #content-settings-page .content-area {
  /external/chromium_org/chrome/browser/ui/app_list/
extension_app_item.cc 214 syncer::StringOrdinal page; local
218 page = sorting->GetPageOrdinal(next_id);
221 page = sorting->GetPageOrdinal(prev_id);
224 page = sorting->GetPageOrdinal(prev_id);
225 // Only set |next_id| if on the same page, otherwise just insert after prev.
226 if (page.Equals(sorting->GetPageOrdinal(next->extension_id())))
230 sorting->SetPageOrdinal(extension_id_, page);
348 const syncer::StringOrdinal& page = local
353 page.ToInternalValue() + launch.ToInternalValue()));
  /external/chromium_org/chrome/browser/ui/webui/options/
profile_settings_reset_browsertest.js 16 * Browse to the reset profile settings page.
  /external/chromium_org/chrome/renderer/resources/extensions/
page_action_custom_bindings.js 16 'page action');
  /external/chromium_org/components/dom_distiller/core/
article_entry.cc 16 bool IsEntryPageValid(const ArticleEntryPage& page) { return page.has_url(); }
  /external/chromium_org/content/browser/resources/gpu/
gpu_internals.js 11 * Main entry point. called once the page has loaded.
  /external/chromium_org/content/test/gpu/gpu_tests/
cloud_storage_test_base.py 14 from telemetry.page import cloud_storage
15 from telemetry.page import page_test
132 def _FormatReferenceImageName(self, img_name, page, tab):
135 page.revision,
147 def _ConditionallyUploadToCloudStorage(self, img_name, page, tab, screenshot):
153 cloud_name = self._FormatReferenceImageName(img_name, page, tab)
162 def _DownloadFromCloudStorage(self, img_name, page, tab):
171 self._FormatReferenceImageName(img_name, page, tab),
  /external/chromium_org/printing/
printed_document.h 33 // Warning: Once a page is loaded, it cannot be replaced. Pages may be discarded
45 // Sets a page's data. 0-based. Takes metafile ownership.
55 // Retrieves a page. If the page is not available right now, it
56 // requests to have this page be rendered and returns NULL.
60 // Draws the page in the context.
63 void RenderPrintedPage(const PrintedPage& page,
66 void RenderPrintedPage(const PrintedPage& page,
123 // Array of data for each print previewed page.
148 // Page number of the first page
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
PickerIndicatorElement.cpp 37 #include "core/page/Chrome.h"
38 #include "core/page/Page.h"
124 if (!document().page())
131 m_chooser = document().page()->chrome().openDateTimeChooser(this, parameters);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorLayerTreeAgent.h 47 class Page;
54 static PassOwnPtr<InspectorLayerTreeAgent> create(Page* page)
56 return adoptPtr(new InspectorLayerTreeAgent(page));
89 explicit InspectorLayerTreeAgent(Page*);
101 Page* m_page;
  /external/chromium_org/third_party/WebKit/Source/core/loader/
NavigationScheduler.cpp 47 #include "core/page/BackForwardClient.h"
48 #include "core/page/Page.h"
193 frame->page()->deprecatedLocalMainFrame()->loader().client()->navigateBackForward(m_historySteps);
252 return m_frame->page();
276 // Non-user navigation before the page has finished firing onload should not create a new back/forward item.
326 ASSERT(m_frame->page());
348 BackForwardClient& backForward = m_frame->page()->backForward();
360 if (!m_frame->page())
362 if (m_frame->page()->defersLoading())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
ContextMenuController.cpp 28 #include "core/page/ContextMenuController.h"
35 #include "core/page/ContextMenuClient.h"
36 #include "core/page/ContextMenuProvider.h"
37 #include "core/page/EventHandler.h"
43 ContextMenuController::ContextMenuController(Page*, ContextMenuClient* client)
53 PassOwnPtr<ContextMenuController> ContextMenuController::create(Page* page, ContextMenuClient* client)
55 return adoptPtr(new ContextMenuController(page, client));
FrameTree.cpp 22 #include "core/page/FrameTree.h"
30 #include "core/page/Page.h"
268 // Search the entire tree for this page next.
269 Page* page = m_thisFrame->page();
271 // The frame could have been detached from the page, so check it.
272 if (!page)
275 for (Frame* frame = page->mainFrame(); frame; frame = frame->tree().traverseNext()
    [all...]
  /external/chromium_org/tools/perf/benchmarks/
media.py 8 from telemetry.page import page_measurement
14 def MeasurePage(self, page, tab, results):
  /external/chromium_org/tools/perf/metrics/
cpu.py 22 def Start(self, page, tab):
25 def Stop(self, page, tab):

Completed in 2039 milliseconds

<<51525354555657585960>>