HomeSort by relevance Sort by last modified time
    Searched refs:replacer (Results 1 - 25 of 44) sorted by null

1 2

  /external/icu/android_icu4j/src/main/java/android/icu/text/
FunctionReplacer.java 15 * A replacer that calls a transliterator to generate its output text.
17 * UnicodeReplacer object. That is, this replacer wraps another
18 * replacer with a transliterator.
29 * The replacer object. This generates text that is then
32 private UnicodeReplacer replacer; field in class:FunctionReplacer
35 * Construct a replacer that takes the output of the given
36 * replacer, passes it through the given transliterator, and emits
42 replacer = theReplacer;
53 // First delegate to subordinate replacer
54 int len = replacer.replace(text, start, limit, cursor)
    [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
FunctionReplacer.java 14 * 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.replace(text, start, limit, cursor)
    [all...]
  /external/icu/icu4c/source/i18n/
funcrepl.cpp 28 * 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->setData(d)
    [all...]
funcrepl.h 26 * 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/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
Utils.java 54 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) {
67 if ( replacer!=null ) {
68 result.append(replacer);
  /external/v8/test/mjsunit/
json-replacer-order.js 10 var replacer = Object.defineProperty([], 0, {
22 JSON.stringify('', replacer, space);
json-stringify-holder.js 10 function replacer(key, value) { function
17 assertEquals(`{"a":true,"replaced":true}`, JSON.stringify(object, replacer));
59 function replacer(key, value) {
67 JSON.stringify(object, replacer));
debug-stepout-to-builtin.js 64 function replacer(key, value) { function
75 JSON.stringify(obj, replacer);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
FreeBox.java 61 for (Box replacer : replacers) {
62 replacer.getBox(os);
84 for (Box replacer : replacers) {
85 size += replacer.getSize();
  /external/v8/test/mjsunit/regress/
regress-3135.js 17 // Order of the replacer array is followed.
22 // With a replacer array the value of the property is retrieved using [[Get]]
38 // Arrays are not affected by the replacer array.
54 // Objects in the replacer array are ignored.
regress-752.js 32 function replacer(key, value) { function
36 assertEquals("[false]", JSON.stringify([42], replacer));
  /frameworks/base/media/mca/effect/java/android/media/effect/effects/
BackDropperEffect.java 60 "@filter BackDropperFilter replacer {\n" +
68 "@connect foreground[frame] => replacer[video];\n" +
69 "@connect background[video] => replacer[background];\n" +
70 "@connect replacer[video] => output[frame];\n";
85 Filter replacer = mGraph.getFilter("replacer"); local
86 replacer.setInputValue("learningDoneListener", mLearningListener);
  /external/v8/test/webkit/resources/
json2-es5-compat.js 18 JSON.stringify(value, replacer, space)
21 replacer an optional parameter that determines how object
58 You can provide an optional replacer method. It will be passed the
64 If the replacer parameter is an array of strings, then it will be
66 such that only members with keys listed in the replacer array are
72 a replacer function to replace those with JSON values.
241 // If we were called with a replacer function, then call the replacer to
315 // If the replacer is an array, use it to select the members to be stringified.
356 JSON.stringify = function (value, replacer, space)
    [all...]
  /external/v8/src/compiler/
liveness-analyzer.cc 54 void LivenessAnalyzer::Run(NonLiveFrameStateSlotReplacer* replacer) {
82 block->Process(&working_area, replacer);
95 NonLiveFrameStateSlotReplacer* replacer) {
110 if (replacer != nullptr) {
111 replacer->ClearNonLiveFrameStateSlots(entry.node(), result);
ast-graph-builder.cc 668 NonLiveFrameStateSlotReplacer replacer(
673 replacer.MarkPermanentlyLive(arguments->index());
675 liveness_analyzer()->Run(&replacer);
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
ReplaceMethodCallsAdapter.java 224 for (MethodReplacer replacer : METHOD_REPLACERS) {
225 if (replacer.isNeeded(owner, name, desc, sourceClass)) {
254 for (MethodReplacer replacer : METHOD_REPLACERS) {
255 if (replacer.isNeeded(owner, name, desc, mOriginalClassName)) {
257 replacer.replace(mi);
  /external/v8/src/
json-stringifier.h 21 Handle<Object> replacer,
27 bool InitializeReplacer(Handle<Object> replacer);
json-stringifier.cc 91 Handle<Object> replacer,
93 if (!InitializeReplacer(replacer)) return MaybeHandle<Object>();
113 bool JsonStringifier::InitializeReplacer(Handle<Object> replacer) {
116 Maybe<bool> is_array = Object::IsArray(replacer);
124 Object::GetLengthFromArrayLike(isolate_, replacer), false);
131 isolate_, element, Object::GetElement(isolate_, replacer, i), false);
150 } else if (replacer->IsCallable()) {
151 replacer_function_ = Handle<JSReceiver>::cast(replacer);
  /external/v8/test/mjsunit/es6/
proxies-json.js 281 // Replacer is a callable proxy
305 // Replacer is an arraylike proxy
321 // Replacer is an arraylike proxy and object is an array
337 // Replacer is an arraylike proxy with a non-trivial length
351 // Replacer is an arraylike proxy with a bogus length
365 // Replacer returns a non-callable non-arraylike proxy
371 var replacer = (key, val) => key === "1" ? proxy : val;
373 assertEquals('["foo",{"baz":5}]', JSON.stringify(object, replacer));
381 // Replacer returns an arraylike proxy
387 var replacer = (key, val) => key === "1" ? proxy : val
    [all...]
  /external/v8/test/unittests/compiler/
liveness-analyzer-unittest.cc 42 NonLiveFrameStateSlotReplacer replacer(&cache,
45 analyzer()->Run(&replacer);
  /prebuilts/tools/common/m2/repository/com/thoughtworks/xstream/xstream/1.4.8/
xstream-1.4.8.jar 
  /external/v8/test/webkit/
JSON-stringify-replacer.js 24 description("Test to ensure correct behaviour of replacer functions in JSON.stringify");
  /external/opencv3/modules/core/src/opencl/runtime/generator/
common.py 8 def replacer(match): function in function:remove_comments
18 return re.sub(pattern, replacer, s)
  /packages/apps/LegacyCamera/src/com/android/camera/
EffectsRecorder.java 497 Filter replacer = mRunner.getGraph().getFilter("replacer"); local
498 replacer.setInputValue("mirrorBg", true);
    [all...]
  /external/v8/src/js/
string.js 199 var replacer = search[replaceSymbol];
200 if (!IS_UNDEFINED(replacer)) {
201 return %_Call(replacer, search, this, replace);

Completed in 997 milliseconds

1 2