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

1 2 3 4 5 6 7 8 91011

  /external/subsampling-scale-image-view/sample/src/main/java/com/davemorrissey/labs/subscaleview/test/
Page.java 3 public class Page {
9 public Page(int subtitle, int text) {
  /platform_testing/libraries/app-helpers/interfaces/handheld/src/android/platform/helpers/
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 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
33 func renderTemplate(w http.ResponseWriter, tmpl string, p *Page) {
48 p = &Page{Title: title}
part2.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
final-noerror.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
37 p = &Page{Title: title}
notemplate.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
43 p = &Page{Title: title}
final-parsetemplate.go 15 type Page struct {
20 func (p *Page) save() error {
25 func loadPage(title string) (*Page, error) {
31 return &Page{Title: title, Body: body}, nil
46 p = &Page{Title: title}
53 p := &Page{Title: title, Body: []byte(body)}
62 func renderTemplate(w http.ResponseWriter, tmpl string, p *Page) {
final-template.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
37 p = &Page{Title: title}
51 p := &Page{Title: title, Body: []byte(body)}
56 func renderTemplate(w http.ResponseWriter, tmpl string, p *Page) {
final.go 15 type Page struct {
20 func (p *Page) save() error {
25 func loadPage(title string) (*Page, error) {
31 return &Page{Title: title, Body: body}, nil
46 p = &Page{Title: title}
53 p := &Page{Title: title, Body: []byte(body)}
64 func renderTemplate(w http.ResponseWriter, tmpl string, p *Page) {
part3-errorhandling.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
33 func renderTemplate(w http.ResponseWriter, tmpl string, p *Page) {
52 p = &Page{Title: title}
60 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 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
33 func renderTemplate(w http.ResponseWriter, tmpl string, p *Page) {
48 p = &Page{Title: title}
part2.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
final-noerror.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
37 p = &Page{Title: title}
notemplate.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
43 p = &Page{Title: title}
  /external/subsampling-scale-image-view/sample/src/main/java/com/davemorrissey/labs/subscaleview/test/configuration/
ConfigurationActivity.java 10 import com.davemorrissey.labs.subscaleview.test.Page;
24 new Page(configuration_p1_subtitle, configuration_p1_text),
25 new Page(configuration_p2_subtitle, configuration_p2_text),
26 new Page(configuration_p3_subtitle, configuration_p3_text),
27 new Page(configuration_p4_subtitle, configuration_p4_text),
28 new Page(configuration_p5_subtitle, configuration_p5_text),
29 new Page(configuration_p6_subtitle, configuration_p6_text),
30 new Page(configuration_p7_subtitle, configuration_p7_text),
31 new Page(configuration_p8_subtitle, configuration_p8_text),
32 new Page(configuration_p9_subtitle, configuration_p9_text)
    [all...]
  /external/subsampling-scale-image-view/sample/src/main/java/com/davemorrissey/labs/subscaleview/test/basicfeatures/
BasicFeaturesActivity.java 9 import com.davemorrissey.labs.subscaleview.test.Page;
21 new Page(basic_p1_subtitle, basic_p1_text),
22 new Page(basic_p2_subtitle, basic_p2_text),
23 new Page(basic_p3_subtitle, basic_p3_text),
24 new Page(basic_p4_subtitle, basic_p4_text),
25 new Page(basic_p5_subtitle, basic_p5_text)
  /frameworks/base/libs/hwui/utils/
LinearAllocator.cpp 33 // The ideal size of a page allocation (these need to be multiples of 8)
37 // The maximum amount of wasted space we can have per page
38 // Allocations exceeding this will have their own dedicated page
86 class LinearAllocator::Page {
88 Page* next() { return mNextPage; }
89 void setNext(Page* next) { mNextPage = next; }
91 Page() : mNextPage(0) {}
95 void* start() { return (void*)(((size_t)this) + sizeof(Page)); }
100 Page(const Page& /*other*/) {
168 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...]
  /external/subsampling-scale-image-view/sample/src/main/java/com/davemorrissey/labs/subscaleview/test/eventhandling/
EventHandlingActivity.java 10 import com.davemorrissey.labs.subscaleview.test.Page;
22 new Page(event_p1_subtitle, event_p1_text),
23 new Page(event_p2_subtitle, event_p2_text),
24 new Page(event_p3_subtitle, event_p3_text)
  /external/subsampling-scale-image-view/sample/src/main/java/com/davemorrissey/labs/subscaleview/test/imagedisplay/
ImageDisplayActivity.java 7 import com.davemorrissey.labs.subscaleview.test.Page;
26 new Page(display_p1_subtitle, display_p1_text),
27 new Page(display_p2_subtitle, display_p2_text),
28 new Page(display_p3_subtitle, display_p3_text)
33 protected void onPageChanged(int page) {
37 .replace(id.frame, FRAGMENTS.get(page).newInstance())

Completed in 270 milliseconds

1 2 3 4 5 6 7 8 91011