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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/chrome/common/extensions/docs/server2/
link_error_detector.py 15 Page = namedtuple('Page', 'status, links, anchors, anchor_refs')
22 '''Render the page at |path| using a |renderer| and process the contents of
23 that page. Returns a |Page| namedtuple with fields for the http status code
24 of the page render, the href of all the links that occurred on the page, all
25 of the anchors on the page (ids and names), and all links that contain an
28 If a non-html page is properly rendered, a |Page| with status code 200 an
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
PointerLockController.cpp 26 #include "core/page/PointerLockController.h"
30 #include "core/page/Chrome.h"
31 #include "core/page/ChromeClient.h"
32 #include "core/page/Page.h"
37 PointerLockController::PointerLockController(Page* page)
38 : m_page(page)
42 PassOwnPtr<PointerLockController> PointerLockController::create(Page* page)
    [all...]
Console.cpp 30 #include "core/page/Console.h"
39 #include "core/page/Chrome.h"
40 #include "core/page/ChromeClient.h"
41 #include "core/page/ConsoleTypes.h"
42 #include "core/page/Frame.h"
43 #include "core/page/MemoryInfo.h"
44 #include "core/page/Page.h"
62 static void internalAddMessage(Page* page, MessageType type, MessageLevel level, ScriptState* state, PassRefPtr<ScriptArguments> prpArgument (…)
155 Page* page = this->page(); local
176 Page* page = this->page(); local
232 Page* Console::page() const function in class:WebCore::Console
    [all...]
Settings.cpp 27 #include "core/page/Settings.h"
33 #include "core/page/Chrome.h"
34 #include "core/page/Frame.h"
35 #include "core/page/FrameTree.h"
36 #include "core/page/FrameView.h"
37 #include "core/page/Page.h"
44 static void setImageLoadingSettings(Page* page)
46 for (Frame* frame = page->mainFrame(); frame; frame = frame->tree()->traverseNext())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/plugins/
PluginData.cpp 67 PluginData::PluginData(const Page* page)
69 initPlugins(page);
114 void PluginData::initPlugins(const Page*)
DOMMimeTypeArray.cpp 23 #include "core/page/Frame.h"
24 #include "core/page/Page.h"
89 Page* p = m_frame->page();
  /external/chromium_org/v8/src/
store-buffer.cc 189 { 97, ((Page::kPageSize / kPointerSize) / 97) / 8 },
190 { 23, ((Page::kPageSize / kPointerSize) / 23) / 16 },
191 { 7, ((Page::kPageSize / kPointerSize) / 7) / 32 },
192 { 3, ((Page::kPageSize / kPointerSize) / 3) / 256 },
362 Page* page = it.next(); local
364 reinterpret_cast<PagedSpace*>(page->owner()),
365 page,
441 Address page = Page::FromAddress(addr)->area_start() local
448 Address page = Page::FromAllocationTop(addr)->area_start(); local
654 Page* page = reinterpret_cast<Page*>(chunk); 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
554 // page as input, and is updated to contain the offset to be used for the
555 // next live object in the same page. For spaces using a different
578 void AddEvacuationCandidate(Page* p);
644 // Sweep a single page from the given space conservatively.
649 Page* p);
652 return Page::FromAddress(reinterpret_cast<Address>(anchor))->
657 return Page::FromAddress(reinterpret_cast<Address>(host))->
662 return Page::FromAddress(reinterpret_cast<Address>(obj))-
    [all...]
  /external/v8/test/cctest/
test-serialize.cc 561 int paged_space_max = Page::kMaxNonCodeHeapObjectSize;
605 int old_page_fullness = i % Page::kPageSize;
606 int page_fullness = (i + kSmallFixedArraySize) % Page::kPageSize;
609 i = RoundUp(i, Page::kPageSize);
625 int old_page_fullness = i % Page::kPageSize;
626 int page_fullness = (i + kSmallStringSize) % Page::kPageSize;
629 i = RoundUp(i, Page::kPageSize);
643 int old_page_fullness = i % Page::kPageSize;
644 int page_fullness = (i + kMapSize) % Page::kPageSize;
647 i = RoundUp(i, Page::kPageSize)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFormControlElementWithState.cpp 30 #include "core/page/Chrome.h"
31 #include "core/page/ChromeClient.h"
32 #include "core/page/Frame.h"
33 #include "core/page/Page.h"
73 if (Page* page = frame->page())
74 page->chrome().client()->formStateDidChange(this);
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
MediaControls.h 33 #include "core/page/Page.h"
40 class Page;
SpinButtonElement.cpp 35 #include "core/page/Chrome.h"
36 #include "core/page/EventHandler.h"
37 #include "core/page/Frame.h"
38 #include "core/page/Page.h"
122 if (Page* page = document()->page())
123 page->chrome().registerPopupOpeningObserver(this);
198 if (Page* page = document()->page()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
HistoryController.h 80 friend class Page;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderHTMLCanvas.cpp 31 #include "core/page/Frame.h"
32 #include "core/page/FrameView.h"
33 #include "core/page/Page.h"
62 if (Page* page = frame->page()) {
64 page->addRelevantRepaintedObject(this, rect);
RenderThemeChromiumAndroid.cpp 50 PassRefPtr<RenderTheme> RenderTheme::themeForPage(Page* page)
  /external/chromium_org/third_party/WebKit/Source/core/testing/
InspectorFrontendClientLocal.cpp 37 #include "core/page/Page.h"
38 #include "core/page/Settings.h"
99 InspectorFrontendClientLocal::InspectorFrontendClientLocal(InspectorController* inspectorController, Page* frontendPage)
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
DOMWindowIndexedDatabase.cpp 30 #include "core/page/DOMWindow.h"
31 #include "core/page/Page.h"
85 Page* page = document->page();
86 if (!page)
93 m_idbFactory = IDBFactory::create(PageGroupIndexedDatabase::from(page->group())->factoryBackend());
  /external/chromium_org/third_party/WebKit/Source/modules/notifications/
DOMWindowNotifications.cpp 33 #include "core/page/DOMWindow.h"
34 #include "core/page/Page.h"
94 Page* page = document->page();
95 if (!page)
98 NotificationClient* provider = NotificationController::clientFrom(page);
  /external/chromium_org/third_party/WebKit/Source/web/
StorageAreaProxy.h 41 class Page;
WebDevToolsAgentImpl.h 83 virtual bool handleInputEvent(WebCore::Page*, const WebInputEvent&);
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
click_element.py 6 from telemetry.page import page as page_module
7 from telemetry.page.actions import page_action
13 def RunAction(self, page, tab, previous_action):
41 page_module.Page.WaitForPageToLoad(self, tab, 60)
tap_element.py 7 from telemetry.page import page as page_module
8 from telemetry.page.actions import page_action
11 """Page action that dispatches a custom 'tap' event at an element.
24 def RunAction(self, page, tab, previous_action):
45 page_module.Page.WaitForPageToLoad(self, tab, 60)
  /external/chromium_org/tools/telemetry/telemetry/page/
page_runner_unittest.py 11 from telemetry.page import page as page_module
12 from telemetry.page import page_measurement
13 from telemetry.page import page_set
14 from telemetry.page import page_test
15 from telemetry.page import page_runner
17 from telemetry.page import test_expectations
51 page1 = page_module.Page('chrome://crash', ps)
67 ps.pages.append(page_module.Page(
71 ps.pages.append(page_module.Page(
    [all...]
  /external/v8/src/
store-buffer.cc 210 { 97, ((Page::kPageSize / kPointerSize) / 97) / 8 },
211 { 23, ((Page::kPageSize / kPointerSize) / 23) / 16 },
212 { 7, ((Page::kPageSize / kPointerSize) / 7) / 32 },
213 { 3, ((Page::kPageSize / kPointerSize) / 3) / 256 },
386 Page* page = it.next(); local
388 reinterpret_cast<PagedSpace*>(page->owner()),
389 page,
456 Address page = Page::FromAddress(addr)->area_start() local
463 Address page = Page::FromAllocationTop(addr)->area_start(); local
646 Page* page = reinterpret_cast<Page*>(chunk); local
    [all...]
  /external/oprofile/events/x86-64/family11h/
unit_masks 75 0x01 DCT0 Page hit
76 0x02 DCT0 Page miss
77 0x04 DCT0 Page conflict
78 0x08 DCT1 Page hit
79 0x10 DCT1 Page miss
80 0x20 DCT1 Page conflict
84 0x01 DCT Page Table Overflow
85 0x02 Number of stale table entry hits (hit on a page closed too soon)
86 0x04 Page table idle cycle limit incremented
87 0x08 Page table idle cycle limit decremente
    [all...]

Completed in 570 milliseconds

1 2 3 4 56 7 8 91011>>