Home
last modified time | relevance | path

Searched refs:New (Results 1 – 25 of 67) sorted by relevance

123

/build/soong/cmd/diff_target_files/
Dglob.go27 return false, errors.New("pattern has '**' as last path element")
48 return false, errors.New("pattern contains multiple '**'")
63 return false, errors.New("pattern contains other characters between '**' and path separator")
/build/soong/ui/logger/
Dlogger_test.go101 log := New(&bytes.Buffer{})
132 log := New(&bytes.Buffer{})
154 log := New(&bytes.Buffer{})
169 log := New(&bytes.Buffer{})
185 log := New(&bytes.Buffer{})
Dlogger.go151 func New(out io.Writer) *stdLogger { func
153 stderr: log.New(out, "", log.Ltime),
154 fileLogger: log.New(ioutil.Discard, "", log.Ldate|log.Lmicroseconds|log.Llongfile),
282 panic(fatalLog{errors.New(output)})
290 panic(fatalLog{errors.New(output)})
298 panic(fatalLog{errors.New(output)})
/build/soong/finder/cmd/
Dfinder.go104 logger := log.New(writer, "", log.Ldate|log.Lmicroseconds|log.Lshortfile)
128 return errors.New("Param 'db' must be nonempty")
150 service, err := finder.New(params, fs.OsFs, logger, dbPath)
/build/soong/python/
Dpython_test.go368 testErrs = append(testErrs, errors.New(v))
374 testErrs = append(testErrs, errors.New(v))
397 testErrs = append(testErrs, errors.New(fmt.Sprintf(
405 testErrs = append(testErrs, errors.New(fmt.Sprintf(
416 testErrs = append(testErrs, errors.New(fmt.Sprintf(
/build/blueprint/proptools/
Dclone.go30 result := reflect.New(structValue.Type().Elem())
97 newValue := reflect.New(srcFieldValue.Type()).Elem()
126 newValue := reflect.New(srcFieldValue.Elem().Type())
205 result := reflect.New(structValue.Type().Elem())
238 newValue := reflect.New(srcFieldValue.Type()).Elem()
Dextend_test.go792 err: errors.New("expected pointer to struct, got struct {}"),
799 err: errors.New("expected pointer to struct, got struct {}"),
806 err: errors.New("expected pointer to struct, got *[]string"),
813 err: errors.New("expected pointer to struct, got *[]string"),
827 …err: errors.New("expected matching types for dst and src, got *struct { A string } and *struct { B…
1096 return Append, errors.New("unknown order")
1314 err: errors.New("expected pointer to struct, got struct {}"),
1321 err: errors.New("expected pointer to struct, got struct {}"),
1328 err: errors.New("expected pointer to struct, got *[]string"),
1335 err: errors.New("expected pointer to struct, got *[]string"),
[all …]
Dunpack.go239 fieldValue = reflect.New(fieldValue.Type().Elem())
338 itemValue := reflect.New(t).Elem()
344 return reflect.New(t), false
362 ptrValue := reflect.New(itemValue.Type())
418 ptrValue := reflect.New(value.Type())
/build/soong/android/
Dnamespace_test.go174 errors.New(
397 …errors.New(`dir1/Android.bp:2:4: module "soong_namespace": namespace a_nonexistent_namespace does …
426 errors.New(`dir1/subdir1/Android.bp:4:4: "b" depends on undefined module "a"
489 errors.New(`dir3/Android.bp:5:4: "c" depends on undefined module "a"
511 errors.New(`dir1/Android.bp:4:4: namespace dir1 already exists`),
532 errors.New(`dir1/Android.bp:5:4: a namespace must be the first module in the file`),
556 errors.New(`dir1/Android.bp:7:4: module "a" already defined
578 errors.New(`include.bp:2:5: A namespace may only be declared in a file named Android.bp`),
Dpaths_test.go58 err: []error{errors.New("Path is outside directory: ..")},
63 err: []error{errors.New("Path is outside directory: ../a")},
68 err: []error{errors.New("Path is outside directory: ../a")},
73 err: []error{errors.New("Path is outside directory: /a")},
78 err: []error{errors.New("Path is outside directory: ../b")},
83 err: []error{errors.New("Path is outside directory: ../c")},
88 err: []error{errors.New("Path is outside directory: ..")},
103 err: []error{errors.New("Path contains invalid character($): $host/../$a")},
108 err: []error{errors.New("Path contains invalid character($): $host/..")},
Dfilegroup.go74 var androidMkTemplate = template.Must(template.New("filegroup").Parse(`
/build/soong/third_party/zip/
Dandroid.go130 return nil, errors.New("archive/zip: invalid duplicate FileHeader")
177 return 0, errors.New("zip: write to closed file")
184 return errors.New("zip: file closed twice")
Dregister.go50 return 0, errors.New("Write after Close")
88 return 0, errors.New("Read after Close")
Dwriter.go64 return errors.New("zip: writer closed twice")
222 return nil, errors.New("archive/zip: invalid duplicate FileHeader")
338 return 0, errors.New("zip: write to closed file")
348 return errors.New("zip: file closed twice")
Dreader.go19 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/cuj/
Dcuj.go52 log := logger.New(output)
58 trace := tracer.New(log)
61 met := metrics.New()
/build/soong/ui/build/
Dproc_sync_test.go207 noopLogger := logger.New(ioutil.Discard)
219 noopLogger := logger.New(ioutil.Discard)
231 noopLogger := logger.New(ioutil.Discard)
Dfinder.go72 f, err = finder.New(cacheParams, filesystem, logger.New(ioutil.Discard),
Dcleanbuild_test.go38 ctx.Logger = logger.New(logBuf)
/build/soong/ui/status/
Dninja_test.go36 nr := NewNinjaReader(logger.New(ioutil.Discard), stat.StartTool(), filepath.Join(tempDir, "fifo"))
Dlog.go199 return 0, errors.New("not supported")
236 return 0, errors.New("not supported")
/build/blueprint/loadplugins/
Dloadplugins.go59 var pluginTmpl = template.Must(template.New("pluginloader").Parse(`
/build/blueprint/pathtools/
Dglob.go28 var GlobMultipleRecursiveErr = errors.New("pattern contains multiple '**'")
29 var GlobLastRecursiveErr = errors.New("pattern has '**' as last path element")
30 var GlobInvalidRecursiveErr = errors.New("pattern contains other characters between '**' and path s…
/build/blueprint/
Dcontext_test.go575 errors.New(`Blueprints:3:18: expected "}", found String`),
576 errors.New(`dir1/Blueprints:4:3: expected "}", found EOF`),
603 errors.New(`Blueprints:6:4: property 'name' is missing from a module`),
/build/soong/cmd/multiproduct_kati/
Dmain.go156 log := logger.New(output)
164 trace := tracer.New(log)
387 log := logger.New(f)

123