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

  /external/clang/lib/Frontend/
HeaderIncludeGen.cpp 116 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.
226 std::string Str = Lexer::Stringify(TokStr);
HeaderSearch.cpp     [all...]
PPMacroExpansion.cpp     [all...]
Lexer.cpp 206 /// Stringify - Convert the specified string into a C string, with surrounding
208 std::string Lexer::Stringify(const std::string &Str, bool Charify) {
220 /// Stringify - Convert the specified string into a C string by escaping '\'
222 void Lexer::Stringify(SmallVectorImpl<char> &Str) {
    [all...]
  /external/chromium_org/v8/src/
json-stringifier.h 19 MUST_USE_RESULT MaybeHandle<Object> Stringify(Handle<Object> object);
253 MaybeHandle<Object> BasicJsonStringifier::Stringify(Handle<Object> object) {
279 return stringifier.Stringify(object);
d8.js 506 json += ',"command":' + JSON.stringify(this.command);
514 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/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
chromevox_json.js 167 // The value is an array. Stringify every element. Use null as a
225 // If the JSON object does not yet have a stringify method, give it one.
227 if (typeof cvox.ChromeVoxJSON.stringify !== 'function') {
235 cvox.ChromeVoxJSON.stringify = function(value, replacer, space) {
237 // The stringify method takes a value and an optional replacer, and an
269 throw new Error('JSON.stringify');
  /external/chromium_org/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/chromium_org/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/chromium_org/third_party/sqlite/src/src/
vdbe.c 135 #define Stringify(P, enc) \
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp     [all...]

Completed in 434 milliseconds