Searched refs:New (Results 1 – 25 of 42) sorted by relevance
12
/build/soong/android/ |
D | paths_test.go | 55 err: []error{errors.New("Path is outside directory: ..")}, 60 err: []error{errors.New("Path is outside directory: ../a")}, 65 err: []error{errors.New("Path is outside directory: ../a")}, 70 err: []error{errors.New("Path is outside directory: /a")}, 75 err: []error{errors.New("Path is outside directory: ../b")}, 80 err: []error{errors.New("Path is outside directory: ../c")}, 85 err: []error{errors.New("Path is outside directory: ..")}, 100 err: []error{errors.New("Path contains invalid character($): $host/../$a")}, 105 err: []error{errors.New("Path contains invalid character($): $host/..")},
|
/build/kati/ |
D | rule_parser.go | 189 return nil, errors.New("*** missing separator.") 201 return nil, errors.New("*** mixed implicit and normal rules: deprecated syntax") 245 return nil, errors.New("*** mixed implicit and normal rules: deprecated syntax") 254 return nil, errors.New("*** missing target pattern.") 258 return nil, errors.New("*** target pattern contains no '%'.") 262 return nil, errors.New("*** multiple target patterns.")
|
D | pathutil.go | 523 errNotFind = errors.New("not find command") 524 errFindBackground = errors.New("find command: background") 525 errFindUnbalancedQuote = errors.New("find command: unbalanced quote") 526 errFindDupChdir = errors.New("find command: dup chdir") 527 errFindDupTestdir = errors.New("find command: dup testdir") 528 errFindExtra = errors.New("find command: extra") 529 errFindUnexpectedEnd = errors.New("find command: unexpected end") 530 errFindAbspath = errors.New("find command: abs path") 531 errFindNoSuchDir = errors.New("find command: no such dir") 894 errNotFindleaves = errors.New("not findleaves command") [all …]
|
D | expr.go | 30 errEndOfInput = errors.New("unexpected end of input") 31 errNotLiteral = errors.New("valueNum: not literal") 33 errUnterminatedVariableReference = errors.New("*** unterminated variable reference.") 427 return nil, 0, errors.New("empty expr") 430 return nil, 0, errors.New("should starts with $") 433 return nil, 0, errors.New("should handle $$ as literal $")
|
D | buf.go | 24 New: func() interface{} { return new(evalBuffer) }, 27 New: func() interface{} { return new(wordBuffer) },
|
D | worker.go | 30 errNothingDone = errors.New("nothing done") 345 return errors.New("worker manager stopped")
|
/build/soong/ui/logger/ |
D | logger_test.go | 101 log := New(&bytes.Buffer{}) 132 log := New(&bytes.Buffer{}) 154 log := New(&bytes.Buffer{}) 169 log := New(&bytes.Buffer{}) 185 log := New(&bytes.Buffer{})
|
D | logger.go | 139 func New(out io.Writer) *stdLogger { func 141 stderr: log.New(out, "", log.Ltime), 142 fileLogger: log.New(ioutil.Discard, "", log.Ldate|log.Lmicroseconds|log.Llongfile), 264 panic(fatalLog(errors.New(output))) 272 panic(fatalLog(errors.New(output))) 280 panic(fatalLog(errors.New(output)))
|
/build/blueprint/proptools/ |
D | clone.go | 25 result := reflect.New(structValue.Type()) 87 newValue := reflect.New(srcFieldValue.Type()).Elem() 118 newValue := reflect.New(srcFieldValue.Type()) 186 result := reflect.New(structValue.Type()) 223 newValue := reflect.New(srcFieldValue.Type()).Elem()
|
D | extend_test.go | 578 err: errors.New("expected pointer to struct, got struct {}"), 585 err: errors.New("expected pointer to struct, got struct {}"), 592 err: errors.New("expected pointer to struct, got *[]string"), 599 err: errors.New("expected pointer to struct, got *[]string"), 613 …err: errors.New("expected matching types for dst and src, got *struct { A string } and *struct { B… 1058 err: errors.New("expected pointer to struct, got struct {}"), 1065 err: errors.New("expected pointer to struct, got struct {}"), 1072 err: errors.New("expected pointer to struct, got *[]string"), 1079 err: errors.New("expected pointer to struct, got *[]string"),
|
/build/soong/cmd/soong_ui/ |
D | main.go | 45 log := logger.New(os.Stderr) 55 trace := tracer.New(log)
|
/build/soong/third_party/zip/ |
D | android.go | 122 return nil, errors.New("archive/zip: invalid duplicate FileHeader") 158 return 0, errors.New("zip: write to closed file") 165 return errors.New("zip: file closed twice")
|
D | register.go | 50 return 0, errors.New("Write after Close") 88 return 0, errors.New("Read after Close")
|
D | writer.go | 64 return errors.New("zip: writer closed twice") 210 return nil, errors.New("archive/zip: invalid duplicate FileHeader") 303 return 0, errors.New("zip: write to closed file") 311 return errors.New("zip: file closed twice")
|
D | reader.go | 19 ErrFormat = errors.New("zip: not a valid zip file") 20 ErrAlgorithm = errors.New("zip: unsupported compression algorithm") 21 ErrChecksum = errors.New("zip: checksum error") 424 return nil, errors.New("zip: invalid comment length")
|
/build/soong/cmd/multiproduct_kati/ |
D | main.go | 60 log := logger.New(os.Stderr) 68 trace := tracer.New(log) 139 productLog := logger.New(&bytes.Buffer{})
|
/build/blueprint/loadplugins/ |
D | loadplugins.go | 59 var pluginTmpl = template.Must(template.New("pluginloader").Parse(`
|
/build/kati/testcase/ |
D | gen_testcase_parse_benchmark.go | 38 var tmpl = template.Must(template.New("benchmarktest").Parse(`
|
/build/blueprint/gotestmain/ |
D | gotestmain.go | 86 var testMainTmpl = template.Must(template.New("testMain").Parse(`
|
/build/blueprint/ |
D | unpack.go | 185 fieldValue = reflect.New(fieldValue.Type().Elem()) 253 newValue := reflect.New(fieldValue.Type().Elem()) 257 newValue := reflect.New(fieldValue.Type().Elem())
|
/build/soong/ui/build/ |
D | build.go | 35 var combinedBuildNinjaTemplate = template.Must(template.New("combined").Parse(`
|
/build/blueprint/pathtools/ |
D | glob.go | 28 var GlobMultipleRecursiveErr = errors.New("pattern contains multiple **") 29 var GlobLastRecursiveErr = errors.New("pattern ** as last path element")
|
/build/make/tools/droiddoc/templates-sac/components/ |
D | masthead.cs | 42 <!-- New Search -->
|
/build/blueprint/bootstrap/ |
D | cleanup.go | 90 return nil, errors.New("unrecognized ninja log format")
|
/build/soong/cmd/fileslist/ |
D | fileslist.go | 67 h := sha256.New()
|
12