Searched refs:pkgPath (Results 1 – 25 of 78) sorted by relevance
1234
/build/blueprint/bootstrap/bpdoc/ |
D | reader.go | 65 pkgPath, err := funcNameToPkgPath(f.Name()) 70 factoryName := strings.TrimPrefix(f.Name(), pkgPath+".") 72 text, err := r.getModuleTypeDoc(pkgPath, factoryName) 79 PkgPath: pkgPath, 86 func (r *Reader) propertyStruct(pkgPath, name string, defaults reflect.Value) (*PropertyStruct, err… 87 ps := r.getPropertyStruct(pkgPath, name) 90 pkg, err := r.goPkg(pkgPath) 101 ps = r.putPropertyStruct(pkgPath, name, ps) 107 return nil, fmt.Errorf("package %q type %q not found", pkgPath, name) 118 func (r *Reader) PropertyStruct(pkgPath, name string, defaults reflect.Value) (*PropertyStruct, err… [all …]
|
D | reader_test.go | 105 var pkgPath string var 115 pkgPath, err = funcNameToPkgPath(fn.Name()) 121 pkgPath: {filename}, 148 if mt.PkgPath != pkgPath { 149 t.Errorf("expected pkgpath %q, got %q", pkgPath, mt.PkgPath) 156 ps, err := r.PropertyStruct(pkgPath, "props", reflect.ValueOf(props{A: "B"})) 176 pkg, err := r.Package(pkgPath)
|
/build/blueprint/ |
D | package_ctx.go | 58 Import(pkgPath string) 59 ImportAs(as, pkgPath string) 79 pkgPath string member 96 func NewPackageContext(pkgPath string) PackageContext { 99 if _, present := packageContexts[pkgPath]; present { 100 panic(fmt.Errorf("package %q already has a package context", pkgPath)) 103 pkgName := pkgPathToName(pkgPath) 109 i := strings.LastIndex(pkgPath, "/") 110 shortName := pkgPath[i+1:] 115 pkgPath: pkgPath, [all …]
|
D | Android.bp | 39 pkgPath: "github.com/google/blueprint", 69 pkgPath: "github.com/google/blueprint/parser", 87 pkgPath: "github.com/google/blueprint/deptools", 93 pkgPath: "github.com/google/blueprint/pathtools", 111 pkgPath: "github.com/google/blueprint/proptools", 144 pkgPath: "github.com/google/blueprint/bootstrap", 160 pkgPath: "github.com/google/blueprint/bootstrap/bpdoc", 200 pkgPath: "github.com/google/blueprint/gotestmain", 227 pkgPath: "github.com/google/blueprint/microfactory",
|
/build/soong/ui/metrics/ |
D | Android.bp | 21 pkgPath: "android/soong/ui/metrics", 42 pkgPath: "android/soong/ui/metrics/metrics_proto", 54 pkgPath: "android/soong/ui/metrics/upload_proto", 66 pkgPath: "android/soong/ui/metrics/bp2build_metrics_proto", 78 pkgPath: "android/soong/ui/metrics/mk_metrics_proto",
|
/build/soong/python/ |
D | proto.go | 21 func genProto(ctx android.ModuleContext, protoFile android.Path, flags android.ProtoFlags, pkgPath … 39 if pkgPath != "" { 40 zipCmd.FlagWithArg("-P ", pkgPath)
|
D | python.go | 523 pkgPath := String(p.properties.Pkg_path) 524 if pkgPath != "" { 526 pkgPath = filepath.Clean(String(p.properties.Pkg_path)) 527 if pkgPath == ".." || strings.HasPrefix(pkgPath, "../") || 528 strings.HasPrefix(pkgPath, "/") { 537 pkgPath = filepath.Join(internalPath, pkgPath) 541 p.genModulePathMappings(ctx, pkgPath, expandedSrcs, expandedData) 544 p.srcsZip = p.createSrcsZip(ctx, pkgPath) 563 func (p *Module) genModulePathMappings(ctx android.ModuleContext, pkgPath string, 575 runfilesPath := filepath.Join(pkgPath, s.Rel()) [all …]
|
/build/soong/ui/status/ |
D | Android.bp | 21 pkgPath: "android/soong/ui/status", 46 pkgPath: "android/soong/ui/status/ninja_frontend", 58 pkgPath: "android/soong/ui/status/build_error_proto", 70 pkgPath: "android/soong/ui/status/build_progress_proto",
|
/build/soong/tradefed/ |
D | Android.bp | 7 pkgPath: "android/soong/tradefed", 22 pkgPath: "android/soong/tradefed/suite_harness",
|
/build/soong/bpfix/ |
D | Android.bp | 35 pkgPath: "android/soong/bpfix/cmd_lib", 46 pkgPath: "android/soong/bpfix/bpfix",
|
/build/soong/androidmk/ |
D | Android.bp | 35 pkgPath: "android/soong/androidmk/androidmk", 53 pkgPath: "android/soong/androidmk/parser",
|
/build/soong/response/ |
D | Android.bp | 7 pkgPath: "android/soong/response",
|
/build/soong/remoteexec/ |
D | Android.bp | 7 pkgPath: "android/soong/remoteexec",
|
/build/soong/fuzz/ |
D | Android.bp | 7 pkgPath: "android/soong/fuzz",
|
/build/soong/phony/ |
D | Android.bp | 7 pkgPath: "android/soong/phony",
|
/build/soong/bazel/cquery/ |
D | Android.bp | 7 pkgPath: "android/soong/bazel/cquery",
|
/build/soong/sh/ |
D | Android.bp | 7 pkgPath: "android/soong/sh",
|
/build/soong/linkerconfig/ |
D | Android.bp | 7 pkgPath: "android/soong/linkerconfig",
|
/build/soong/java/config/ |
D | Android.bp | 7 pkgPath: "android/soong/java/config",
|
/build/soong/kernel/ |
D | Android.bp | 7 pkgPath: "android/soong/kernel",
|
/build/soong/shared/ |
D | Android.bp | 7 pkgPath: "android/soong/shared",
|
/build/soong/xml/ |
D | Android.bp | 7 pkgPath: "android/soong/xml",
|
/build/soong/dexpreopt/ |
D | Android.bp | 7 pkgPath: "android/soong/dexpreopt",
|
/build/soong/sysprop/ |
D | Android.bp | 7 pkgPath: "android/soong/sysprop",
|
/build/soong/etc/ |
D | Android.bp | 7 pkgPath: "android/soong/etc",
|
1234