Home
last modified time | relevance | path

Searched refs:EntryMap (Results 1 – 13 of 13) sorted by relevance

/build/soong/java/
Dandroidmk_test.go37 actual := entries.EntryMap["LOCAL_REQUIRED_MODULES"]
60 actual := mainEntries.EntryMap["LOCAL_MODULE"]
67 actual = subEntries.EntryMap["LOCAL_MODULE"]
91 actual := mainEntries.EntryMap["LOCAL_REQUIRED_MODULES"]
98 actual = subEntries.EntryMap["LOCAL_REQUIRED_MODULES"]
125 if r, ok := mainEntries.EntryMap["LOCAL_REQUIRED_MODULES"]; ok {
131 actual := subEntries.EntryMap["LOCAL_REQUIRED_MODULES"]
167 actual := entries.EntryMap["LOCAL_REQUIRED_MODULES"]
187 actualSoongDexJar := entries.EntryMap["LOCAL_SOONG_DEX_JAR"]
204 actual := entries.EntryMap["LOCAL_DISABLE_TEST_CONFIG"]
Drro_test.go104 path := androidMkEntries.EntryMap["LOCAL_CERTIFICATE"]
111 path = androidMkEntries.EntryMap["LOCAL_MODULE_PATH"]
118 path = androidMkEntries.EntryMap["LOCAL_MODULE_PATH"]
122 overrides := androidMkEntries.EntryMap["LOCAL_OVERRIDES_PACKAGES"]
162 path := android.AndroidMkEntriesForTest(t, ctx, m.Module())[0].EntryMap["LOCAL_MODULE_PATH"]
179 path = android.AndroidMkEntriesForTest(t, ctx, m.Module())[0].EntryMap["LOCAL_MODULE_PATH"]
337 actualRRODirs := mkEntries.EntryMap["LOCAL_SOONG_PRODUCT_RRO_DIRS"]
Dapp_import_test.go313 …actualValues := android.AndroidMkEntriesForTest(t, ctx, a)[0].EntryMap["LOCAL_INSTALLED_MODULE_STE…
473 actualPath := entries.EntryMap["LOCAL_PATH"]
474 actualPrebuiltModuleFile := entries.EntryMap["LOCAL_PREBUILT_MODULE_FILE"]
475 actualSoongResourceExportPackage := entries.EntryMap["LOCAL_SOONG_RESOURCE_EXPORT_PACKAGE"]
513 actual := entries.EntryMap["LOCAL_MODULE_TAGS"]
518 actual = entries.EntryMap["LOCAL_COMPATIBILITY_SUPPORT_FILES"]
Dsystemserver_classpath_fragment_test.go90 if value, ok := got.EntryMap[k]; ok {
93 t.Errorf("No %s defined, saw %q", k, got.EntryMap)
Dapp_set_test.go45 actualInstallFile := mkEntries.EntryMap["LOCAL_APK_SET_INSTALL_FILE"]
Dplatform_bootclasspath_test.go227 if value, ok := got.EntryMap[k]; ok {
230 t.Errorf("No %s defined, saw %q", k, got.EntryMap)
Djava_test.go1379 actual := entries.EntryMap["LOCAL_COMPATIBILITY_SUPPORT_FILES"]
/build/soong/android/
Dandroidmk.go142 EntryMap map[string][]string member
172 if _, ok := a.EntryMap[name]; !ok {
175 a.EntryMap[name] = []string{value}
180 if _, ok := a.EntryMap[name]; !ok {
183 a.EntryMap[name] = []string{path.String()}
196 if _, ok := a.EntryMap[name]; !ok {
199 a.EntryMap[name] = append(a.EntryMap[name], path.String())
212 if _, ok := a.EntryMap[name]; !ok {
215 a.EntryMap[name] = paths.Strings()
228 if _, ok := a.EntryMap[name]; !ok {
[all …]
/build/soong/linkerconfig/
Dlinkerconfig_test.go57 if value, ok := entries.EntryMap[k]; ok {
66 if value, ok := entries.EntryMap["LOCAL_UNINSTALLABLE_MODULE"]; ok {
84 if value, ok := entries.EntryMap["LOCAL_UNINSTALLABLE_MODULE"]; ok {
/build/soong/sh/
Dsh_binary_test.go57 actualPath := entries.EntryMap["LOCAL_MODULE_PATH"][0]
79 actualPath := entries.EntryMap["LOCAL_MODULE_PATH"][0]
83 actualData := entries.EntryMap["LOCAL_TEST_DATA"]
136 actualData := entries.EntryMap["LOCAL_TEST_DATA"]
202 actualData := entries.EntryMap["LOCAL_TEST_DATA"]
/build/soong/etc/
Dprebuilt_etc_test.go132 if value, ok := entries.EntryMap[k]; ok {
135 t.Errorf("No %s defined, saw %q", k, entries.EntryMap)
/build/soong/apex/
Dandroidmk.go286 if value, ok := apexAndroidMkData.Entries.EntryMap[name]; ok {
398 if value, ok := data.Entries.EntryMap[name]; ok {
Dapex_test.go4216 actual := android.AndroidMkEntriesForTest(t, ctx, p)[0].EntryMap["LOCAL_OVERRIDES_MODULES"]
7154 …actualOverrides := android.AndroidMkEntriesForTest(t, ctx, a)[0].EntryMap["LOCAL_OVERRIDES_MODULES…
7596 if strings.Join(ent.mkEntries.EntryMap["LOCAL_MODULE"], ",") == "stublib" {
7615 if entry.mkEntries.EntryMap["LOCAL_NOT_AVAILABLE_FOR_PLATFORM"] != nil {
7618 cflags := entry.mkEntries.EntryMap["LOCAL_EXPORT_CFLAGS"]