/external/chromium_org/third_party/WebKit/Source/core/page/ |
AutoscrollController.cpp | 30 #include "core/page/AutoscrollController.h" 34 #include "core/page/Chrome.h" 35 #include "core/page/EventHandler.h" 36 #include "core/page/Page.h" 47 PassOwnPtr<AutoscrollController> AutoscrollController::create(Page& page) 49 return adoptPtr(new AutoscrollController(page)); 52 AutoscrollController::AutoscrollController(Page& page) 149 Page* page = scrollable->frame() ? scrollable->frame()->page() : 0; local [all...] |
/external/chromium_org/tools/telemetry/telemetry/page/ |
page_filter_unittest.py | 7 from telemetry.page import page namespace 8 from telemetry.page import page_filter 9 from telemetry.page import page_set 31 self.p1 = page.Page( 34 self.p2 = page.Page( 37 self.p3 = page.Page( [all...] |
/packages/experimental/PrintApp/src/foo/bar/print/ |
PrintActivity.java | 26 import android.graphics.pdf.PdfDocument.Page; 184 // Write the page only if it was requested. 187 Page page = mPdfDocument.startPage(i); 188 // The page of the PDF backed canvas size is in pixels (1/72") and 193 page.getCanvas().scale(scale, scale); 194 view.draw(page.getCanvas()); 195 mPdfDocument.finishPage(page); 264 private boolean containsPage(PageRange[] pageRanges, int page) { 267 if (pageRanges[i].getStart() <= page [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
NewActivityWizard.java | 47 * Wizard and a New Template Wizard: it has the "Activity selector" page from 49 * second page, but beyond that it runs the normal template wizard when it comes 92 public IWizardPage getNextPage(IWizardPage page) { 93 if (page == mActivityPage) { 106 } else if (page == mTemplatePage && shouldAddIconPage()) { 110 } else if (page == mTemplatePage 111 || shouldAddIconPage() && page == getIconPage(mActivityValues.getIconState())) { 122 if (template != null && page == getDependencyPage(template, false)) { 127 return super.getNextPage(page); 132 // Deal with lazy creation of some pages: these may not be in the page-list ye [all...] |
/external/chromium_org/chrome/common/extensions/docs/server2/ |
link_error_detector.py | 16 Page = namedtuple('Page', 'status, links, anchors, anchor_refs') 25 '''Render the page at |path| using a |renderer| and process the contents of 26 that page. Returns a |Page| namedtuple with fields for the http status code 27 of the page render, the href of all the links that occurred on the page, all 28 of the anchors on the page (ids and names), and all links that contain an 31 If a non-html page is properly rendered, a |Page| with status code 200 an [all...] |
/external/chromium_org/components/dom_distiller/core/ |
distilled_content_store_unittest.cc | 24 ArticleEntryPage* page = entry.add_pages(); local 25 page->set_url(page_url1); 28 ArticleEntryPage* page = entry.add_pages(); local 29 page->set_url(page_url2); 32 ArticleEntryPage* page = entry.add_pages(); local 33 page->set_url(page_url3); 42 DistilledPageProto* page = article.add_pages(); local 43 page->set_url(entry.pages(i).url()); 44 page->set_html("<div>" + entry.pages(i).url() + "</div>");
|
/external/chromium_org/third_party/WebKit/Source/core/loader/ |
FrameLoader.cpp | 72 #include "core/page/BackForwardClient.h" 73 #include "core/page/Chrome.h" 74 #include "core/page/ChromeClient.h" 75 #include "core/page/CreateWindow.h" 76 #include "core/page/EventHandler.h" 77 #include "core/page/FrameTree.h" 78 #include "core/page/Page.h" 80 #include "core/page/WindowFeatures.h" 81 #include "core/page/scrolling/ScrollingCoordinator.h 1253 Page* page = m_frame->page(); local [all...] |
/external/chromium_org/ui/app_list/views/ |
apps_grid_view.h | 96 // Ensures the view is visible. Note that if there is a running page 145 // Stops the timer that triggers a page flip during a drag. 224 Index() : page(-1), slot(-1) {} 225 Index(int page, int slot) : page(page), slot(slot) {} 228 return page == other.page && slot == other.slot; 231 return page != other.page || slot != other.slot 234 int page; \/\/ Which page an item view is on. member in struct:app_list::AppsGridView::Index [all...] |
/packages/apps/Exchange/src/com/android/exchange/adapter/ |
Parser.java | 92 public Tag(final int page, final int id) { 93 mPage = page; 128 // The current page. As of EAS 14.1, this is a value 0-24. 129 private int page; field in class:Parser 132 // higher order bits the page number. The format matches that used for 324 * looking for it, generate an EodException. The tag returned consists of the page number 334 // If we're a start, set tag to include the page and return it 374 * same in EAS, and then sets the tag table to point to page 0 (by definition, the starting 375 * page). 435 page = id >>> Tags.PAGE_SHIFT [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ |
initial_speech.js | 20 // script is injected after page load (i.e. when manually enabling ChromeVox). 26 * Initial speech when the page loads. This may happen only after we get 30 // Don't speak page title and other information if this script is not injected 31 // at the time of page load. This global is set by Chrome OS. 38 // If we're the top-level frame, speak the title of the page + 43 // Allow the web author to disable reading the page title on load
|
pdf_processor.js | 51 // Set up a handler to reload the page when 'Show original' is clicked. 69 var page = cvox.ChromeVoxJSON.parse(json); 73 // Page Achor Setup 74 pageAnchor.name = 'page' + i; 76 // Page Styles 82 pageDiv.style.height = page.height + 'pt'; 83 pageDiv.style.width = page.width + 'pt'; 87 var texts = page['textBox'];
|
/external/chromium_org/chrome/tools/ |
webforms_aggregator.py | 69 """Download, parse, and check if the web page contains a registration form. 72 each page that is downloaded and parsed an object of this class is created. 83 url: url to download page from. 127 # Checks that the registration page is within the domain. 144 """Parses downloaded page and gets url link for non registration page. 146 Checks if current page contains a registration page and if not it gets 147 the url links. If it is a registration page, it saves it in a file as 152 True if current page contains a registration form, and False otherwise [all...] |
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
PageDebuggerAgent.cpp | 43 #include "core/page/Page.h" 79 scriptDebugServer().addListener(this, m_pageAgent->page()); 84 scriptDebugServer().removeListener(this, m_pageAgent->page()); 160 Frame* mainFrame = frame->page()->deprecatedLocalMainFrame();
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebViewImpl.cpp | 65 #include "core/page/Chrome.h" 66 #include "core/page/ContextMenuController.h" 67 #include "core/page/DragController.h" 68 #include "core/page/DragData.h" 69 #include "core/page/DragSession.h" 70 #include "core/page/EventHandler.h" 71 #include "core/page/FocusController.h" 72 #include "core/page/FrameTree.h" 73 #include "core/page/InjectedStyleSheets.h" 74 #include "core/page/Page.h [all...] |
/external/chromium_org/third_party/mach_override/ |
mach_override.c | 162 uintptr_t page = (uintptr_t)address & ~(uintptr_t)(PAGE_SIZE - 1); local 164 e |= mprotect((void *)page, PAGE_SIZE, PROT_EXEC | PROT_READ); 165 e |= msync((void *)page, PAGE_SIZE, MS_INVALIDATE ); 393 vm_address_t page = 0; local 395 err = vm_allocate( mach_task_self(), &page, PAGE_SIZE, VM_FLAGS_ANYWHERE ); 397 *island = (BranchIsland*) page; 409 page = first; 413 while( !err && !allocated && page != last ) { 415 err = vm_allocate( task_self, &page, PAGE_SIZE, 0 ); 420 page -= PAGE_SIZE [all...] |
/external/chromium_org/tools/perf/benchmarks/ |
dom_perf.py | 11 from telemetry.page import page_measurement 12 from telemetry.page import page_set 45 def MeasurePage(self, page, tab, results):
|
/external/chromium_org/tools/perf/measurements/ |
rasterize_and_record_micro.py | 9 from telemetry.page import page_measurement 10 from telemetry.page import page_test 58 def MeasurePage(self, page, tab, results):
|
/external/chromium_org/tools/telemetry/telemetry/results/ |
buildbot_page_measurement_results.py | 31 If any failed pages exist, only output individual page results, and do 36 [page.display_name for page in self.pages_that_succeeded]) 40 if value.page: 47 # We dont print per-page-values when there is a trace tag. 62 # If there were any page errors, we typically will print nothing. 81 # associated with a page).
|
/external/chromium_org/tools/telemetry/telemetry/value/ |
scalar_unittest.py | 8 from telemetry.page import page_set 44 self.assertEquals(page0, vM.page) 57 self.assertEquals(None, vM.page)
|
string_unittest.py | 8 from telemetry.page import page_set 44 self.assertEquals(page0, vM.page) 57 self.assertEquals(None, vM.page)
|
/external/emma/core/java12/com/vladium/emma/report/html/ |
ReportGenerator.java | 167 final HTMLDocument page = createPage (title); local 171 addPageHeader (page, item, path); 172 addPageFooter (page, item, path); 177 page.addH (1, "OVERALL COVERAGE SUMMARY", null); 207 page.add (summaryTable); 211 page.addH (2, "OVERALL STATS SUMMARY", null); 270 page.add (statsTable); 274 // render package summary tables on the same page: 276 page.addH (2, "COVERAGE BREAKDOWN BY PACKAGE", null); 305 page.add (childSummaryTable) 335 final HTMLDocument page = createPage (REPORT_HEADER_TITLE); local 452 final HTMLDocument page = createPage (REPORT_HEADER_TITLE); local 628 final HTMLDocument page = createPage (REPORT_HEADER_TITLE); local 766 final HTMLDocument page = new HTMLDocument (title, m_settings.getOutEncoding ()); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/ |
ExtractStringAction.java | 62 * actual resource file. By looking at the Active Window > Active Page > Active Editor we 145 IWorkbenchPage page = wwin.getActivePage(); local 146 if (page != null) { 147 return page.getActiveEditor();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/ |
GradleExportWizard.java | 80 public boolean generateBuildfiles(final WizardPage page) { 91 page.getShell(), 105 if (page.getErrorMessage() != null) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/ |
AndroidXmlCharacterMatcherTest.java | 107 IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage(); local 108 assertNotNull(page); 109 IEditorPart editor = IDE.openEditor(page, file);
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
FrameView.cpp | 50 #include "core/page/Chrome.h" 51 #include "core/page/ChromeClient.h" 52 #include "core/page/EventHandler.h" 53 #include "core/page/FocusController.h" 54 #include "core/page/FrameTree.h" 55 #include "core/page/scrolling/ScrollingCoordinator.h" 271 if (m_frame->page()) { 272 if (ScrollingCoordinator* scrollingCoordinator = m_frame->page()->scrollingCoordinator()) 380 page()->frameHost().pinchViewport().mainFrameDidChangeSize(); 392 Page* FrameView::page() cons function in class:WebCore::FrameView 464 Page* page = frame().page(); local 1324 Page* page = frame().page(); local 1713 Page* page = frame().page(); local 2308 Page* page = frame().page(); local 2352 Page* page = frame().page(); local 2463 Page* page = m_frame->page(); local 3219 Page* page = frame().page(); local [all...] |