Home
last modified time | relevance | path

Searched refs:sourceDir (Results 1 – 25 of 42) sorted by relevance

12

/external/syzkaller/sys/syz-extract/
Dlinux.go50 kernelDir := arch.sourceDir
82 sourceDir := arch.sourceDir
93 "-I" + sourceDir + "/arch/" + headerArch + "/include",
97 "-I" + sourceDir + "/include",
98 "-I" + sourceDir + "/arch/" + headerArch + "/include/uapi",
100 "-I" + sourceDir + "/include/uapi",
102 "-I" + sourceDir,
103 "-include", sourceDir + "/include/linux/kconfig.h",
107 args = append(args, "-I"+sourceDir+"/"+incdir)
Dnetbsd.go50 return filepath.Join(arch.sourceDir, "sys", "arch", machine, "include")
59 "-I", filepath.Join(arch.sourceDir, "sys"),
60 "-I", filepath.Join(arch.sourceDir, "sys", "sys"),
61 "-I", filepath.Join(arch.sourceDir, "sys", "arch", "amd64"),
62 "-I", filepath.Join(arch.sourceDir, "common", "include"),
63 "-I", filepath.Join(arch.sourceDir, "sys", "compat", "linux", "common"),
67 args = append(args, "-I"+filepath.Join(arch.sourceDir, incdir))
Dfreebsd.go28 if err := os.Symlink(filepath.Join(arch.sourceDir, "sys", "amd64", "include"),
32 if err := os.Symlink(filepath.Join(arch.sourceDir, "sys", "x86", "include"),
45 "-I", filepath.Join(arch.sourceDir, "sys"),
46 "-I", filepath.Join(arch.sourceDir, "sys", "sys"),
47 "-I", filepath.Join(arch.sourceDir, "sys", "amd64"),
51 args = append(args, "-I"+filepath.Join(arch.sourceDir, incdir))
/external/cldr/tools/java/org/unicode/cldr/tool/
DToolUtilities.java44 …static public void generateBat(String sourceDir, String sourceFile, String targetDir, String targe… in generateBat() argument
45 …generateBat(sourceDir, sourceFile, targetDir, targetFile, new CldrUtility.SimpleLineComparator(0)); in generateBat()
48 …static public void generateBat(String sourceDir, String sourceFile, String targetDir, String targe… in generateBat() argument
55 String fullSource = sourceDir + File.separator + sourceFile; in generateBat()
58 if (!new File(sourceDir, sourceFile).exists()) { in generateBat()
DGenerateCldrCollationTests.java26 String sourceDir; field in GenerateCldrCollationTests
51 …GenerateCldrCollationTests(String sourceDir, String localeRegex, Set<String> locales) throws Excep… in GenerateCldrCollationTests() argument
52 this.sourceDir = sourceDir; in GenerateCldrCollationTests()
53 Set<String> s = GenerateCldrTests.getMatchingXMLFiles(sourceDir, localeRegex); in GenerateCldrCollationTests()
112 CollationMapper mapper = new CollationMapper(sourceDir, null); in getCollationRules()
DGenerateCldrDateTimeTests.java46 GenerateCldrDateTimeTests(String sourceDir, String localeRegex, boolean doResolved) { in GenerateCldrDateTimeTests() argument
47 this.cldrFactory = Factory.make(sourceDir, ".*"); in GenerateCldrDateTimeTests()
49 Set<String> s = GenerateCldrTests.getMatchingXMLFiles(sourceDir, localeRegex); in GenerateCldrDateTimeTests()
DCompareData.java53 String sourceDir = options[SOURCEDIR].value + "common/main/"; in main() local
54 System.out.println(new File(sourceDir).getCanonicalPath()); in main()
58 cldrFactory = Factory.make(sourceDir, options[MATCH].value); in main()
DChartDelta.java320 File sourceDir = sourceDirs.get(0); in writeLdml() local
321 String sourceDirLeaf = sourceDir.getName(); in writeLdml()
395 addPathDiff(sourceDir, old, current, locale, ph, diff); in writeLdml()
397 … addValueDiff(sourceDir, oldValue, currentValue, locale, ph, diff, diffAll); in writeLdml()
484 …private void addPathDiff(File sourceDir, CLDRFile old, CLDRFile current, String locale, PathHeader… in addPathDiff() argument
496 String parentAndName = parentAndName(sourceDir, locale); in addPathDiff()
537 private String parentAndName(File sourceDir, String locale) { in parentAndName() argument
538 return sourceDir.getName() + "/" + locale + ".xml"; in parentAndName()
541 …private void addValueDiff(File sourceDir, String valueOld, String valueCurrent, String locale, Pat… in addValueDiff() argument
546 String parentAndName = parentAndName(sourceDir, locale); in addValueDiff()
/external/cldr/tools/java/org/unicode/cldr/icu/
DRbnfMapper.java13 private File sourceDir; field in RbnfMapper
17 public RbnfMapper(File sourceDir, File specialsDir) { in RbnfMapper() argument
18 this.sourceDir = sourceDir; in RbnfMapper()
36 File file = new File(sourceDir, locale + ".xml"); in fillFromCldr()
119 return MapperUtils.getNames(sourceDir); in getAvailable()
DBreakIteratorMapper.java22 private String sourceDir; field in BreakIteratorMapper
30 public BreakIteratorMapper(String sourceDir, Factory specialFactory) { in BreakIteratorMapper() argument
31 this.sourceDir = sourceDir; in BreakIteratorMapper()
43 File file = new File(sourceDir, locale + ".xml"); in fillFromCldr()
DCollationMapper.java31 private String sourceDir; field in CollationMapper
55 public CollationMapper(String sourceDir, Factory specialFactory) { in CollationMapper() argument
56 this.sourceDir = sourceDir; in CollationMapper()
68 File file = new File(sourceDir, locale + ".xml"); in fillFromCldr()
238 return MapperUtils.getNames(sourceDir); in getAvailable()
DMapperUtils.java142 public static List<String> getNames(String sourceDir) { in getNames() argument
143 return getNames(new File(sourceDir)); in getNames()
151 public static List<String> getNames(File sourceDir) { in getNames() argument
153 for (String filename : sourceDir.list()) { in getNames()
DBcp47Mapper.java23 private String sourceDir; field in Bcp47Mapper
26 sourceDir = bcp47Dir; in Bcp47Mapper()
40 for (File file : new File(sourceDir).listFiles()) { in fillFromCldr()
70 MapperUtils.parseFile(new File(sourceDir, filename + ".xml"), handler); in fillFromFile()
DNewLdml2IcuConverter.java84 private String sourceDir; field in NewLdml2IcuConverter
145 sourceDir = options.get("sourcedir").getValue(); in processArgs()
232 Factory factory = Factory.make(sourceDir, ".*", DraftStatus.contributed); in processArgs()
243 mapper = new BreakIteratorMapper(sourceDir, specialFactory); in processArgs()
246 mapper = new CollationMapper(sourceDir, specialFactory); in processArgs()
249 mapper = new RbnfMapper(new File(sourceDir), specialsDir); in processArgs()
265 Bcp47Mapper mapper = new Bcp47Mapper(sourceDir); in processBcp47Data()
275 String dir = options.get("supplementaldir").doesOccur() ? supplementalDir : sourceDir; in processSupplemental()
DCheckIBMCoverage.java48 private String sourceDir = null; field in CheckIBMCoverage
105 sourceDir = options[SOURCEDIR].value; in processArgs()
124 } else if (sourceDir != null) { in processArgs()
133 File myDir = new File(sourceDir); in processArgs()
284 …Node node = LDMLUtilities.getFullyResolvedLDML(sourceDir + "/../collation", locale, false, true, f… in processFile()
306 Factory cldrFactory = Factory.make(sourceDir, "xml"); in check()
/external/deqp/scripts/
Dgen_android_bp.py122 sourceDir = posixpath.dirname(sourceFile)
124 if not sourceDir in seenDirs:
125 sourceDirs.append(sourceDir)
126 seenDirs.add(sourceDir)
/external/cldr/tools/c/genldml/
Dtxt2ldml.pl20 "--sourcedir=s" => \$sourceDir,
35 usage() unless defined $sourceDir;
61 opendir(DIR,$sourceDir);
168 …cmd("$prefix $genrbExec --sourcedir $sourceDir --package-name $tempPackage --destdir $tempDir --en…
Dgenindex.pl19 "--sourcedir=s" => \$sourceDir,
25 usage() unless defined $sourceDir;
36 opendir(DIR,$sourceDir);
DfilterRB.pl41 "--srcdir=s" => \$sourceDir,
47 usage() unless defined $sourceDir;
53 $infile = $sourceDir."/".$srcFileName;
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/aosp/
DRepackagingTransform.java156 Path sourceDir = optionSet.valueOf(sourceDirOption); in main() local
233 .execute(new TransformRules(sourceDir, targetDir, ruleBuilder.build())); in main()
249 private final Path sourceDir; field in RepackagingTransform.TransformRules
253 TransformRules(Path sourceDir, Path targetDir, List<Rule> rules) { in TransformRules() argument
254 this.sourceDir = sourceDir; in TransformRules()
261 return new DirectoryInputFileGenerator(sourceDir.toFile()); in getInputFileGenerator()
/external/smali/smali/
Dbuild.gradle66 for (sourceDir in (sourceDirs + testSourceDirs)) {
67 excludeDirs.remove(sourceDir);
68 while ((sourceDir = sourceDir.getParentFile()) != null) {
69 excludeDirs.remove(sourceDir);
/external/cldr/tools/java/org/unicode/cldr/util/
DLDMLUtilities.java69 public static Document getFullyResolvedLDML(String sourceDir, String locale, in getFullyResolvedLDML() argument
72 …return getFullyResolvedLDML(sourceDir, locale, ignoreRoot, ignoreUnavailable, ignoreIfNoneAvailabl… in getFullyResolvedLDML()
76 private static Document getFullyResolvedLDML(String sourceDir, String locale, in getFullyResolvedLDML() argument
82 String key = "SRC:" + sourceDir + File.separator + locale + ".xml"; in getFullyResolvedLDML()
91 full = parse(sourceDir + File.separator + "root.xml", ignoreRoot); in getFullyResolvedLDML()
124 full = resolveAliases(full, sourceDir, locale, ignoreDraft, stack); in getFullyResolvedLDML()
142 String fileName = sourceDir + File.separator + loc + ".xml"; in getFullyResolvedLDML()
160 mergeLDMLDocuments(full, doc, xpath, loc, sourceDir, ignoreDraft, false); in getFullyResolvedLDML()
217 full = resolveAliases(full, sourceDir, locale, ignoreDraft, stack); in getFullyResolvedLDML()
617 String thisName, String sourceDir, boolean ignoreDraft, in mergeLDMLDocuments() argument
[all …]
/external/smali/smalidea/
Dbuild.gradle168 for (sourceDir in (sourceDirs + testSourceDirs)) {
169 excludeDirs.remove(sourceDir);
170 while ((sourceDir = sourceDir.getParentFile()) != null) {
171 excludeDirs.remove(sourceDir);
/external/icu/icu4c/source/tools/ctestfw/
Duperf.cpp87 fileName(NULL), sourceDir("."), in UPerfTest()
103 fileName(NULL), sourceDir("."), in UPerfTest()
145 sourceDir = options[SOURCEDIR].value; in init()
192 ucbuf_resolveFileName(sourceDir, fileName, NULL, &len, &status); in init()
201 ucbuf_resolveFileName(sourceDir, fileName, resolvedFileName, &len, &status); in init()
/external/icu/icu4c/source/tools/gensprep/
DfilterRFC3454.pl37 "--sourcedir=s" => \$sourceDir,
63 usage() unless defined $sourceDir;
68 $infile = $sourceDir."/".$srcFileName;

12