• Home
  • Raw
  • Download

Lines Matching refs:Module

32 	module      android.Module
201 artFragment := result.Module("art-bootclasspath-fragment", "android_common_com.android.art")
202 artBaz := result.Module("baz", "android_common_apex10000")
203 artQuuz := result.Module("quuz", "android_common_apex10000")
205 myFragment := result.Module("mybootclasspath-fragment", "android_common_myapex")
206 myBar := result.Module("bar", "android_common_apex10000")
208 otherApexLibrary := result.Module("otherapexlibrary", "android_common_apex10000")
210 platformFoo := result.Module("quuz", "android_common")
212 bootclasspath := result.Module("myplatform-bootclasspath", "android_common")
222 …expectFragmentElement := func(module android.Module, contents ...android.Module) java.ClasspathEle…
225 expectLibraryElement := func(module android.Module) java.ClasspathElement {
242 []android.Module{artBaz, artQuuz, myBar, platformFoo},
243 []android.Module{artFragment, myFragment},
244 … map[android.Module]string{artBaz: "com.android.art", artQuuz: "com.android.art", myBar: "myapex"},
245 map[string]android.Module{"com.android.art": artFragment, "myapex": myFragment})
260 []android.Module{artBaz, myBar, artQuuz, platformFoo},
261 []android.Module{artFragment, myFragment},
262 … map[android.Module]string{artBaz: "com.android.art", artQuuz: "com.android.art", myBar: "myapex"},
263 map[string]android.Module{"com.android.art": artFragment, "myapex": myFragment})
279 []android.Module{artBaz, platformFoo, artQuuz, myBar},
280 []android.Module{artFragment, myFragment},
281 … map[android.Module]string{artBaz: "com.android.art", artQuuz: "com.android.art", myBar: "myapex"},
282 map[string]android.Module{"com.android.art": artFragment, "myapex": myFragment})
299 []android.Module{artBaz, otherApexLibrary},
300 []android.Module{artFragment},
301 map[android.Module]string{artBaz: "com.android.art", otherApexLibrary: "otherapex"},
302 map[string]android.Module{"com.android.art": artFragment})