HomeSort by relevance Sort by last modified time
    Searched refs:Page (Results 151 - 175 of 377) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInstrumentation.cpp 196 InstrumentingAgents* instrumentingAgentsForPage(Page* page)
198 if (!page)
200 return instrumentationForPage(page);
247 InstrumentingAgents* instrumentationForPage(Page* page)
250 if (InspectorController* controller = page->inspectorController())
InspectorResourceAgent.h 62 class Page;
87 static PassRefPtr<InspectorResourceAgent> restore(Page*, InspectorCompositeState*, InspectorFrontend*);
  /external/chromium_org/third_party/WebKit/Source/core/loader/cache/
ImageResourceTest.cpp 41 #include "core/page/Frame.h"
42 #include "core/page/FrameView.h"
43 #include "core/page/Page.h"
125 Page::PageClients pageClients;
128 Page page(pageClients);
129 RefPtr<Frame> frame = Frame::create(&page, 0, &frameLoaderClient);
  /external/chromium_org/third_party/WebKit/Source/core/page/
ChromeClient.h 29 #include "core/page/ConsoleTypes.h"
30 #include "core/page/FocusDirection.h"
70 class Page;
103 // Frame wants to create the new Page. Also, the newly created window
105 // created Page has its show method called.
108 virtual Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&, const NavigationAction&, NavigationPolicy = NavigationPolicyIgnore) = 0;
202 // Allows ports to customize the type of graphics layers created by this page.
SpeechInput.cpp 32 #include "core/page/SpeechInput.h"
36 #include "core/page/SpeechInputClient.h"
37 #include "core/page/SpeechInputListener.h"
79 // Don't assert if not present as the element might have been removed by the page while
87 // Don't assert if not present as the element might have been removed by the page while
95 // Don't assert if not present as the element might have been removed by the page while
124 void provideSpeechInputTo(Page* page, SpeechInputClient* client)
126 SpeechInput::provideTo(page, SpeechInput::supplementName(), SpeechInput::create(client));
FrameTree.cpp 22 #include "core/page/FrameTree.h"
25 #include "core/page/Frame.h"
26 #include "core/page/FrameView.h"
27 #include "core/page/Page.h"
28 #include "core/page/PageGroup.h"
74 ASSERT(child->page() == m_thisFrame->page());
86 ASSERT(child->page() == m_thisFrame->page());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
Geolocation.h 46 class Page;
76 Page* page() const;
  /external/chromium_org/third_party/WebKit/Source/web/
WebHelperPluginImpl.cpp 46 #include "core/page/FocusController.h"
47 #include "core/page/FrameView.h"
48 #include "core/page/Page.h"
49 #include "core/page/Settings.h"
94 // invisible page is via closeHelperPlugin().
137 // We must destroy the page now in case the host page is being destroyed, in
138 // which case some of the objects the page depends on may have been
156 // Returns a pointer to the WebPlugin by finding the single <object> tag in the page
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/page/
page_unittest.py 7 from telemetry.page import page namespace
8 from telemetry.page import page_set
13 self.assertEqual('a/b', page._UrlPathJoin('a', 'b'))
14 self.assertEqual('a/b', page._UrlPathJoin('a/', 'b'))
15 self.assertEqual('a/b', page._UrlPathJoin('a', '/b'))
16 self.assertEqual('a/b', page._UrlPathJoin('a/', '/b'))
17 self.assertEqual('a/b/c', page._UrlPathJoin('a', 'b', 'c'))
18 self.assertEqual('a/b/c', page._UrlPathJoin('a', 'b/', 'c'))
19 self.assertEqual('a/b/c', page._UrlPathJoin('a', 'b', '/c')
    [all...]
page_measurement_unittest_base.py 7 from telemetry.page import page_runner
8 from telemetry.page import page as page_module
9 from telemetry.page import page_set
10 from telemetry.page import test_expectations
24 page = page_module.Page(test_filename, ps, base_dir=base_dir)
25 setattr(page, 'smoothness', {'action': 'scroll'})
26 ps.pages.append(page)
page_measurement_unittest.py 8 from telemetry.page import page_measurement
9 from telemetry.page import page_measurement_unittest_base
10 from telemetry.page import page as page_module
11 from telemetry.page import page_set
12 from telemetry.page import page_set_archive_info
13 from telemetry.page.actions import all_page_actions
14 from telemetry.page.actions import page_action
18 def MeasurePage(self, page, tab, results):
25 def MeasurePage(self, page, tab, results)
    [all...]
  /external/v8/src/
store-buffer.h 169 // For each region of pointers on a page in use from an old space call
176 Page* page,
192 Page* page,
mark-compact.cc 111 // The bottom position is at the start of its page. Allows us to use
112 // page->area_start() as start of range on all pages.
116 NewSpacePage* page = it.next(); local
117 Address limit = it.has_next() ? page->area_end() : end;
118 ASSERT(limit == end || !page->Contains(end));
119 VerifyMarking(page->area_start(), limit);
128 Page* p = it.next();
191 NewSpacePage* page = it.next(); local
192 Address current = page->area_start();
193 Address limit = it.has_next() ? page->area_end() : space->top()
520 Page* page() { return page_; } function in class:v8::internal::Candidate
2981 Page* page = evacuation_candidates_[j]; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
XmlEditorMultiOutline.java 34 import org.eclipse.ui.part.Page;
49 public class XmlEditorMultiOutline extends Page implements IContentOutlinePage,
133 public void setPageActive(IContentOutlinePage page) {
134 if (page == null) {
138 page = mEmptyPage;
143 page.addSelectionChangedListener(this);
144 mCurrentPage = page;
149 Control control = page.getControl();
151 if (page instanceof IPageBookViewPage) {
153 ((IPageBookViewPage) page).init(getSite())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleRule.cpp 64 case Page:
108 case Page:
148 case Page:
223 : StyleRuleBase(Page)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
ColumnInfo.h 69 // Set our count and height. This is enough info for a RenderBlock to compute page rects
101 enum PaginationUnit { Column, Page };
  /external/chromium_org/tools/perf/metrics/
smoothness_unittest.py 8 from telemetry.page import page namespace
9 from telemetry.page.page_measurement_results import PageMeasurementResults
44 res.WillMeasurePage(page.Page('http://foo.com/', None))
  /external/chromium_org/tools/telemetry/telemetry/core/
browser_options.py 123 help=('Additional arguments to pass to Web Page Replay. '
130 # Page set options
131 group = optparse.OptionGroup(parser, 'Page set options')
139 'what is specified by --page-repeat and --pageset-repeat.')
142 group = optparse.OptionGroup(parser, 'Web Page Replay options')
145 help='Run against live sites if the Web Page Replay archives don\'t '
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewGridLayout.java 28 public class PagedViewGridLayout extends GridLayout implements Page {
61 // offset of each page to scroll to before it updates the actual size of each page
63 // We work around this by having a minimum size on each widget page).
  /packages/apps/Launcher3/src/com/android/launcher3/
PagedViewGridLayout.java 28 public class PagedViewGridLayout extends GridLayout implements Page {
61 // offset of each page to scroll to before it updates the actual size of each page
63 // We work around this by having a minimum size on each widget page).
  /external/chromium_org/chrome/tools/
webforms_aggregator_unittests.py 70 <a href="%s">return to home page</a>
93 <p><a href="%s">return to home page</a></p>
119 <p><a href="%s">return to home page</a></p>
136 'Site One home page', 'Welcome to site one. It has a reg page!',
141 'Site One page 1',
142 'Page 1!', 'This is a useless page. It does almost nothing.',
143 self.files['site1_page2'], 'page 2', self.files['site1_page3'],
144 'page 3', self.files['site1_home']
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXObjectCache.h 41 class Page;
81 static AccessibilityObject* focusedUIElementForPage(const Page*);
232 inline AccessibilityObject* AXObjectCache::focusedUIElementForPage(const Page*) { return 0; }
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
MediaControls.cpp 82 Page* page = document()->page(); local
83 if (!page)
91 if (std::isfinite(duration) || page->theme()->hasOwnDisabledStateHandlingFor(MediaSliderPart)) {
96 if (m_mediaController->hasAudio() || page->theme()->hasOwnDisabledStateHandlingFor(MediaMuteButtonPart))
124 Page* page = document()->page(); local
125 if (!page)
    [all...]
  /external/chromium_org/v8/src/
mark-compact.cc 124 // The bottom position is at the start of its page. Allows us to use
125 // page->area_start() as start of range on all pages.
129 NewSpacePage* page = it.next(); local
130 Address limit = it.has_next() ? page->area_end() : end;
131 CHECK(limit == end || !page->Contains(end));
132 VerifyMarking(page->area_start(), limit);
141 Page* p = it.next();
205 NewSpacePage* page = it.next(); local
206 Address current = page->area_start();
207 Address limit = it.has_next() ? page->area_end() : space->top()
753 Page* page() { return page_; } function in class:v8::internal::Candidate
2083 NewSpacePage* page = it.next(); local
3040 Page* page = evacuation_candidates_[j]; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
HistoryController.cpp 41 #include "core/page/Frame.h"
42 #include "core/page/FrameTree.h"
43 #include "core/page/FrameView.h"
44 #include "core/page/Page.h"
45 #include "core/page/scrolling/ScrollingCoordinator.h"
68 Page* page = m_frame->page(); local
69 if (page && page->mainFrame() == m_frame
109 Page* page = m_frame->page(); local
217 Page* page = m_frame->page(); local
337 Page* page = m_frame->page(); local
651 Page* page = m_frame->page(); local
    [all...]

Completed in 432 milliseconds

1 2 3 4 5 67 8 91011>>