Searched refs:DepIsInSameApex (Results 1 – 8 of 8) sorted by relevance
/build/soong/android/ |
D | apex.go | 41 type DepIsInSameApex interface { interface 44 DepIsInSameApex(ctx BaseModuleContext, dep Module) bool methodSpec 64 DepIsInSameApex 240 func (m *ApexModuleBase) DepIsInSameApex(ctx BaseModuleContext, dep Module) bool { func 587 if am, ok := from.(DepIsInSameApex); ok && !am.DepIsInSameApex(ctx, to) {
|
/build/soong/sdk/ |
D | sdk.go | 410 android.DepIsInSameApex 419 if dep, ok := m.(android.SdkAware); ok && parent.DepIsInSameApex(mctx, dep) { 459 android.DepIsInSameApex 483 if !m.DepIsInSameApex(mctx, dep) && !requiredSdks.Contains(sa.ContainingSdk()) {
|
/build/soong/apex/ |
D | apex.go | 707 if !parent.(android.DepIsInSameApex).DepIsInSameApex(mctx, child) { 752 if !am.DepIsInSameApex(mctx, child) { 1486 func (a *apexBundle) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool { func 1871 if am, ok := from.(android.DepIsInSameApex); ok && !am.DepIsInSameApex(ctx, to) { 1921 if am, ok := from.(android.DepIsInSameApex); ok && !am.DepIsInSameApex(ctx, to) {
|
/build/soong/java/ |
D | app.go | 900 isExternal := !a.DepIsInSameApex(ctx, child) 954 func (a *AndroidApp) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool { func 958 return a.Library.DepIsInSameApex(ctx, dep) 1585 func (a *AndroidAppImport) DepIsInSameApex(_ android.BaseModuleContext, _ android.Module) bool { func
|
D | sdk_library.go | 1334 func (module *SdkLibrary) DepIsInSameApex(mctx android.BaseModuleContext, dep android.Module) bool { func 1339 return module.Library.DepIsInSameApex(mctx, dep) 1892 func (module *SdkLibraryImport) DepIsInSameApex(mctx android.BaseModuleContext, dep android.Module)… func
|
D | aar.go | 761 func (a *AARImport) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool { func
|
D | java.go | 1925 func (j *Module) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool { func 2721 func (j *Import) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool { func
|
/build/soong/cc/ |
D | cc.go | 2878 func (c *Module) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool { func
|