/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
DOMWindowIndexedDatabase.cpp | 31 #include "core/page/Page.h" 90 Page* page = document->page(); 91 if (!page)
|
/external/chromium_org/tools/perf/benchmarks/ |
spaceport.py | 12 from telemetry.page import page_measurement 13 from telemetry.page import page_set 23 def MeasurePage(self, page, tab, results):
|
/external/chromium_org/tools/perf/measurements/ |
memory_pressure.py | 8 the entire test rather than each single page. 14 from telemetry.page import page_measurement 28 # Open a new tab at each page 29 def TabForPage(self, page, browser): 40 def MeasurePage(self, page, tab, results): 41 # After navigating to each page, check if it triggered tab discards or 45 # Sanity check for first page
|
skpicture_printer.py | 7 from telemetry.page import page_measurement 31 def MeasurePage(self, page, tab, results): 38 os.path.join(self._skp_outdir, page.file_safe_name))
|
startup.py | 6 from telemetry.page import page_measurement 15 tests, you should repeat the page set to ensure it's cached. 47 def RunNavigateSteps(self, page, tab): 48 # Overriden so that no page navigation occurs - startup to the NTP. 51 def MeasurePage(self, page, tab, results): 61 tests, you should repeat the page set to ensure it's cached. 63 The startup URL is taken from the page set's startup_url. This
|
/external/chromium_org/tools/perf/metrics/ |
v8_object_stats.py | 201 def Start(self, page, tab): 205 def Stop(self, page, tab): 206 """Get the values in the stats table after the page is loaded.""" 209 logging.warning('No V8 object stats from website: ' + page.display_name) 212 """Add results for this page to the results object."""
|
/external/chromium_org/tools/telemetry/telemetry/page/actions/ |
pinch.py | 6 from telemetry.page.actions.gesture_action import GestureAction 7 from telemetry.page.actions import page_action 33 'Pinch page action does not support mouse input')
|
/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...] |
/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 349 PageCache::Page *page = mCache->acquirePage(); local [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/api/eventPage/basic/ |
background.js | 5 // Global variables only exist for the life of the page, so they get reset 6 // each time the page is unloaded. 13 chrome.tabs.sendMessage(lastTabId, "Background page started."); 25 // need to persist across page reloads. 42 // The event page will unload after handling this event (assuming nothing 47 // Note: we also sent a message above, upon loading the event page, 65 // Note: setTimeout itself does NOT keep the page awake. We return true 67 // in turn keeping the event page awake - until we call sendResponse. 86 // After the unload event listener runs, the page will unload, so any 92 chrome.tabs.sendMessage(lastTabId, "Background page unloaded.") [all...] |
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorInspectorAgent.cpp | 45 #include "core/page/Page.h" 55 InspectorInspectorAgent::InspectorInspectorAgent(Page* page, InjectedScriptManager* injectedScriptManager) 57 , m_inspectedPage(page) 61 ASSERT_ARG(page, page); 130 if (frame->page()->mainFrame() != frame)
|
/external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/ |
ScreenOrientationController.cpp | 13 #include "core/page/Page.h" 26 // Unregister lifecycle observation once page is being torn down. 42 : PageLifecycleObserver(frame.page()) 83 if (page() && page()->visibilityState() == PageVisibilityStateVisible) { 94 // The page is no longer visible, store the last know screen orientation 95 // so that we keep returning this orientation until the page becomes 104 // The page is not visible, keep returning the last known screen orientation. 105 ASSERT(!page() || page()->visibilityState() != PageVisibilityStateVisible) [all...] |
/external/chromium_org/tools/telemetry/telemetry/results/ |
csv_page_measurement_results.py | 25 # Do not output if no results were added on this page or if output flag 33 self._OutputValuesForPage(values[0].page, values) 46 values, lambda value: value.page.url) 48 self._OutputValuesForPage(values_for_page[0].page, values_for_page) 59 result names for every page. In this case, the following extra results were 79 def _OutputValuesForPage(self, page, page_values): 80 row = [page.display_name]
|
page_measurement_results.py | 25 pages = set([value.page for value in self._all_page_specific_values]) 49 def WillMeasurePage(self, page): 51 self._current_page = page 67 assert value.page is None 88 def FindPageSpecificValuesForPage(self, page, value_name): 91 if value.page == page and value.name == value_name:
|
/external/chromium_org/tools/telemetry/telemetry/value/ |
histogram.py | 22 def __init__(self, page, name, units, 24 super(HistogramValue, self).__init__(page, name, units, important) 41 if self.page: 42 page_name = self.page.url 86 v0.page, v0.name, v0.units,
|
/external/yaffs2/yaffs2/direct/ |
yaffs_ramem2k.c | 63 nandemul_Page *page[PAGES_PER_BLOCK]; member in struct:__anon37497 104 memset(blk->page[i],0xff,sizeof(nandemul_Page)); 105 blk->page[i]->empty = 1; 159 if((blk->page[j] = YMALLOC(sizeof(nandemul_Page))) == 0) 207 x = ned.block[blk]->page[pg]->data; 214 ned.block[blk]->page[pg]->empty = 0; 220 x = &ned.block[blk]->page[pg]->data[PAGE_DATA_SIZE]; 250 memcpy(data,ned.block[blk]->page[pg]->data,PAGE_DATA_SIZE); 256 x = &ned.block[blk]->page[pg]->data[PAGE_DATA_SIZE]; 279 if(ned.block[blk]->page[pg]->data[i] != 0xFF [all...] |
/external/chromium_org/chrome/browser/resources/gaia_auth/ |
saml_injected.js | 8 * 1. Signal hosting extension that an external page is loaded so that the 22 * The credential passing API is used by sending messages to the SAML page's 23 * |window| object. This class forwards API calls from the SAML page to a 25 * page. Communication with the background script occurs via a |Channel|. 55 // Forward API responses to the SAML page. 69 // URL of the page. 86 * @param {!string} pageURL URL of the page. 116 // Use an invalid char for URL as delimiter to concatenate page url and 137 * Returns true if the script is injected into auth main page. 145 * Heuristic test whether the current page is a relevant SAML page [all...] |
/external/pdfium/fpdfsdk/include/ |
fpdfview.h | 21 typedef void* FPDF_PAGEOBJECT; // Page object(text, path, etc)
82 /** @brief Rectangle area(float) in device or page coordination system. */
230 #define FPDF_ERR_PAGE 6 // Page not found or content error.
264 // Load a page inside a document.
267 // page_index - Index number of the page. 0 for the first page.
269 // A handle to the loaded page. If failed, NULL is returned.
271 // Loaded page can be rendered to devices using FPDF_RenderPage function.
272 // Loaded page can be closed by FPDF_ClosePage.
277 // Get page width. [all...] |
/build/tools/droiddoc/templates-sdk/ |
docpage.cs | 24 if:page.trainingcourse ?> trainingcourse<?cs 36 <?cs if:(design||training||walkthru) && !page.trainingcourse && !page.article ?><?cs # header logic for docs that provide previous/next buttons ?> 42 <?cs else ?><h1 itemprop="name"><?cs var:page.title ?></h1> 47 <a href="#" class="prev-page-link hide" 55 <a href="#" class="next-page-link hide" 72 <?cs elif:!page.trainingcourse ?> 74 <a href="#" class="prev-page-link hide" 82 <a href="#" class="next-page-link hide" 116 <?cs if:page.landing ?><?cs # header logic for docs that are landing pages ? [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/ |
page_selection_test.js | 85 // A normal page selection, with a normal extension. 89 // A normal page selection, with a reversed extension. 92 // A reversed page selection, with a normal cursor selection. 96 // A reversed page selection, with a reversed extension. 105 // A normal page selection, with a normal extension not in document order. 108 // And, this causes a reset of page selection. 114 // A normal page selection, with a reversed extension not in document order. 117 // And, again, it causes reset of page selection. 120 // Reverse page selections. 123 // A reversed page selection, with a normal extension not in document order [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/pdfium/fpdfsdk/src/ |
fpdf_transformpage.cpp | 10 DLLEXPORT void STDCALL FPDFPage_SetMediaBox(FPDF_PAGE page, float left, float bottom, float right, float top)
12 if(!page)
14 CPDF_Page* pPage = (CPDF_Page*)page;
26 DLLEXPORT void STDCALL FPDFPage_SetCropBox(FPDF_PAGE page, float left, float bottom, float right, float top)
28 if(!page)
30 CPDF_Page* pPage = (CPDF_Page*)page;
43 DLLEXPORT FX_BOOL STDCALL FPDFPage_GetMediaBox(FPDF_PAGE page, float* left, float* bottom, float* right, float* top)
45 if(!page)
47 CPDF_Page* pPage = (CPDF_Page*)page;
61 DLLEXPORT FPDF_BOOL STDCALL FPDFPage_GetCropBox(FPDF_PAGE page, float* left, float* bottom, float* right, float* top) [all...] |
/external/qemu/hw/android/goldfish/ |
events_device.c | 58 int page; member in struct:__anon33364 98 QFIELD_INT32(page), 189 int page = s->page; local 190 if (page == PAGE_NAME) { 193 } if (page >= PAGE_EVBITS && page <= PAGE_EVBITS + EV_MAX) 194 return s->ev_bits[page - PAGE_EVBITS].len; 195 if (page == PAGE_ABSDATA) 203 int page = s->page local [all...] |
/external/chromium_org/chrome/browser/resources/help/ |
help.css | 10 #overlay .page:not(.showing) { 58 .help-page-icon, 59 .help-page-icon-large { 66 .help-page-icon { 71 .help-page-icon-large {
|