Home
last modified time | relevance | path

Searched refs:preprocessed (Results 1 – 6 of 6) sorted by relevance

/system/tools/aidl/build/
Daidl_test.go1591 "-pout/soong/.intermediates/bar/bar-iface_interface/2/preprocessed.aidl")
1598 …droid.AssertStringDoesContain(t, "checkapi(dump == latest(1)) should import import's preprocessed",
1600 "-pout/soong/.intermediates/bar/bar-iface_interface/2/preprocessed.aidl")
1609 android.AssertStringDoesContain(t, "compile(old=1) should import bar.preprocessed",
1611 "-pout/soong/.intermediates/bar/bar-iface_interface/2/preprocessed.aidl")
1617 android.AssertStringDoesContain(t, "compile(tot=2) should import bar.preprocessed",
1619 "-pout/soong/.intermediates/bar/bar-iface_interface/2/preprocessed.aidl")
1655 rule := ctx.ModuleForTests("foo-iface_interface", "").Output("preprocessed.aidl")
1661 "-pout/soong/.intermediates/foo/bar-iface_interface/preprocessed.aidl")
1700 android.AssertStringDoesContain(t, "compile(unstable) should import bar.preprocessed",
[all …]
Daidl_interface.go456 preprocessed map[string]android.WritablePath member
1026 i.preprocessed = make(map[string]android.WritablePath)
1029 i.preprocessed[version] = i.buildPreprocessed(ctx, version)
1034 i.preprocessed["latest"] = i.preprocessed[i.latestVersion()]
1037 i.preprocessed["latest"] = i.preprocessed[i.nextVersion()]
1039 i.preprocessed[""] = i.preprocessed[i.nextVersion()]
1079 preprocessed := android.PathForModuleOut(ctx, version, "preprocessed.aidl")
1092 FlagWithOutput("--preprocess ", preprocessed).
1097 preprocessCommand.FlagForEachInput("-p", deps.preprocessed)
1105 return preprocessed
Daidl_gen_rule.go128 g.implicitInputs = append(g.implicitInputs, g.deps.preprocessed...)
210 optionalFlags = append(optionalFlags, wrap("-p", g.deps.preprocessed.Strings(), "")...)
Daidl_api.go157 optionalFlags = append(optionalFlags, wrap("-p", deps.preprocessed.Strings(), "")...)
164 Implicits: deps.preprocessed,
/system/tools/aidl/
Daidl.cpp434 auto preprocessed = Parser::Parse(filename, io_delegate, *typenames, /*is_preprocessed=*/true); in load_and_validate_aidl() local
435 if (!preprocessed) { in load_and_validate_aidl()
Daidl_unittest.cpp964 std::string preprocessed = in TEST_F() local
977 std::map<std::string, std::string> expected = {{"preprocessed", preprocessed}}; in TEST_F()
983 io_delegate_.SetFileContents("preprocessed", preprocessed); in TEST_F()