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

1 2 3

  /prebuilts/go/darwin-x86/doc/articles/wiki/
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.")}
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.")}
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}
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}
final-noclosure.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
54 p = &Page{Title: title}
65 p := &Page{Title: title, Body: []byte(body)}
74 func renderTemplate(w http.ResponseWriter, tmpl string, p *Page) {
92 return "", errors.New("Invalid Page 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) {
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)}
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) {
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug358.go 23 type Page struct {
  /prebuilts/go/linux-x86/doc/articles/wiki/
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.")}
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.")}
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}
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}
final-noclosure.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
54 p = &Page{Title: title}
65 p := &Page{Title: title, Body: []byte(body)}
74 func renderTemplate(w http.ResponseWriter, tmpl string, p *Page) {
92 return "", errors.New("Invalid Page 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) {
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)}
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) {
  /prebuilts/go/linux-x86/test/fixedbugs/
bug358.go 23 type Page struct {
  /external/lzma/CPP/Windows/Control/
PropertyPage.h 41 CPropertyPage *Page;

Completed in 465 milliseconds

1 2 3