HomeSort by relevance Sort by last modified time
    Searched defs:Must (Results 1 - 5 of 5) sorted by null

  /prebuilts/go/darwin-x86/src/text/template/
helper.go 17 // Must is a helper that wraps a call to a function returning (*Template, error)
20 // var t = template.Must(template.New("name").Parse("text"))
21 func Must(t *Template, err error) *Template {
30 // parsed contents of the first file. There must be at least one file.
43 // otherwise it is t. There must be at least one file.
95 // files identified by the pattern, which must match at least one file. The
108 // processed by filepath.Glob and must match at least one file. ParseGlob is
  /prebuilts/go/linux-x86/src/text/template/
helper.go 17 // Must is a helper that wraps a call to a function returning (*Template, error)
20 // var t = template.Must(template.New("name").Parse("text"))
21 func Must(t *Template, err error) *Template {
30 // parsed contents of the first file. There must be at least one file.
43 // otherwise it is t. There must be at least one file.
95 // files identified by the pattern, which must match at least one file. The
108 // processed by filepath.Glob and must match at least one file. ParseGlob is
  /external/swiftshader/third_party/LLVM/lib/Analysis/
AliasAnalysisCounter.cpp 32 unsigned No, May, Partial, Must;
39 No = May = Partial = Must = 0;
48 unsigned AASum = No+May+Partial+Must;
58 printLine("must alias", Must, AASum);
62 << Must*100/AASum<<"%\n\n";
136 case MustAlias: Must++; AliasString = "Must alias"; break;
  /prebuilts/go/darwin-x86/src/html/template/
template.go 330 // functions. Each function must have either a single return value, or two
339 // It must be called before the template is parsed.
366 // Must is a helper that wraps a call to a function returning (*Template, error)
369 // var t = template.Must(template.New("name").Parse("html"))
370 func Must(t *Template, err error) *Template {
379 // (parsed) contents of the first file. There must be at least one file.
392 // otherwise it is t. There must be at least one file.
444 // files identified by the pattern, which must match at least one file. The
457 // processed by filepath.Glob and must match at least one file. ParseGlob is
  /prebuilts/go/linux-x86/src/html/template/
template.go 330 // functions. Each function must have either a single return value, or two
339 // It must be called before the template is parsed.
366 // Must is a helper that wraps a call to a function returning (*Template, error)
369 // var t = template.Must(template.New("name").Parse("html"))
370 func Must(t *Template, err error) *Template {
379 // (parsed) contents of the first file. There must be at least one file.
392 // otherwise it is t. There must be at least one file.
444 // files identified by the pattern, which must match at least one file. The
457 // processed by filepath.Glob and must match at least one file. ParseGlob is

Completed in 225 milliseconds