Lines Matching refs:filePath

110       return { filePath: '', modResults: {} };
121 async read(filePath, config) {
123 return await Manifest.readAndroidManifestAsync(filePath);
131 async write(filePath, { modResults, modRequest: { introspect } }) {
133 await Manifest.writeAndroidManifestAsync(filePath, sortAndroidManifest(modResults));
144 async read(filePath, config) {
146 return await Properties.parsePropertiesFile(await readFile(filePath, 'utf8'));
154 async write(filePath, { modResults, modRequest: { introspect } }) {
156 await writeFile(filePath, Properties.propertiesListToString(modResults));
175 async read(filePath, config) {
177 return await Resources.readResourcesXMLAsync({ path: filePath });
185 async write(filePath, { modResults, modRequest: { introspect } }) {
187 await writeXMLAsync({ path: filePath, xml: modResults });
205 async read(filePath, { modRequest: { introspect } }) {
207 return await Resources.readResourcesXMLAsync({ path: filePath });
215 async write(filePath, { modResults, modRequest: { introspect } }) {
217 await writeXMLAsync({ path: filePath, xml: modResults });
234 async read(filePath, config) {
236 return await Resources.readResourcesXMLAsync({ path: filePath });
244 async write(filePath, { modResults, modRequest: { introspect } }) {
246 await writeXMLAsync({ path: filePath, xml: modResults });
263 async read(filePath, config) {
269 path: filePath,
287 async write(filePath, { modResults, modRequest: { introspect } }) {
289 await writeXMLAsync({ path: filePath, xml: modResults });
297 async read(filePath) {
298 return Paths.getFileInfo(filePath);
300 async write(filePath, { modResults: { contents } }) {
301 await writeFile(filePath, contents);
309 async read(filePath) {
310 return Paths.getFileInfo(filePath);
312 async write(filePath, { modResults: { contents } }) {
313 await writeFile(filePath, contents);
321 async read(filePath) {
322 return Paths.getFileInfo(filePath);
324 async write(filePath, { modResults: { contents } }) {
325 await writeFile(filePath, contents);
333 async read(filePath) {
334 return Paths.getFileInfo(filePath);
336 async write(filePath, { modResults: { contents } }) {
337 await writeFile(filePath, contents);
345 async read(filePath) {
346 return Paths.getFileInfo(filePath);
348 async write(filePath, { modResults: { contents } }) {
349 await writeFile(filePath, contents);