Home
last modified time | relevance | path

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

/external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/
DIcu4jTransform.java19 import static com.google.currysrc.api.process.Rules.createOptionalRule;
947 createOptionalRule(new ModifyQualifiedNames(ORIGINAL_ICU_PACKAGE, ANDROID_ICU_PACKAGE)), in getRepackagingRules()
949 createOptionalRule(new ModifyStringLiterals(ORIGINAL_ICU_PACKAGE, ANDROID_ICU_PACKAGE)), in getRepackagingRules()
951 createOptionalRule(new ModifyStringLiterals("com/ibm/icu", "android/icu")), in getRepackagingRules()
970 createOptionalRule( in createTransformRules()
986 createOptionalRule(new HideDraftProvisionalInternal()), in createTransformRules()
1003 createOptionalRule(new RemoveJavaDocTags( in createTransformRules()
1006 createOptionalRule(new ReplaceIcuTags()), in createTransformRules()
1013 createOptionalRule(AddAnnotation.markerAnnotationFromFlatFile( in createTransformRules()
1017 createOptionalRule(AddAnnotation.markerAnnotationFromFlatFile( in createTransformRules()
[all …]
DIcu4jTestsTransform.java38 import static com.google.currysrc.api.process.Rules.createOptionalRule;
108 createOptionalRule(new ReplaceTextCommentScanner( in createTransformRules()
112 rules.add(createOptionalRule(new TranslateJcite.BeginEndTagsHandler())); in createTransformRules()
115 rules.add(createOptionalRule(new ShardingAnnotator())); in createTransformRules()
DIcu4jBasicTransform.java29 import static com.google.currysrc.api.process.Rules.createOptionalRule;
94 createOptionalRule(new ReplaceTextCommentScanner( in createTransformRules()
98 rules.add(createOptionalRule(new TranslateJcite.BeginEndTagsHandler())); in createTransformRules()
DCaptureDeprecatedElements.java44 import static com.google.currysrc.api.process.Rules.createOptionalRule;
103 return Lists.<Rule>newArrayList(createOptionalRule(captureTransformer)); in getRuleList()
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/aosp/
DRepackagingTransform.java19 import static com.google.currysrc.api.process.Rules.createOptionalRule;
182 createOptionalRule(new RenamePackage(originalPackage, androidPackage)), in main()
184 createOptionalRule(new ModifyQualifiedNames(originalPackage, androidPackage)), in main()
186 createOptionalRule(new ModifyStringLiterals(originalPackage, androidPackage)), in main()
188 createOptionalRule(new ModifyStringLiterals( in main()
203 ruleBuilder.add(createOptionalRule(processor)); in main()
212 ruleBuilder.add(createOptionalRule(processor)); in main()
225 ruleBuilder.add(createOptionalRule(processor)); in main()
234 ruleBuilder.add(createOptionalRule(processor)); in main()
242 ruleBuilder.add(createOptionalRule(processor)); in main()
[all …]
/external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/checker/
DCheckAndroidIcu4jSourceRules.java29 import static com.google.currysrc.api.process.Rules.createOptionalRule;
46 createOptionalRule(new CheckForBrokenJciteTag(publicMembers)) in CheckAndroidIcu4jSourceRules()
DRecordPublicApiRules.java49 import static com.google.currysrc.api.process.Rules.createOptionalRule;
71 return Collections.<Rule>singletonList(createOptionalRule(recordPublicApi)); in getRuleList()
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/
DRules.java43 public static Rule createOptionalRule(Processor processor) { in createOptionalRule() method in Rules