HomeSort by relevance Sort by last modified time
    Searched refs:Stringify (Results 1 - 17 of 17) sorted by null

  /external/v8/src/
d8.js 7 // A more universal stringify that supports more types than JSON.
25 function Stringify(x, depth) {
50 {}.hasOwnProperty.call(x, i) ? Stringify(x[i], depth - 1) : "");
65 if (IS_SYMBOL(name)) name = "[" + Stringify(name) + "]";
67 props.push(name + ": " + Stringify(desc.value, depth - 1));
70 var getter = Stringify(desc.get);
74 var setter = Stringify(desc.set);
90 return '[' + proxy_type + ' Proxy ' + Stringify(info_object, depth-1) + ']';
json-stringifier.h 21 MUST_USE_RESULT MaybeHandle<Object> Stringify(Handle<Object> object);
192 MaybeHandle<Object> BasicJsonStringifier::Stringify(Handle<Object> object) {
210 return stringifier.Stringify(object);
  /external/v8/src/runtime/
runtime-json.cc 35 stringifier.Stringify(object));
  /external/clang/lib/Frontend/
HeaderIncludeGen.cpp 55 Lexer::Stringify(Pathname);
  /external/clang/include/clang/Lex/
Lexer.h 228 /// Stringify - Convert the specified string into a C string by escaping '\'
231 static std::string Stringify(StringRef Str, bool Charify = false);
233 /// Stringify - Convert the specified string into a C string by escaping '\'
235 static void Stringify(SmallVectorImpl<char> &Str);
  /external/clang/lib/Lex/
MacroArgs.cpp 204 // Stringify all the tokens.
226 std::string Str = Lexer::Stringify(TokStr);
Lexer.cpp 200 /// Stringify - Convert the specified string into a C string, with surrounding
202 std::string Lexer::Stringify(StringRef Str, bool Charify) {
214 /// Stringify - Convert the specified string into a C string by escaping '\'
216 void Lexer::Stringify(SmallVectorImpl<char> &Str) {
    [all...]
PPMacroExpansion.cpp     [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
pointer.h 344 //!@name Stringify
347 //! Stringify the pointer into string representation.
353 bool Stringify(OutputStream& os) const {
354 return Stringify<false, OutputStream>(os);
357 //! Stringify the pointer into URI fragment representation.
364 return Stringify<true, OutputStream>(os);
    [all...]
  /external/mdnsresponder/mDNSShared/
CommonServices.h 703 /*! @function Stringify
705 @abstract Stringify's an expression.
709 Stringify macros to process raw text passed via -D options to C string constants. The double-wrapping is necessary
718 printf( "%s", Stringify( kMyConstant ) ); // Prints "kMyConstant"
728 printf( "%s", Stringify( kMyConstant ) ); // Prints "kMyConstant"
734 #define Stringify( X ) # X
735 #define StringifyExpansion( X ) Stringify( X )
    [all...]
  /external/v8/test/mjsunit/
json.js 233 // Stringify
236 assertEquals(expected, JSON.stringify(input));
237 assertEquals(expected, JSON.stringify(input, null, 0));
257 assertEquals("[\n 1,\n 2,\n 3\n]", JSON.stringify([1, 2, 3], null, 1));
258 assertEquals("[\n 1,\n 2,\n 3\n]", JSON.stringify([1, 2, 3], null, 2));
260 JSON.stringify([1, 2, 3], null, new Number(2)));
261 assertEquals("[\n^1,\n^2,\n^3\n]", JSON.stringify([1, 2, 3], null, "^"));
263 JSON.stringify([1, 2, 3], null, new String("^")));
265 JSON.stringify([1, 2, [3, [4], 5], 6, 7], null, 1));
266 assertEquals("[]", JSON.stringify([], null, 1))
    [all...]
  /external/v8/test/webkit/resources/
json2-es5-compat.js 15 This file creates a global JSON object containing two methods: stringify
18 JSON.stringify(value, replacer, space)
73 JSON.stringify(undefined) returns undefined.
85 text = JSON.stringify(['e', {pluribus: 'unum'}]);
89 text = JSON.stringify(['e', {pluribus: 'unum'}], null, '\t');
92 text = JSON.stringify([new Date()], function (key, value) {
158 lastIndex, length, parse, prototype, push, replace, slice, stringify,
295 // The value is an array. Stringify every element. Use null as a placeholder
353 // If the JSON object does not yet have a stringify method, give it one.
355 if (typeof JSON.stringify !== 'function')
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
pointertest.cpp 395 TEST(Pointer, Stringify) {
418 EXPECT_TRUE(p.Stringify(s));
421 // Stringify to URI fragment
    [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp     [all...]
  /external/chromium-trace/catapult/third_party/mocha/
mocha.js 874 return JSON.stringify(this, function(key, val){
    [all...]
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/node_modules/mocha/
mocha.js 831 return JSON.stringify(this, function(key, val){
    [all...]
  /external/chromium-trace/catapult/tracing/third_party/mocha/
mocha.js 874 return JSON.stringify(this, function(key, val){
    [all...]

Completed in 335 milliseconds