Home
last modified time | relevance | path

Searched refs:excludes (Results 1 – 25 of 65) sorted by relevance

123

/aosp12/build/blueprint/
H A Dglob.go29 if len(excludes) != len(g.Excludes) {
33 for i := range excludes {
34 if g.Excludes[i] != excludes[i] {
43 excludes = append([]string(nil), excludes...)
44 sort.Strings(excludes)
46 key := globToKey(pattern, excludes)
55 verifyGlob(key, pattern, excludes, g)
75 verifyGlob(key, pattern, excludes, g)
94 return keys[i].excludes < keys[j].excludes
109 excludes string member
[all …]
H A Dsingleton_ctx.go155 GlobWithDeps(pattern string, excludes []string) ([]string, error)
365 excludes []string) ([]string, error) {
366 return s.context.glob(pattern, excludes)
/aosp12/build/blueprint/pathtools/
H A Dglob_test.go30 excludes []string member
231 excludes: []string{"d.ext"},
237 excludes: []string{"a/b"},
255 excludes: []string{"*/*"},
297 excludes: []string{"**/b"},
303 excludes: []string{"a/**/*"},
309 excludes: []string{"**/*"},
315 excludes: []string{"a/**/a"},
321 excludes: []string{"**/a"},
442 excludes: []string{"a/**"},
[all …]
H A Dglob.go92 func Glob(pattern string, excludes []string, follow ShouldFollowSymlinks) (GlobResult, error) {
93 return startGlob(OsFs, pattern, excludes, follow)
96 func startGlob(fs FileSystem, pattern string, excludes []string,
109 matches, err = filterExcludes(matches, excludes)
145 Excludes: excludes,
257 func filterExcludes(matches []string, excludes []string) ([]string, error) {
258 if len(excludes) == 0 {
265 for _, e := range excludes {
H A Dfs.go98 Glob(pattern string, excludes []string, follow ShouldFollowSymlinks) (GlobResult, error)
197 func (fs *osFs) Glob(pattern string, excludes []string, follow ShouldFollowSymlinks) (GlobResult, e…
198 return startGlob(fs, pattern, excludes, follow)
349 func (m *mockFs) Glob(pattern string, excludes []string, follow ShouldFollowSymlinks) (GlobResult, …
350 return startGlob(m, pattern, excludes, follow)
/aosp12/build/soong/cmd/zip2zip/
H A Dzip2zip_test.go33 excludes []string
225 excludes: []string{"a/a"},
239 excludes: []string{"a/a"},
253 excludes: []string{"a/*"},
265 excludes: []string{"a/*"},
278 excludes: []string{"a/*"},
441 testCase.args, testCase.excludes, testCase.includes, testCase.uncompresses)
H A Dzip2zip.go43 excludes multiFlag var
49 flag.Var(&excludes, "x", "exclude a filespec from the output")
101 flag.Args(), excludes, includes, uncompress); err != nil {
114 args []string, excludes, includes multiFlag, uncompresses []string) error { argument
185 if exclude, err := excludes.Match(match.File.Name); err != nil {
/aosp12/build/soong/java/
H A Djacoco.go81excludes, err := jacocoFiltersToSpecs(append(j.properties.Jacoco.Exclude_filter, config.DefaultJac…
86 return jacocoFiltersToZipCommand(includes, excludes)
89 func jacocoFiltersToZipCommand(includes, excludes []string) string {
91 if len(excludes) > 0 {
92 specs += android.JoinWithPrefix(excludes, "-x ") + " "
H A Djacoco_test.go71 includes, excludes []string
92 excludes: []string{"package/Class.class"},
99 got := jacocoFiltersToZipCommand(testCase.includes, testCase.excludes)
/aosp12/build/make/tools/atree/
H A Dfiles.cpp181 vector<string>* excludes) in read_list_file() argument
254 excludes->push_back(string(p)); in read_list_file()
412 matches_excludes(const char* file, const vector<string>& excludes) in matches_excludes() argument
414 for (vector<string>::const_iterator it=excludes.begin(); in matches_excludes()
415 it!=excludes.end(); it++) { in matches_excludes()
425 const vector<string>& excludes, in list_dir() argument
444 if (matches_excludes(ent->d_name, excludes)) { in list_dir()
457 list_dir(*it, rec, excludes, more); in list_dir()
464 list_dir(const FileRecord& rec, const vector<string>& excludes, in list_dir() argument
467 return list_dir("", rec, excludes, files); in list_dir()
H A Dfiles.h43 vector<string>* excludes);
47 int list_dir(const FileRecord& rec, const vector<string>& excludes,
H A Datree.cpp207 vector<string> excludes; in main() local
214 err = read_list_file(*it, g_variables, &files, &excludes); in main()
231 err |= list_dir(*it, excludes, &more); in main()
/aosp12/build/blueprint/bootstrap/bpglob/
H A Dbpglob.go98 excludes []string member
125 glob.excludes = append(glob.excludes, s)
203 result, err := pathtools.Glob(glob.pattern, glob.excludes, pathtools.FollowSymlinks)
/aosp12/frameworks/base/core/java/android/app/backup/
H A DFullBackup.java639 Set<PathWithRequiredFlags> excludes, in parseNewBackupSchemeFromXmlLocked() argument
655 parseRules(parser, excludes, includes, Optional.of(0), configSection); in parseNewBackupSchemeFromXmlLocked()
658 logParsingResults(excludes, includes); in parseNewBackupSchemeFromXmlLocked()
683 logParsingResults(excludes, includes); in parseBackupSchemeFromXmlLocked()
708 Set<PathWithRequiredFlags> excludes, in parseRules() argument
739 parser, excludes, includes, domainFromXml); in parseRules()
787 private void logParsingResults(Set<PathWithRequiredFlags> excludes, in logParsingResults() argument
809 if (excludes.isEmpty()) { in logParsingResults()
812 for (PathWithRequiredFlags excludeData : excludes) { in logParsingResults()
867 Set<PathWithRequiredFlags> excludes, in parseCurrentTagForDomain() argument
[all …]
/aosp12/system/libziparchive/
H A Dziptool.cpp66 static std::set<std::string> excludes; variable
89 if (!excludes.empty()) { in ShouldInclude()
90 for (const auto& exclude : excludes) { in ShouldInclude()
138 if (!flag_1 && includes.empty() && excludes.empty()) { in MaybeShowHeader()
166 if (includes.empty() && excludes.empty()) { in MaybeShowFooter()
175 if (!flag_1 && includes.empty() && excludes.empty()) { in MaybeShowFooter()
479 excludes.insert(optarg); in HandleCommonOption()
/aosp12/build/blueprint/bootstrap/
H A Dglob.go74 func GlobFile(ctx GlobFileContext, pattern string, excludes []string, fileListFile string) {
76 if len(excludes) > 0 {
77 args += " " + joinWithPrefixAndQuote(excludes, "-e ")
/aosp12/build/soong/android/
H A Ddefs.go218 func GlobToListFileRule(ctx ModuleContext, pattern string, excludes []string, file WritablePath) {
219 bootstrap.GlobFile(ctx.blueprintModuleContext(), pattern, excludes, file.String())
H A Dpaths.go41 GlobWithDeps(globPattern string, excludes []string) ([]string, error)
69 func Glob(ctx EarlyModulePathContext, globPattern string, excludes []string) Paths {
70 ret, err := ctx.GlobWithDeps(globPattern, excludes)
79 func GlobFiles(ctx EarlyModulePathContext, globPattern string, excludes []string) Paths {
80 ret, err := ctx.GlobWithDeps(globPattern, excludes)
406 func PathsForModuleSrcExcludes(ctx ModuleMissingDepsPathContext, paths, excludes []string) Paths {
407 ret, missingDeps := PathsAndMissingDepsForModuleSrcExcludes(ctx, paths, excludes)
490 func PathsAndMissingDepsForModuleSrcExcludes(ctx ModuleWithDepsPathContext, paths, excludes []strin…
494 if excludes != nil {
495 expandedExcludes = make([]string, 0, len(excludes))
[all …]
H A Dbazel_paths.go123 func BazelLabelForModuleSrcExcludes(ctx BazelConversionPathContext, paths, excludes []string) bazel…
124 excludeLabels := expandSrcsForBazel(ctx, excludes, []string(nil))
/aosp12/build/make/core/
H A Dchecktree5 excludes = [r'.*?/\.obj.*?', variable
14 excludes_compiled = map(re.compile, excludes)
/aosp12/build/soong/cmd/soong_build/
H A Dmain.go406 excludes := []string{
415 excludes = append(excludes, bootstrap.CmdlineArgs.NinjaBuildDir)
419 topDir, workspaceRoot, generatedRoot, configuration.SrcDir(), excludes)
/aosp12/packages/apps/Car/Dialer/
H A Dbuild.gradle61 …java.excludes = ['com/android/car/dialer/inject/BluetoothSingleHfpModule.java', 'com/android/car/d…
66 java.excludes = ['com/android/car/dialer/inject/BluetoothSingleHfpModule.java']
/aosp12/system/extras/simpleperf/demo/SimpleperfExampleOfKotlin/app/
H A Dprofiling.gradle23 excludes += exclude_abis
/aosp12/system/extras/simpleperf/demo/SimpleperfExamplePureJava/app/
H A Dprofiling.gradle23 excludes += exclude_abis
/aosp12/system/extras/simpleperf/demo/SimpleperfExampleWithNative/app/
H A Dprofiling.gradle22 excludes += exclude_abis

123