Searched refs:RegisterSingletonType (Results 1 – 25 of 36) sorted by relevance
12
/build/soong/android/ |
D | register.go | 74 func RegisterSingletonType(name string, factory SingletonFactory) { func 102 ctx.RegisterSingletonType(t.name, t.factory) 108 ctx.RegisterSingletonType("phony", SingletonFactoryAdaptor(phonySingletonFactory)) 111 ctx.RegisterSingletonType("makevars", SingletonFactoryAdaptor(makeVarsSingletonFunc)) 114 ctx.RegisterSingletonType("env", SingletonFactoryAdaptor(EnvSingleton)) 131 RegisterSingletonType(name string, factory SingletonFactory) methodSpec 181 func (ctx *initRegistrationContext) RegisterSingletonType(name string, factory SingletonFactory) { func 186 RegisterSingletonType(name, factory)
|
D | androidmk_test.go | 84 ctx.RegisterSingletonType("androidmk", AndroidMkSingleton) 256 ctx.RegisterSingletonType("androidmk", AndroidMkSingleton)
|
D | writedocs.go | 27 RegisterSingletonType("writedocs", DocsSingleton)
|
D | api_levels.go | 24 RegisterSingletonType("api_levels", ApiLevelsSingleton)
|
D | test_suites.go | 18 RegisterSingletonType("testsuites", testSuiteFilesFactory)
|
D | metrics.go | 38 RegisterSingletonType("soong_metrics", soongMetricsSingletonFactory)
|
D | testing.go | 87 ctx.RegisterSingletonType("env", EnvSingleton) 108 func (ctx *TestContext) RegisterSingletonType(name string, factory SingletonFactory) { func 109 ctx.Context.RegisterSingletonType(name, SingletonFactoryAdaptor(factory))
|
/build/soong/apex/ |
D | apex_singleton.go | 26 android.RegisterSingletonType("apex_depsinfo_singleton", apexDepsInfoSingletonFactory)
|
D | key.go | 31 android.RegisterSingletonType("apex_keys_text", apexKeysTextFactory)
|
/build/blueprint/bootstrap/ |
D | command.go | 144 ctx.RegisterSingletonType("bootstrap", newSingletonFactory(bootstrapConfig)) 146 ctx.RegisterSingletonType("glob", globSingletonFactory(ctx))
|
D | glob.go | 155 ctx.RegisterSingletonType("glob", func() blueprint.Singleton {
|
/build/soong/rust/ |
D | testing.go | 109 ctx.RegisterSingletonType("rust_project_generator", rustProjectGeneratorSingleton)
|
D | project_json.go | 34 android.RegisterSingletonType("rust_project_generator", rustProjectGeneratorSingleton)
|
/build/soong/cc/ |
D | testing.go | 573 ctx.RegisterSingletonType("vndk-snapshot", VndkSnapshotSingleton) 574 ctx.RegisterSingletonType("vendor-snapshot", VendorSnapshotSingleton)
|
D | ndk_sysroot.go | 64 android.RegisterSingletonType("ndk", NdkSingleton)
|
D | cflag_artifacts.go | 14 android.RegisterSingletonType("cflag_artifacts_text", cflagArtifactsTextFactory)
|
D | compdb.go | 35 android.RegisterSingletonType("compdb_generator", compDBGeneratorSingleton)
|
D | ccdeps.go | 33 android.RegisterSingletonType("ccdeps_generator", ccDepsGeneratorSingleton)
|
D | cmakelists.go | 32 android.RegisterSingletonType("cmakelists_generator", cMakeListsGeneratorSingleton)
|
D | fuzz.go | 67 android.RegisterSingletonType("cc_fuzz_packaging", fuzzPackagingFactory)
|
/build/soong/java/ |
D | jdeps.go | 29 android.RegisterSingletonType("jdeps_generator", jDepsGeneratorSingleton)
|
D | hiddenapi_singleton.go | 24 android.RegisterSingletonType("hiddenapi", hiddenAPISingletonFactory) 25 android.RegisterSingletonType("hiddenapi_index", hiddenAPIIndexSingletonFactory)
|
D | platform_compat_config.go | 23 …android.RegisterSingletonType("platform_compat_config_singleton", platformCompatConfigSingletonFac…
|
D | sdk.go | 32 android.RegisterSingletonType("sdk", sdkSingletonFactory)
|
/build/soong/dexpreopt/ |
D | config.go | 153 android.RegisterSingletonType("dexpreopt-soong-config", func() android.Singleton {
|
12