Home
last modified time | relevance | path

Searched refs:ManifestFile (Results 1 – 16 of 16) sorted by relevance

/aosp_15_r20/development/tools/repo_diff/service/repodiff/controllers/
H A Ddifferential.go55 func defineCommonManifest(config ent.ApplicationConfig) (*ent.ManifestFile, error) {
74 var manifest ent.ManifestFile
155 common *ent.ManifestFile) error { argument
176 func loadTargetManifests(config ent.ApplicationConfig, common *ent.ManifestFile) (*ent.ManifestFile… argument
177 var upstream, downstream ent.ManifestFile
178 dirToLoadAddress := map[string]*ent.ManifestFile{
/aosp_15_r20/development/tools/repo_diff/service/repodiff/entities/
H A Dentities.go116 type ManifestFile struct { struct
126 Common ManifestFile
127 Upstream ManifestFile
128 Downstream ManifestFile
/aosp_15_r20/external/grpc-grpc/test/cpp/util/windows/
H A Dmanifest_file.cc42 ManifestFile::ManifestFile(const std::string& filepath) in ManifestFile() function in grpc::testing::ManifestFile
50 std::string ManifestFile::Get(const std::string& key) { in Get()
H A Dmanifest_file.h41 class ManifestFile {
43 explicit ManifestFile(const std::string& filepath);
/aosp_15_r20/external/bazelbuild-rules_go/go/runfiles/
H A Drunfiles.go90 o.manifest = ManifestFile(os.Getenv(manifestFileVar))
106 manifest := ManifestFile(o.program + ".runfiles_manifest")
257 manifest ManifestFile
263 func (m ManifestFile) apply(o *options) { o.manifest = m }
H A Dmanifest.go29 type ManifestFile string type
31 func (f ManifestFile) new(sourceRepo SourceRepo) (*Runfiles, error) {
47 func (f ManifestFile) parse() (manifest, error) {
/aosp_15_r20/build/soong/jar/
H A Djar.go32 ManifestFile = MetaDir + "MANIFEST.MF" const
61 ManifestFile,
94 Name: ManifestFile,
/aosp_15_r20/development/tools/repo_diff/service/repodiff/persistence/filesystem/
H A Dxml_test.go12 var manifest e.ManifestFile
19 var manifest e.ManifestFile
/aosp_15_r20/external/bazelbuild-rules_go/tests/runfiles/
H A Drunfiles_test.go112 r, err := runfiles.New(runfiles.ManifestFile(manifest))
129 r, err := runfiles.New(runfiles.ManifestFile(manifest))
H A Dfs_test.go76 …fsys, err := runfiles.New(runfiles.ManifestFile(manifest), runfiles.ProgramName("/invalid"), runfi…
/aosp_15_r20/build/soong/cmd/merge_zips/
H A Dmerge_zips.go201 _, err = oz.addZipEntry(jar.ManifestFile, ZipEntryFromBuffer{fh, buf})
256 if name != jar.MetaDir && name != jar.ManifestFile {
299 (oz.emulateJar && entry.name == jar.ManifestFile || entry.name == jar.ModuleInfoClass) ||
H A Dmerge_zips_test.go61 …manifestFile = testZipEntry{jar.ManifestFile, 0755, []byte("manifest"), zip.Deflate, jar.Default…
62 …manifestFile2 = testZipEntry{jar.ManifestFile, 0755, []byte("manifest2"), zip.Deflate, jar.Defaul…
/aosp_15_r20/development/tools/repo_diff/service/repodiff/interactors/
H A Dmanifest_test.go14 var common, downstream, upstream ent.ManifestFile
H A Dmanifest.go20 func extractProjectNames(m ent.ManifestFile) []string { argument
/aosp_15_r20/build/soong/zip/
H A Dzip.go516 pathMappings = append(pathMappings, pathMapping{jar.ManifestFile, manifest, zip.Deflate})
526 if emulateJar && ele.dest == jar.ManifestFile {
/aosp_15_r20/external/leveldb/db/
H A Ddb_test.cc164 class ManifestFile : public WritableFile { in NewWritableFile() class
170 ManifestFile(SpecialEnv* env, WritableFile* b) : env_(env), base_(b) {} in NewWritableFile() function in leveldb::SpecialEnv::NewWritableFile::ManifestFile
171 ~ManifestFile() { delete base_; } in NewWritableFile()
200 *r = new ManifestFile(this, *r); in NewWritableFile()