Lines Matching refs:prefix
8 export function getCommonExpoModulesTransforms(prefix: string): FileTransforms {
20 replaceWith: `${prefix}$1$2$3`,
25 replaceWith: `${prefix}$1$2+$3$4`,
30 replaceWith: `${prefix}EXWebGL$1.def`,
36 replaceWith: `${prefix}React`,
41 replaceWith: `${prefix}$1`,
49 replaceWith: `import ${prefix}$1$2`,
54 replaceWith: `@objc(${prefix}$1`,
59 replaceWith: (_, p1, p2) => `${p1 ?? ''}${p1 ? prefix : prefix.toLowerCase()}R${p2}`,
65 replaceWith: `"${prefix}$1"`,
74 replaceWith: `#$1<${prefix}$2$3/`,
79 replaceWith: `#$1<$2/${prefix}$3$4.h>`,
85 replaceWith: `#import "${prefix}$1$2-Swift.h"`,
90 replaceWith: `@import ${prefix}$1$2`,
95 find: new RegExp(`#(import|include) <(ReactCommon|jsi)/(${prefix})?`, 'g'),
96 replaceWith: `#$1 <${prefix}$2/${prefix}`,
102 replaceWith: `namespace ${prefix}$1`,
108 replaceWith: `${prefix}$1::`,
115 replaceWith: `using namespace ${prefix}React;`,
120 replaceWith: `::${prefix}React$1`,
125 replaceWith: `namespace ${prefix}React$1`,
130 replaceWith: `$1${prefix}$3`,
142 find: new RegExp(`[\b/](!?${prefix})(\w+-umbrella\.h)\b`, 'g'),
143 replaceWith: `${prefix}$1`,
150 …className = $1;\n return [className hasPrefix:@"${prefix}"] ? [className substringFromIndex:${pre…
157 prefix: string,
189 addDependency(podspec, podspec.name.replace(prefix, ''));