HomeSort by relevance Sort by last modified time
    Searched refs:Page (Results 1 - 25 of 206) sorted by null

1 2 3 4 5 6 7 8 9

  /platform_testing/libraries/app-helpers/handheld/src/android/platform/test/helpers/handheld/
ICalendarHelper.java 23 public enum Page { DAY, MONTH, SCHEDULE, THREE_DAY, WEEK }
40 * Setup expectations: Calendar is open on a page other than {@link Page.MONTH} with all menus
48 * Setup expectations: Calendar is open on a page other than {@link Page.MONTH} and the month
81 * Selects the supplied {@link Page} from the navigation drawer.
83 * @param page the {@link Page} or layout to select.
85 public void selectPage(Page page);
    [all...]
  /prebuilts/go/darwin-x86/doc/articles/wiki/
part1.go 12 type Page struct {
17 func (p *Page) save() error {
22 func loadPage(title string) (*Page, error) {
28 return &Page{Title: title, Body: body}, nil
32 p1 := &Page{Title: "TestPage", Body: []byte("This is a sample Page.")}
part1-noerror.go 12 type Page struct {
17 func (p *Page) save() error {
22 func loadPage(title string) *Page {
25 return &Page{Title: title, Body: body}
29 p1 := &Page{Title: "TestPage", Body: []byte("This is a sample page.")}
part3.go 13 type Page struct {
18 func (p *Page) save() error {
23 func loadPage(title string) (*Page, error) {
29 return &Page{Title: title, Body: body}, nil
32 func renderTemplate(w http.ResponseWriter, tmpl string, p *Page) {
47 p = &Page{Title: title}
part2.go 13 type Page struct {
18 func (p *Page) save() error {
23 func loadPage(title string) (*Page, error) {
29 return &Page{Title: title, Body: body}, nil
final-noerror.go 13 type Page struct {
18 func (p *Page) save() error {
23 func loadPage(title string) (*Page, error) {
29 return &Page{Title: title, Body: body}, nil
36 p = &Page{Title: title}
notemplate.go 13 type Page struct {
18 func (p *Page) save() error {
23 func loadPage(title string) (*Page, error) {
29 return &Page{Title: title, Body: body}, nil
42 p = &Page{Title: title}
final-parsetemplate.go 14 type Page struct {
19 func (p *Page) save() error {
24 func loadPage(title string) (*Page, error) {
30 return &Page{Title: title, Body: body}, nil
45 p = &Page{Title: title}
52 p := &Page{Title: title, Body: []byte(body)}
61 func renderTemplate(w http.ResponseWriter, tmpl string, p *Page) {
final-template.go 13 type Page struct {
18 func (p *Page) save() error {
23 func loadPage(title string) (*Page, error) {
29 return &Page{Title: title, Body: body}, nil
36 p = &Page{Title: title}
50 p := &Page{Title: title, Body: []byte(body)}
55 func renderTemplate(w http.ResponseWriter, tmpl string, p *Page) {
final.go 14 type Page struct {
19 func (p *Page) save() error {
24 func loadPage(title string) (*Page, error) {
30 return &Page{Title: title, Body: body}, nil
45 p = &Page{Title: title}
52 p := &Page{Title: title, Body: []byte(body)}
63 func renderTemplate(w http.ResponseWriter, tmpl string, p *Page) {
part3-errorhandling.go 13 type Page struct {
18 func (p *Page) save() error {
23 func loadPage(title string) (*Page, error) {
29 return &Page{Title: title, Body: body}, nil
32 func renderTemplate(w http.ResponseWriter, tmpl string, p *Page) {
51 p = &Page{Title: title}
59 p := &Page{Title: title, Body: []byte(body)}
  /prebuilts/go/linux-x86/doc/articles/wiki/
part1.go 12 type Page struct {
17 func (p *Page) save() error {
22 func loadPage(title string) (*Page, error) {
28 return &Page{Title: title, Body: body}, nil
32 p1 := &Page{Title: "TestPage", Body: []byte("This is a sample Page.")}
part1-noerror.go 12 type Page struct {
17 func (p *Page) save() error {
22 func loadPage(title string) *Page {
25 return &Page{Title: title, Body: body}
29 p1 := &Page{Title: "TestPage", Body: []byte("This is a sample page.")}
part3.go 13 type Page struct {
18 func (p *Page) save() error {
23 func loadPage(title string) (*Page, error) {
29 return &Page{Title: title, Body: body}, nil
32 func renderTemplate(w http.ResponseWriter, tmpl string, p *Page) {
47 p = &Page{Title: title}
part2.go 13 type Page struct {
18 func (p *Page) save() error {
23 func loadPage(title string) (*Page, error) {
29 return &Page{Title: title, Body: body}, nil
final-noerror.go 13 type Page struct {
18 func (p *Page) save() error {
23 func loadPage(title string) (*Page, error) {
29 return &Page{Title: title, Body: body}, nil
36 p = &Page{Title: title}
notemplate.go 13 type Page struct {
18 func (p *Page) save() error {
23 func loadPage(title string) (*Page, error) {
29 return &Page{Title: title, Body: body}, nil
42 p = &Page{Title: title}
final-parsetemplate.go 14 type Page struct {
19 func (p *Page) save() error {
24 func loadPage(title string) (*Page, error) {
30 return &Page{Title: title, Body: body}, nil
45 p = &Page{Title: title}
52 p := &Page{Title: title, Body: []byte(body)}
61 func renderTemplate(w http.ResponseWriter, tmpl string, p *Page) {
final-template.go 13 type Page struct {
18 func (p *Page) save() error {
23 func loadPage(title string) (*Page, error) {
29 return &Page{Title: title, Body: body}, nil
36 p = &Page{Title: title}
50 p := &Page{Title: title, Body: []byte(body)}
55 func renderTemplate(w http.ResponseWriter, tmpl string, p *Page) {
final.go 14 type Page struct {
19 func (p *Page) save() error {
24 func loadPage(title string) (*Page, error) {
30 return &Page{Title: title, Body: body}, nil
45 p = &Page{Title: title}
52 p := &Page{Title: title, Body: []byte(body)}
63 func renderTemplate(w http.ResponseWriter, tmpl string, p *Page) {
part3-errorhandling.go 13 type Page struct {
18 func (p *Page) save() error {
23 func loadPage(title string) (*Page, error) {
29 return &Page{Title: title, Body: body}, nil
32 func renderTemplate(w http.ResponseWriter, tmpl string, p *Page) {
51 p = &Page{Title: title}
59 p := &Page{Title: title, Body: []byte(body)}
  /frameworks/base/libs/hwui/utils/
LinearAllocator.cpp 34 // The ideal size of a page allocation (these need to be multiples of 8)
38 // The maximum amount of wasted space we can have per page
39 // Allocations exceeding this will have their own dedicated page
87 class LinearAllocator::Page {
89 Page* next() { return mNextPage; }
90 void setNext(Page* next) { mNextPage = next; }
92 Page()
99 return (void*) (((size_t)this) + sizeof(Page));
107 Page(const Page& /*other*/) {
175 Page* page = newPage(size); local
    [all...]
  /external/v8/src/heap/
spaces-inl.h 32 : begin_(Page::FromAddress(start)),
33 end_(Page::FromAllocationAreaAddress(limit)->next_page()) {
46 if (Page::IsAlignedToPageSize(current_)) {
47 Page* page = Page::FromAllocationAreaAddress(current_); local
48 page = page->next_page();
49 DCHECK(!page->is_anchor());
50 current_ = page->area_start()
180 Page* page = static_cast<Page*>(chunk); local
192 Page* page = reinterpret_cast<Page*>(chunk); local
359 Page* FreeListCategory::page() { function in class:v8::internal::FreeListCategory
    [all...]
array-buffer-tracker.h 19 class Page;
32 // access to the tracker by taking the page lock for the corresponding page.
40 // Frees all backing store pointers for dead JSArrayBuffer on a given page.
41 // Requires marking information to be present. Requires the page lock to be
43 static void FreeDead(Page* page);
45 // Frees all remaining, live or dead, array buffers on a page. Only useful
47 static void FreeAll(Page* page);
    [all...]
array-buffer-tracker.cc 49 Page* target_page = Page::FromAddress(new_buffer->address());
50 // We need to lock the target page because we cannot guarantee
80 for (Page* page : PageRange(heap->new_space()->FromSpaceStart(),
82 bool empty = ProcessBuffers(page, kUpdateForwardedRemoveOthers);
88 void ArrayBufferTracker::FreeDead(Page* page) {
89 // Callers need to ensure having the page lock.
90 LocalArrayBufferTracker* tracker = page->local_tracker()
128 Page* page = Page::FromAddress(buffer->address()); local
    [all...]

Completed in 152 milliseconds

1 2 3 4 5 6 7 8 9