Home | History | Annotate | Download | only in tinyxml2

Lines Matching defs:LF

33 static const char LINE_FEED                = (char)0x0a;            // all line endings are normalized to LF

34 static const char LF = LINE_FEED;
172 // CR-LF pair becomes LF
173 // CR alone becomes LF
174 // LF-CR becomes LF
175 if ( *(p+1) == LF ) {
181 *q++ = LF;
183 else if ( (flags & NEEDS_NEWLINE_NORMALIZATION) && *p == LF ) {
190 *q++ = LF;
444 if ( TIXML_SSCANF( str, "%lf", value ) == 1 ) {