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

  /external/clang/lib/Frontend/
HeaderIncludeGen.cpp 112 Lexer::Stringify(Filename);
PrintPreprocessedOutput.cpp 272 Lexer::Stringify(CurFilename);
  /external/clang/include/clang/Lex/
Lexer.h 227 /// Stringify - Convert the specified string into a C string by escaping '\'
230 static std::string Stringify(const std::string &Str, bool Charify = false);
232 /// Stringify - Convert the specified string into a C string by escaping '\'
234 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 796 return Lexer::Stringify(Path.str());
    [all...]
PPMacroExpansion.cpp     [all...]
Lexer.cpp 214 /// Stringify - Convert the specified string into a C string, with surrounding
216 std::string Lexer::Stringify(const std::string &Str, bool Charify) {
228 /// Stringify - Convert the specified string into a C string by escaping '\'
230 void Lexer::Stringify(SmallVectorImpl<char> &Str) {
825 // or the stringify operator ('#') this function will always return false;
    [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
228 assertEquals("true", JSON.stringify(true));
229 assertEquals("false", JSON.stringify(false));
230 assertEquals("null", JSON.stringify(null));
231 assertEquals("false", JSON.stringify({toJSON: function () { return false; }}));
232 assertEquals("4", JSON.stringify(4));
233 assertEquals('"foo"', JSON.stringify("foo"));
234 assertEquals("null", JSON.stringify(Infinity));
235 assertEquals("null", JSON.stringify(-Infinity));
236 assertEquals("null", JSON.stringify(NaN))
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp     [all...]

Completed in 106 milliseconds