Searched refs:replacer (Results 1 - 12 of 12) sorted by path

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DUtils.java54 and a string to replace with, replacer,
56 You can use replacer==null to remove replacee from the string.
61 public static String replace(String src, String replacee, String replacer) { argument
67 if ( replacer!=null ) {
68 result.append(replacer);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/icu/icu4c/source/i18n/
H A Dfuncrepl.cpp28 * Construct a replacer that takes the output of the given
29 * replacer, passes it through the given transliterator, and emits
35 replacer = adoptedReplacer;
46 replacer = other.replacer->clone();
54 delete replacer;
84 // First delegate to subordinate replacer
85 int32_t len = replacer->toReplacer()->replace(text, start, limit, cursor);
104 rule.append(replacer->toReplacer()->toReplacerPattern(str, escapeUnprintable));
121 replacer
[all...]
H A Dfuncrepl.h26 * A replacer that calls a transliterator to generate its output text.
28 * UnicodeReplacer object. That is, this replacer wraps another
29 * replacer with a transliterator.
43 * The replacer object. This generates text that is then
46 UnicodeFunctor* replacer; member in class:FunctionReplacer
51 * Construct a replacer that takes the output of the given
52 * replacer, passes it through the given transliterator, and emits
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DFunctionReplacer.java14 * A replacer that calls a transliterator to generate its output text.
16 * UnicodeReplacer object. That is, this replacer wraps another
17 * replacer with a transliterator.
28 * The replacer object. This generates text that is then
31 private UnicodeReplacer replacer; field in class:FunctionReplacer
34 * Construct a replacer that takes the output of the given
35 * replacer, passes it through the given transliterator, and emits
41 replacer = theReplacer;
52 // First delegate to subordinate replacer
53 int len = replacer
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DFreeBox.java61 for (Box replacer : replacers) {
62 replacer.getBox(os);
84 for (Box replacer : replacers) {
85 size += replacer.getSize();
/external/v8/src/
H A Djson.js50 function SerializeArray(value, replacer, stack, indent, gap) {
59 var strP = JSONSerialize($String(i), value, replacer, stack,
80 function SerializeObject(value, replacer, stack, indent, gap) {
87 if (IS_ARRAY(replacer)) {
88 var length = replacer.length;
90 if (%_CallFunction(replacer, i, ObjectHasOwnProperty)) {
91 var p = replacer[i];
92 var strP = JSONSerialize(p, value, replacer, stack, indent, gap);
104 var strP = JSONSerialize(p, value, replacer, stack, indent, gap);
128 function JSONSerialize(key, holder, replacer, stac
[all...]
/external/v8/test/mjsunit/
H A Ddebug-stepout-to-builtin.js64 function replacer(key, value) { function
75 JSON.stringify(obj, replacer);
H A Dstring-replace.js197 function replacer(m,i,s) { function
206 "abaz", /a./g, replacer);
209 "abaz", /a(.)/g, replacer);
/external/v8/test/mjsunit/regress/
H A Dregress-752.js32 function replacer(key, value) { function
36 assertEquals("[false]", JSON.stringify([42], replacer));

Completed in 394 milliseconds