Home
last modified time | relevance | path

Searched refs:writeXMLAsync (Results 1 – 12 of 12) sorted by relevance

/expo/packages/@expo/config-plugins/src/android/__tests__/
H A DStyles-test.ts3 import { writeXMLAsync } from '../../utils/XML';
52 await writeXMLAsync({ path: stylesPath, xml });
70 await writeXMLAsync({ path: stylesPath, xml });
/expo/packages/@expo/config-plugins/src/utils/__tests__/
H A DXML-test.ts6 import { escapeAndroidString, format, unescapeAndroidString, writeXMLAsync } from '../XML';
70 await writeXMLAsync({ path: stringsPath, xml: stringsJSON });
/expo/packages/@expo/config-plugins/src/plugins/
H A DwithAndroidBaseMods.ts8 import { parseXMLAsync, writeXMLAsync } from '../utils/XML';
187 await writeXMLAsync({ path: filePath, xml: modResults });
217 await writeXMLAsync({ path: filePath, xml: modResults });
246 await writeXMLAsync({ path: filePath, xml: modResults });
289 await writeXMLAsync({ path: filePath, xml: modResults });
/expo/packages/@expo/config-plugins/build/utils/
H A DXML.js12 exports.writeXMLAsync = writeXMLAsync;
42 async function writeXMLAsync(options) { function
H A DXML.d.ts7 export declare function writeXMLAsync(options: { function
H A DXML.js.map1writeXMLAsync","options","xml","format","fs","promises","mkdir","path","dirname","recursive","writ…
/expo/packages/@expo/prebuild-config/src/plugins/unversioned/expo-splash-screen/
H A DwithAndroidSplashDrawables.ts57 await XML.writeXMLAsync({ path: filePath, xml: xmlContent });
/expo/packages/@expo/prebuild-config/build/plugins/unversioned/expo-splash-screen/
H A DwithAndroidSplashDrawables.js56 await _configPlugins().XML.writeXMLAsync({
H A DwithAndroidSplashDrawables.js.map1writeXMLAsync","path","xml"],"sources":["../../../../src/plugins/unversioned/expo-splash-screen/wi…
/expo/packages/@expo/config-plugins/build/plugins/
H A DwithAndroidBaseMods.js251 await (0, _XML().writeXMLAsync)({
299 await (0, _XML().writeXMLAsync)({
345 await (0, _XML().writeXMLAsync)({
401 await (0, _XML().writeXMLAsync)({
H A DwithAndroidBaseMods.js.map1writeXMLAsync","xml","colors","Colors","getProjectColorsXMLPathAsync","colorsNight","kind","styles…
/expo/packages/@expo/config-plugins/src/utils/
H A DXML.ts14 export async function writeXMLAsync(options: { path: string; xml: any }): Promise<void> { function