Home
last modified time | relevance | path

Searched refs:inputPath (Results 1 – 8 of 8) sorted by relevance

/third_party/weex-loader/
Duglify-source.js22 function readCode(inputPath) { argument
23 if (fs.existsSync(inputPath)) {
24 const files = fs.readdirSync(inputPath)
26 const filePath = path.join(inputPath, file)
/third_party/parse5/packages/parse5/
Duglify-source.js22 function readCode(inputPath) { argument
23 if (fs.existsSync(inputPath)) {
24 const files = fs.readdirSync(inputPath);
26 const filePath = path.join(inputPath, file);
/third_party/skia/src/sksl/
DSkSLMain.cpp273 const SkSL::String& inputPath = args[1]; in processCommand() local
274 if (inputPath.ends_with(".vert")) { in processCommand()
276 } else if (inputPath.ends_with(".frag") || inputPath.ends_with(".sksl")) { in processCommand()
278 } else if (inputPath.ends_with(".rtb")) { in processCommand()
280 } else if (inputPath.ends_with(".rtcf")) { in processCommand()
282 } else if (inputPath.ends_with(".rts")) { in processCommand()
290 std::ifstream in(inputPath); in processCommand()
294 printf("error reading '%s'\n", inputPath.c_str()); in processCommand()
471 compiler.loadModule(kind, SkSL::Compiler::MakeModulePath(inputPath.c_str()), in processCommand()
476 SkSL::String baseName = base_name(inputPath, "", ".sksl"); in processCommand()
[all …]
/third_party/libphonenumber/tools/java/java-build/src/com/google/i18n/phonenumbers/buildtools/
DGeneratePhonePrefixData.java59 private final File inputPath; field in GeneratePhonePrefixData
74 public GeneratePhonePrefixData(File inputPath, AbstractPhonePrefixDataIOHandler ioHandler) in GeneratePhonePrefixData() argument
76 if (!inputPath.isDirectory()) { in GeneratePhonePrefixData()
78 + inputPath.getAbsolutePath()); in GeneratePhonePrefixData()
80 this.inputPath = inputPath; in GeneratePhonePrefixData()
235 File[] languageDirectories = inputPath.listFiles(); in createInputOutputMappings()
DGeneratePhonePrefixDataEntryPoint.java50 File inputPath = new File(args[1]); in start() local
57 GeneratePhonePrefixData dataGenerator = new GeneratePhonePrefixData(inputPath, ioHandler); in start()
DGenerateTimeZonesMapDataEntryPoint.java52 File inputPath = new File(args[1]); in start() local
59 …GenerateTimeZonesMapData generateTimeZonesMapData = new GenerateTimeZonesMapData(inputPath, ioHand… in start()
/third_party/weex-loader/src/
Dutil.js353 export function circularFile(inputPath, outputPath) { argument
354 if ((!inputPath) || (!outputPath)) {
357 fs.readdir(inputPath,function(err, files){
362 const inputFile = path.resolve(inputPath, file);
/third_party/typescript/scripts/
DgenerateLocalizedDiagnosticMessages.mjs13 const inputPath = args[0];
21 fs.readdir(inputPath, (err, files) => {
32 …const inputFilePath = path.join(inputPath, name, "diagnosticMessages", "diagnosticMessages.generat…