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

1 2

  /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.h 20 MUST_USE_RESULT MaybeHandle<Object> Stringify(Handle<Object> object,
d8.h 473 static Local<String> Stringify(Isolate* isolate, Local<Value> value);
json-stringifier.cc 90 MaybeHandle<Object> JsonStringifier::Stringify(Handle<Object> object,
607 // if we tried to stringify such an array.
d8.cc 550 v8::String::Utf8Value str(Stringify(isolate, result));
    [all...]
  /external/v8/src/builtins/
builtins-json.cc 31 // ES6 section 24.3.2 JSON.stringify.
39 stringifier.Stringify(object, replacer, indent));
  /external/clang/lib/Frontend/
HeaderIncludeGen.cpp 58 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);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/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);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/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);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/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);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/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);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/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);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/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);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/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);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/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...]
  /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...]
  /system/libvintf/test/
main.cpp 204 TEST_F(LibVintfTest, Stringify) {
    [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp     [all...]
  /external/v8/include/
v8.h     [all...]

Completed in 678 milliseconds

1 2