/external/icu4c/i18n/ |
D | funcrepl.cpp | 35 replacer = adoptedReplacer; in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() 46 replacer = other.replacer->clone(); in FunctionReplacer() 54 delete replacer; in ~FunctionReplacer() 85 int32_t len = replacer->toReplacer()->replace(text, start, limit, cursor); in replace() 104 rule.append(replacer->toReplacer()->toReplacerPattern(str, escapeUnprintable)); in toReplacerPattern() 121 replacer->setData(d); in setData()
|
D | funcrepl.h | 46 UnicodeFunctor* replacer; variable
|
/external/v8/src/ |
D | json.js | 64 function SerializeArray(value, replacer, stack, indent, gap) { argument 73 var strP = JSONSerialize($String(i), value, replacer, stack, 94 function SerializeObject(value, replacer, stack, indent, gap) { argument 101 if (IS_ARRAY(replacer)) { 102 var length = replacer.length; 104 if (%_CallFunction(replacer, i, ObjectHasOwnProperty)) { 105 var p = replacer[i]; 106 var strP = JSONSerialize(p, value, replacer, stack, indent, gap); 118 var strP = JSONSerialize(p, value, replacer, stack, indent, gap); 142 function JSONSerialize(key, holder, replacer, stack, indent, gap) { argument [all …]
|
/external/webkit/PerformanceTests/SunSpider/hosted/ |
D | json2.js | 356 JSON.stringify = function (value, replacer, space) { argument 385 rep = replacer; 386 if (replacer && typeof replacer !== 'function' && 387 (typeof replacer !== 'object' || 388 typeof replacer.length !== 'number')) {
|
/external/webkit/LayoutTests/fast/js/resources/ |
D | json2-es5-compat.js | 352 JSON.stringify = function (value, replacer, space) { argument 381 rep = replacer; 382 if (replacer && typeof replacer !== 'function' && 383 (typeof replacer !== 'object' || 384 typeof replacer.length !== 'number')) {
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/ |
D | Utils.java | 61 public static String replace(String src, String replacee, String replacer) { in replace() argument 67 if ( replacer!=null ) { in replace() 68 result.append(replacer); in replace()
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/ |
D | FreeBox.java | 61 for (Box replacer : replacers) { in getBox() 62 replacer.getBox(os); in getBox() 84 for (Box replacer : replacers) { in getSize() 85 size += replacer.getSize(); in getSize()
|
/external/v8/test/mjsunit/regress/ |
D | regress-752.js | 32 function replacer(key, value) { function 36 assertEquals("[false]", JSON.stringify([42], replacer));
|
/external/v8/test/mjsunit/ |
D | debug-stepout-to-builtin.js | 64 function replacer(key, value) { function 75 JSON.stringify(obj, replacer);
|
D | string-replace.js | 197 function replacer(m,i,s) { function 206 "abaz", /a./g, replacer); 209 "abaz", /a(.)/g, replacer);
|
/external/webkit/Source/JavaScriptCore/runtime/ |
D | JSONObject.cpp | 79 Stringifier(ExecState*, const Local<Unknown>& replacer, const Local<Unknown>& space); 200 Stringifier::Stringifier(ExecState* exec, const Local<Unknown>& replacer, const Local<Unknown>& spa… in Stringifier() argument 202 , m_replacer(replacer) in Stringifier() 842 Local<Unknown> replacer(exec->globalData(), exec->argument(1)); in JSONProtoFuncStringify() local 844 return JSValue::encode(Stringifier(exec, replacer, space).stringify(value).get()); in JSONProtoFuncStringify()
|
/external/webkit/Source/JavaScriptCore/ |
D | ChangeLog-2010-05-24 | 19482 JSON.stringify replacer array does not accept values that are not string primitives. 19485 Update the JSON stringifier to initialise its replacer array according to the most 19552 JSON.stringify replacer array does not accept values that are not string primitives. 19555 Update the JSON stringifier to initialise its replacer array according to the most 22297 JSON.stringify replacer returning undefined does not omit object properties 22300 Correct behaviour of stringify when using a replacer function that returns 22302 after the replacer function is called. This means that the replacer function 28043 actually call a replacer. 28048 allocate a number or string until we actually call toJSON or a replacer.
|
D | ChangeLog-2009-06-16 | 376 JSON.stringify function, including replacer functions and arrays and both 414 toJSON and replacer functions.
|