Home
last modified time | relevance | path

Searched refs:artifactId (Results 1 – 3 of 3) sorted by relevance

/build/soong/cmd/pom2mk/
Dpom2mk.go61 func (r *RewriteNames) MavenToMk(groupId string, artifactId string) string {
63 if r.regexp.MatchString(groupId + ":" + artifactId) {
64 return r.regexp.ReplaceAllString(groupId+":"+artifactId, r.repl)
65 } else if r.regexp.MatchString(artifactId) {
66 return r.regexp.ReplaceAllString(artifactId, r.repl)
69 return artifactId
361 either the Maven project's <groupId>:<artifactId> or <artifactId> will be used to generate
362 the Make module name using <replace>. If no matches are found, <artifactId> is used.
/build/soong/bazel/
Daquery.go36 type artifactId int type
102 artifactIdToPath map[artifactId]string
132 artifactIdToPath := make(map[artifactId]string, len(aqueryResult.Artifacts))
153 artifactIdToPath[artifactId(artifact.Id)] = artifactPath
161 middlemanIdToDepsetIds := map[artifactId][]uint32{}
165 middlemanIdToDepsetIds[artifactId(outputId)] = actionEntry.InputDepSetIds
195 …ps(depset *analysis_v2_proto.DepSetOfFiles, middlemanIdToDepsetIds map[artifactId][]uint32, depset…
202 aId := artifactId(id)
666 outputPath, exists := a.artifactIdToPath[artifactId(outputId)]
/build/soong/cmd/pom2bp/
Dpom2bp.go65 func (r *RewriteNames) MavenToBp(groupId string, artifactId string) string {
67 if r.regexp.MatchString(groupId + ":" + artifactId) {
68 return r.regexp.ReplaceAllString(groupId+":"+artifactId, r.repl)
69 } else if r.regexp.MatchString(artifactId) {
70 return r.regexp.ReplaceAllString(artifactId, r.repl)
73 return artifactId
114 func (n HostModuleNames) IsHostModule(groupId string, artifactId string) bool {
115 _, found := n[groupId+":"+artifactId]
132 func (n HostAndDeviceModuleNames) IsHostAndDeviceModule(groupId string, artifactId string) bool {
133 _, found := n[groupId+":"+artifactId]
[all …]