Searched defs:first_page (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/sdch/open-vcdiff/src/
H A Dvcdecoder3_test.cc489 char* const first_page = reinterpret_cast<char*>(two_pages); local
490 char* const second_page = first_page + page_size;
522 char* const first_page = reinterpret_cast<char*>(two_pages); local
523 char* const second_page = first_page + page_size;
526 mprotect(first_page, page_size, PROT_NONE);
542 mprotect(first_page, page_size, PROT_READ|PROT_WRITE);
H A Dvcencoder_test.cc627 char* const first_page = reinterpret_cast<char*>(two_pages); local
628 char* const second_page = first_page + page_size;
659 char* const first_page = reinterpret_cast<char*>(two_pages); local
660 char* const second_page = first_page + page_size;
663 mprotect(first_page, page_size, PROT_NONE);
676 mprotect(first_page, page_size, PROT_READ|PROT_WRITE);
/external/chromium_org/printing/
H A Dprinted_document.h146 int first_page; member in struct:printing::PrintedDocument::Mutable
/external/chromium_org/v8/test/cctest/
H A Dtest-weakmaps.cc196 Page* first_page = heap->old_pointer_space()->anchor()->next_page(); local
205 CHECK(!first_page->Contains(object->address()));
234 Page* first_page = heap->old_pointer_space()->anchor()->next_page(); local
242 CHECK(!first_page->Contains(keys[i]->address()));
H A Dtest-weaksets.cc196 Page* first_page = heap->old_pointer_space()->anchor()->next_page(); local
205 CHECK(!first_page->Contains(object->address()));
234 Page* first_page = heap->old_pointer_space()->anchor()->next_page(); local
242 CHECK(!first_page->Contains(keys[i]->address()));
H A Dtest-constantpool.cc284 Page* first_page = heap->old_data_space()->anchor()->next_page(); local
293 CHECK(!first_page->Contains(heap_ptr->address()));
H A Dtest-spaces.cc307 Page* first_page = memory_allocator->AllocatePage( local
310 first_page->InsertAfter(faked_space.anchor()->prev_page());
311 CHECK(first_page->is_valid());
312 CHECK(first_page->next_page() == faked_space.anchor());
315 for (Page* p = first_page; p != faked_space.anchor(); p = p->next_page()) {
324 other->InsertAfter(first_page);
326 for (Page* p = first_page; p != faked_space.anchor(); p = p->next_page()) {
332 Page* second_page = first_page->next_page();
334 memory_allocator->Free(first_page);
/external/chromium_org/components/dom_distiller/core/
H A Ddistiller.cc283 bool first_page = true; local
292 if (first_page) {
294 first_page = false;
H A Ddistiller_unittest.cc340 const DistilledPageProto& first_page = article_proto_->pages(0); local
341 EXPECT_EQ(kContent, first_page.html());
342 EXPECT_EQ(kURL, first_page.url());
355 const DistilledPageProto& first_page = article_proto_->pages(0); local
356 EXPECT_EQ(kDebugLog, first_page.debug_info().log());
372 const DistilledPageProto& first_page = article_proto_->pages(0); local
373 EXPECT_EQ(kContent, first_page.html());
374 EXPECT_EQ(kURL, first_page.url());
375 ASSERT_EQ(2, first_page.image_size());
376 EXPECT_EQ(kImageData[0], first_page
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dpagemap.h221 size_t first_page = ContainingPage(x); local
227 if (IsCommitted(first_page)) {
228 if (first_page == last_page) return true;
229 ++first_page;
230 if (IsCommitted(first_page)) {
231 if (first_page == last_page) return true;
232 ++first_page;
237 if (first_page == last_page) return true;
240 if (first_page == last_page) return true;
246 ASSERT(!IsCommitted(first_page));
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dchrome_app_sorting_unittest.cc719 syncer::StringOrdinal first_page = variable
721 app_sorting->SetPageOrdinal(app1_->id(), first_page);
722 EXPECT_EQ(0, app_sorting->PageStringOrdinalAsInteger(first_page));
724 last_page_ = first_page.CreateAfter();
729 app_sorting->SetPageOrdinal(app2_->id(), first_page);
730 EXPECT_EQ(0, app_sorting->PageStringOrdinalAsInteger(first_page));
758 syncer::StringOrdinal first_page = variable
760 app_sorting->SetPageOrdinal(app1_->id(), first_page);
761 EXPECT_EQ(0, app_sorting->PageStringOrdinalAsInteger(first_page));
/external/chromium_org/v8/src/heap/
H A Dspaces.h2146 NewSpacePage* first_page() { return anchor_.next_page(); } function in class:v8::internal::SemiSpace
2764 LargePage* first_page() { return first_page_; } function in class:v8::internal::LargeObjectSpace

Completed in 237 milliseconds