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

  /external/clang/lib/Frontend/
HeaderIncludeGen.cpp 118 Lexer::Stringify(Filename);
  /external/clang/include/clang/Lex/
Lexer.h 228 /// Stringify - Convert the specified string into a C string by escaping '\'
231 static std::string Stringify(const std::string &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 205 // Stringify all the tokens.
227 std::string Str = Lexer::Stringify(TokStr);
PPMacroExpansion.cpp     [all...]
Lexer.cpp 200 /// Stringify - Convert the specified string into a C string, with surrounding
202 std::string Lexer::Stringify(const std::string &Str, bool Charify) {
214 /// Stringify - Convert the specified string into a C string by escaping '\'
216 void Lexer::Stringify(SmallVectorImpl<char> &Str) {
    [all...]
  /external/v8/src/
json-stringifier.h 20 MUST_USE_RESULT MaybeHandle<Object> Stringify(Handle<Object> object);
254 MaybeHandle<Object> BasicJsonStringifier::Stringify(Handle<Object> object) {
279 return stringifier.Stringify(object);
d8.js 502 json += ',"command":' + JSON.stringify(this.command);
510 json += JSON.stringify(this.arguments);
    [all...]
runtime.cc     [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 226 // Stringify
229 assertEquals(expected, JSON.stringify(input));
230 assertEquals(expected, JSON.stringify(input, null, 0));
250 assertEquals("[\n 1,\n 2,\n 3\n]", JSON.stringify([1, 2, 3], null, 1));
251 assertEquals("[\n 1,\n 2,\n 3\n]", JSON.stringify([1, 2, 3], null, 2));
253 JSON.stringify([1, 2, 3], null, new Number(2)));
254 assertEquals("[\n^1,\n^2,\n^3\n]", JSON.stringify([1, 2, 3], null, "^"));
256 JSON.stringify([1, 2, 3], null, new String("^")));
258 JSON.stringify([1, 2, [3, [4], 5], 6, 7], null, 1));
259 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...]
  /external/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp     [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/mocha/
mocha.js 874 return JSON.stringify(this, function(key, val){
    [all...]

Completed in 512 milliseconds