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

  /external/v8/src/
d8.js 8 // A more universal stringify that supports more types than JSON.
26 function Stringify(x, depth) {
51 {}.hasOwnProperty.call(x, i) ? Stringify(x[i], depth - 1) : "");
66 if (IS_SYMBOL(name)) name = "[" + Stringify(name) + "]";
68 props.push(name + ": " + Stringify(desc.value, depth - 1));
71 var getter = Stringify(desc.get);
75 var setter = Stringify(desc.set);
91 return '[' + proxy_type + ' Proxy ' + Stringify(info_object, depth-1) + ']';
94 return Stringify;
json-stringifier.cc 90 MaybeHandle<Object> JsonStringifier::Stringify(Handle<Object> object,
607 // if we tried to stringify such an array.
d8.cc 417 v8::String::Utf8Value str(Stringify(isolate, result));
    [all...]
api.cc     [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/clang/lib/Lex/
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...]
  /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/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 790 milliseconds