Searched defs:page (Results 26 - 50 of 319) sorted by relevance

1234567891011>>

/external/flac/libFLAC/include/private/
H A Dogg_encoder_aspect.h47 ogg_page page; member in struct:FLAC__OggEncoderAspect
/external/bluetooth/bluedroid/stack/avrc/
H A Davrc_opt.c135 ** page: Specifies which part of the subunit type table
146 UINT16 AVRC_SubCmd(UINT8 handle, UINT8 label, UINT8 page) argument
159 *p_data++ = ((page&AVRC_SUB_PAGE_MASK) << AVRC_SUB_PAGE_SHIFT) | AVRC_SUB_EXT_CODE;
/external/chromium_org/chrome/browser/profiles/
H A Davatar_menu_actions_desktop.cc57 std::string page = chrome::kManageProfileSubPage; local
58 page += "#";
59 page += base::IntToString(static_cast<int>(index));
60 chrome::ShowSettingsSubPage(settings_browser, page);
/external/chromium_org/chrome/browser/renderer_context_menu/
H A Drender_view_context_menu_browsertest.cc100 // Go to a page with a link
138 // Go to a |page| with a link to echoheader URL.
139 GURL page("data:text/html,<a href='" + echoheader.spec() + "'>link</a>");
140 ui_test_utils::NavigateToURL(browser(), page); local
164 // Verify that the text on the page matches |kCorrectReferrer|.
172 // Verify that the referrer on the page matches |kCorrectReferrer|.
189 // Go to a |page| with a link to echoheader URL.
190 GURL page("data:text/html,<a href='" + echoheader.spec() + "'>link</a>");
191 ui_test_utils::NavigateToURL(browser(), page); local
216 // Verify that the text on the page matche
[all...]
/external/chromium_org/chrome/browser/ui/ash/
H A Dchrome_new_window_delegate_chromeos.cc56 content::WebContents* page = browser->OpenURL( local
64 page->Focus();
/external/chromium_org/chrome/browser/ui/search/
H A Dinstant_page_unittest.cc58 scoped_ptr<InstantPage> page; member in class:InstantPageTest
68 page.reset(new InstantPage(&delegate, "", NULL, false));
69 EXPECT_FALSE(page->supports_instant());
70 EXPECT_FALSE(page->IsLocal());
71 page->SetContents(web_contents());
73 EXPECT_TRUE(page->IsLocal());
75 EXPECT_FALSE(page->IsLocal());
79 page.reset(new InstantPage(&delegate, "", NULL, false));
80 EXPECT_FALSE(page->supports_instant());
81 page
[all...]
/external/chromium_org/content/common/
H A Dset_process_title_linux.cc17 // then the environment variables. The kernel will allocate a single page of
18 // memory for this purpose, so the end of the page containing argv[0] is the
22 // the range of memory within this page that it initially used for the argument
25 // size of a page looking for another. (Note, however, that in general not that
26 // much space is actually mapped, since argv[0] is rarely page-aligned and only
27 // one page is mapped.)
56 uintptr_t page_size, page, page_end; local
68 // Get the page on which the argument list and environment live.
69 page = (uintptr_t) g_main_argv[0];
70 page
[all...]
/external/chromium_org/content/test/gpu/gpu_tests/
H A Dwebgl_robustness.py5 from telemetry.page import page namespace
6 from telemetry.page import page_set
7 from telemetry.page import page_test
49 class WebglRobustnessPage(page.Page):
/external/chromium_org/printing/
H A Dpage_number.h16 // Represents a page series following the array of page ranges defined in a
20 // Initializes the page to the first page in the settings's range or 0.
27 // Initializes the page to the first page in the setting's range or 0. It
31 // Converts to a page numbers.
36 // Calculates the next page in the serie.
44 // Equality operator. Only the current page number is verified so that
45 // "page !
66 operator <<( typename std::basic_ostream<E,T>& ss, const PageNumber& page) argument
[all...]
H A Dprinted_document_win.cc37 const PrintedPage& page, gfx::NativeDrawingContext context) const {
40 // Make sure the page is from our list.
42 DCHECK(&page == mutable_.pages_.find(page.page_number() - 1)->second.get());
50 page.GetCenteredPageContentRect(page_setup.physical_size(), &content_area);
64 // Note that the printing output is relative to printable area of the page.
65 // That is 0,0 is offset by PHYSICALOFFSETX/Y from the page.
70 page.shrink_factor());
73 if (!page.metafile()->SafePlayback(context)) {
36 RenderPrintedPage( const PrintedPage& page, gfx::NativeDrawingContext context) const argument
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DContextFeatures.cpp31 #include "core/page/Page.h"
72 void provideContextFeaturesTo(Page& page, PassOwnPtr<ContextFeaturesClient> client) argument
74 ContextFeatures::SupplementType::provideTo(page, ContextFeatures::supplementName(), ContextFeatures::create(client));
77 void provideContextFeaturesToDocumentFrom(Document& document, Page& page) argument
79 ContextFeatures* provided = static_cast<ContextFeatures*>(ContextFeatures::SupplementType::from(page, ContextFeatures::supplementName()));
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DFrameHost.cpp35 #include "core/page/Chrome.h"
36 #include "core/page/ChromeClient.h"
37 #include "core/page/Page.h"
41 PassOwnPtrWillBeRawPtr<FrameHost> FrameHost::create(Page& page) argument
43 return adoptPtrWillBeNoop(new FrameHost(page));
46 FrameHost::FrameHost(Page& page) argument
47 : m_page(&page)
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLFormControlElementTest.cpp21 DummyPageHolder& page() const { return *m_dummyPageHolder; } function in class:blink::HTMLFormControlElementTest
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorInstrumentationCustomInl.h56 inline bool collectingHTMLParseErrors(Page* page) argument
59 if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsFor(page))
H A DInspectorLayerTreeAgent.h54 static PassOwnPtrWillBeRawPtr<InspectorLayerTreeAgent> create(Page* page) argument
56 return adoptPtrWillBeNoop(new InspectorLayerTreeAgent(page));
H A DPageConsoleAgent.h46 static PassOwnPtrWillBeRawPtr<PageConsoleAgent> create(InjectedScriptManager* injectedScriptManager, InspectorDOMAgent* domAgent, InspectorTimelineAgent* timelineAgent, Page* page) argument
48 return adoptPtrWillBeNoop(new PageConsoleAgent(injectedScriptManager, domAgent, timelineAgent, page));
H A DPageRuntimeAgent.h47 static PassOwnPtrWillBeRawPtr<PageRuntimeAgent> create(InjectedScriptManager* injectedScriptManager, InspectorClient* client, ScriptDebugServer* scriptDebugServer, Page* page, InspectorPageAgent* pageAgent) argument
49 return adoptPtrWillBeNoop(new PageRuntimeAgent(injectedScriptManager, client, scriptDebugServer, page, pageAgent));
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPageAnimator.cpp6 #include "core/page/PageAnimator.h"
11 #include "core/page/Chrome.h"
12 #include "core/page/ChromeClient.h"
13 #include "core/page/Page.h"
19 PageAnimator::PageAnimator(Page& page) argument
20 : m_page(page)
27 PassRefPtrWillBeRawPtr<PageAnimator> PageAnimator::create(Page& page) argument
29 return adoptRefWillBeNoop(new PageAnimator(page));
91 // setFrameRect may have the side-effect of causing existing page layout to
H A DScopedPageLoadDeferrer.cpp22 #include "core/page/ScopedPageLoadDeferrer.h"
27 #include "core/page/Page.h"
38 Page* page = *it; local
39 if (page == exclusion || page->defersLoading())
42 if (page->mainFrame()->isLocalFrame()) {
43 m_deferredFrames.append(page->deprecatedLocalMainFrame());
47 page->deprecatedLocalMainFrame()->loader().notifyIfInitialDocumentAccessed();
52 for (Frame* frame = page->mainFrame(); frame; frame = frame->tree().traverseNext()) {
60 if (Page* page
[all...]
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DDummyPageHolder.cpp92 Page& DummyPageHolder::page() const function in class:blink::DummyPageHolder
/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechRecognitionController.h29 #include "core/page/Page.h"
50 static SpeechRecognitionController* from(Page* page) { return static_cast<SpeechRecognitionController*>(WillBeHeapSupplement<Page>::from(page, supplementName())); } argument
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DDatabaseClient.cpp36 #include "core/page/Page.h"
48 return static_cast<DatabaseClient*>(WillBeHeapSupplement<Page>::from(toDocument(context)->page(), supplementName()));
62 void DatabaseClient::createInspectorAgentFor(Page* page) argument
67 page->inspectorController().registerModuleAgent(inspectorAgent.release());
70 void provideDatabaseClientTo(Page& page, PassOwnPtrWillBeRawPtr<DatabaseClient> client) argument
73 page.provideSupplement(DatabaseClient::supplementName(), client);
74 clientPtr->createInspectorAgentFor(&page);
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DGlyphMetricsMap.h61 static const size_t size = 256; // Usually covers Latin-1 in a single page.
90 GlyphMetricsPage m_primaryPage; // We optimize for the page that contains glyph indices 0-255.
106 GlyphMetricsPage* page;
109 page = &m_primaryPage;
113 page = m_pages->get(pageNumber);
114 if (page)
115 return page;
118 page = new GlyphMetricsPage; member in class:blink::GlyphMetricsMap::GlyphMetricsPage
119 m_pages->set(pageNumber, adoptPtr(page));
122 // Fill in the whole page wit
[all...]
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DMHTMLTest.cpp36 #include "core/page/Page.h"
83 Page* page() const { return m_helper.webViewImpl()->page(); } function in class:__anon11393::MHTMLTest
99 ASSERT_TRUE(page());
100 LocalFrame* frame = toLocalFrame(page()->mainFrame());
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Duser_mock.py53 def page(self, message): member in class:MockUser

Completed in 6162 milliseconds

1234567891011>>