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

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptProfiler.h 47 class Page;
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResolverState.cpp 28 #include "core/page/Page.h"
65 if (Page* page = document->page())
66 m_elementStyleResources.setDeviceScaleFactor(page->deviceScaleFactor());
  /external/chromium_org/third_party/WebKit/Source/core/html/
ValidationMessage.cpp 35 #include "core/page/Page.h"
36 #include "core/page/ValidationMessageClient.h"
60 Page* page = m_element->document()->page(); local
61 if (!page)
64 ASSERT(page->validationMessageClient());
65 return page->validationMessageClient();
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
PageDebuggerAgent.h 42 class Page;
ContentSearchUtils.cpp 83 static PassRefPtr<TypeBuilder::Page::SearchMatch> buildObjectForSearchMatch(int lineNumber, const String& lineContent)
85 return TypeBuilder::Page::SearchMatch::create()
116 PassRefPtr<TypeBuilder::Array<TypeBuilder::Page::SearchMatch> > searchInTextByLines(const String& text, const String& query, const bool caseSensitive, const bool isRegex)
118 RefPtr<TypeBuilder::Array<TypeBuilder::Page::SearchMatch> > result = TypeBuilder::Array<TypeBuilder::Page::SearchMatch>::create();
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageLifecycleNotifier.h 29 #include "core/page/PageLifecycleObserver.h"
36 class Page;
ContextMenuController.cpp 28 #include "core/page/ContextMenuController.h"
34 #include "core/page/ContextMenuClient.h"
35 #include "core/page/ContextMenuProvider.h"
36 #include "core/page/EventHandler.h"
37 #include "core/page/Frame.h"
44 ContextMenuController::ContextMenuController(Page* page, ContextMenuClient* client)
45 : m_page(page)
48 ASSERT_ARG(page, page);
    [all...]
PageConsole.cpp 30 #include "core/page/PageConsole.h"
37 #include "core/page/Chrome.h"
38 #include "core/page/ChromeClient.h"
39 #include "core/page/ConsoleTypes.h"
40 #include "core/page/Page.h"
51 PageConsole::PageConsole(Page* page)
52 : m_page(page)
82 Page* page = this->page()
    [all...]
Page.h 25 #include "core/page/LayoutMilestones.h"
26 #include "core/page/PageVisibilityState.h"
27 #include "core/page/UseCounter.h"
83 class Page : public Supplementable<Page>, public LifecycleContext {
84 WTF_MAKE_NONCOPYABLE(Page);
104 explicit Page(PageClients&);
105 ~Page();
190 // Page and FrameView both store a Pagination value. Page::pagination() is set only by API
    [all...]
DOMWindow.cpp 28 #include "core/page/DOMWindow.h"
67 #include "core/page/BarProp.h"
68 #include "core/page/Chrome.h"
69 #include "core/page/ChromeClient.h"
70 #include "core/page/Console.h"
71 #include "core/page/CreateWindow.h"
72 #include "core/page/DOMPoint.h"
73 #include "core/page/EventHandler.h"
74 #include "core/page/Frame.h"
75 #include "core/page/FrameTree.h
420 Page* DOMWindow::page() function in class:WebCore::DOMWindow
659 Page* page = document->page(); local
695 Page* page = document->page(); local
904 Page* page = m_frame->page(); local
918 Page* page = m_frame->page(); local
932 Page* page = m_frame->page(); local
    [all...]
CreateWindow.cpp 28 #include "core/page/CreateWindow.h"
33 #include "core/page/Chrome.h"
34 #include "core/page/ChromeClient.h"
35 #include "core/page/Frame.h"
36 #include "core/page/Page.h"
37 #include "core/page/Settings.h"
38 #include "core/page/WindowFeatures.h"
53 if (Page* page = frame->page()
85 Page* page = oldPage->chrome().client()->createWindow(openerFrame, requestWithReferrer, features, action); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/v8/
WebCoreTestSupport.cpp 34 #include "core/page/Frame.h"
62 Page* page = toDocument(scriptContext)->frame()->page(); local
63 Internals::resetToConsistentState(page);
64 InternalSettings::from(page)->resetToConsistentState();
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
LocalFileSystem.h 34 #include "core/page/Page.h"
65 class LocalFileSystem : public LocalFileSystemBase, public Supplement<Page> {
LocalFileSystem.cpp 39 #include "core/page/Page.h"
115 return static_cast<LocalFileSystem*>(Supplement<Page>::from(toDocument(context)->page(), supplementName()));
118 void provideLocalFileSystemTo(Page* page, PassOwnPtr<FileSystemClient> client)
120 LocalFileSystem::provideTo(page, LocalFileSystem::supplementName(), LocalFileSystem::create(client));
  /external/chromium_org/third_party/WebKit/Source/modules/navigatorcontentutils/
NavigatorContentUtils.cpp 35 #include "core/page/Frame.h"
36 #include "core/page/Navigator.h"
37 #include "core/page/Page.h"
121 NavigatorContentUtils* NavigatorContentUtils::from(Page* page)
123 return static_cast<NavigatorContentUtils*>(RefCountedSupplement<Page, NavigatorContentUtils>::from(page, NavigatorContentUtils::supplementName()));
152 NavigatorContentUtils::from(navigator->frame()->page())->client()->registerProtocolHandler(scheme, baseURL, url, navigator->frame()->displayStringModifiedByEncoding(title));
191 return customHandlersStateString(NavigatorContentUtils::from(navigator->frame()->page())->client()->isProtocolHandlerRegistered(scheme, baseURL, url))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
StorageNamespaceProxy.cpp 38 #include "core/page/Chrome.h"
39 #include "core/page/Page.h"
54 PassOwnPtr<StorageNamespace> StorageNamespace::sessionStorageNamespace(Page* page)
56 WebKit::WebViewClient* webViewClient = static_cast<WebKit::WebViewImpl*>(page->chrome().client()->webView())->client();
StorageAreaProxy.cpp 36 #include "core/page/DOMWindow.h"
37 #include "core/page/Frame.h"
38 #include "core/page/Page.h"
39 #include "core/page/PageGroup.h"
133 if (!frame || !frame->page())
154 const HashSet<Page*>& pages = PageGroup::sharedGroup()->pages();
155 for (HashSet<Page*>::const_iterator it = pages.begin(); it != pages.end(); ++it) {
165 static Page* findPageWithSessionStorageNamespace(const WebKit::WebStorageNamespace& sessionNamespace)
168 const HashSet<Page*>& pages = PageGroup::sharedGroup()->pages()
182 Page* page = findPageWithSessionStorageNamespace(sessionNamespace); local
    [all...]
  /external/v8/src/mips/
cpu-mips.cc 69 // fails in deserializer for a size of Page::kPageSize (1MB),
72 if (size >= static_cast<size_t>(Page::kPageSize)) {
  /packages/apps/Launcher3/src/com/android/launcher3/
AppsCustomizeCellLayout.java 22 public class AppsCustomizeCellLayout extends CellLayout implements Page {
  /external/chromium_org/v8/src/
mark-compact-inl.h 85 Page* object_page = Page::FromAddress(reinterpret_cast<Address>(object));
store-buffer.h 40 class Page;
183 // For each region of pointers on a page in use from an old space call
190 Page* page,
208 Page* page,
spaces.cc 42 // You can't actually iterate over the anchor page. It is not a real page,
43 // just an anchor for the double linked page list. Initialize as if we have
44 // reached the end of the anchor page, then the first iteration will move on
45 // to the first page.
56 // You can't actually iterate over the anchor page. It is not a real page,
57 // just an anchor for the double linked page list. Initialize the current
59 // to the first page.
68 HeapObjectIterator::HeapObjectIterator(Page* page
431 NewSpacePage* page = static_cast<NewSpacePage*>(chunk); local
1091 Page* page = page_iterator.next(); local
1148 Page* page = page_iterator.next(); local
1453 NewSpacePage* page = NewSpacePage::FromLimit(current)->next_page(); local
1510 NewSpacePage* page = anchor(); local
1628 NewSpacePage* page = anchor_.next_page(); local
1694 NewSpacePage* page = anchor_.next_page(); local
1726 NewSpacePage* page = NewSpacePage::FromLimit(start); local
2181 Page* page = Page::FromAddress(start); local
2212 Page* page = NULL; local
2936 LargePage* page = first_page_; local
2962 LargePage* page = heap()->isolate()->memory_allocator()-> local
3014 LargePage* page = FindPage(a); local
3029 LargePage* page = reinterpret_cast<LargePage*>(e->value); local
3055 LargePage* page = current; local
3115 Page* page = Page::FromAddress(object->address()); local
    [all...]
  /external/v8/src/
mark-compact-inl.h 99 Page* object_page = Page::FromAddress(reinterpret_cast<Address>(object));
spaces.cc 43 // You can't actually iterate over the anchor page. It is not a real page,
44 // just an anchor for the double linked page list. Initialize as if we have
45 // reached the end of the anchor page, then the first iteration will move on
46 // to the first page.
57 // You can't actually iterate over the anchor page. It is not a real page,
58 // just an anchor for the double linked page list. Initialize the current
60 // to the first page.
69 HeapObjectIterator::HeapObjectIterator(Page* page
414 NewSpacePage* page = static_cast<NewSpacePage*>(chunk); local
921 Page* page = it.next(); local
962 Page* page = page_iterator.next(); local
1266 NewSpacePage* page = NewSpacePage::FromLimit(current)->next_page(); local
1323 NewSpacePage* page = anchor(); local
1430 NewSpacePage* page = anchor_.next_page(); local
1495 NewSpacePage* page = anchor_.next_page(); local
1526 NewSpacePage* page = NewSpacePage::FromLimit(start); local
2566 LargePage* page = first_page_; local
2592 LargePage* page = heap()->isolate()->memory_allocator()-> local
2631 LargePage* page = FindPage(a); local
2646 LargePage* page = reinterpret_cast<LargePage*>(e->value); local
2671 LargePage* page = current; local
2731 Page* page = Page::FromAddress(object->address()); local
    [all...]
mark-compact.h 39 // to the first live object in the page (only used for old and map objects).
274 // We assume that zero-page is never mapped this allows us to distinguish
408 // page as input, and is updated to contain the offset to be used for the
409 // next live object in the same page. For spaces using a different
430 void AddEvacuationCandidate(Page* p);
486 // Sweep a single page from the given space conservatively.
488 static intptr_t SweepConservatively(PagedSpace* space, Page* p);
491 return Page::FromAddress(reinterpret_cast<Address>(anchor))->
496 return Page::FromAddress(reinterpret_cast<Address>(host))->
501 return Page::FromAddress(reinterpret_cast<Address>(obj))-
    [all...]

Completed in 806 milliseconds

1 2 3 45 6 7 8 91011>>