HomeSort by relevance Sort by last modified time
    Searched defs:outc (Results 1 - 3 of 3) sorted by null

  /system/core/sh/
output.h 76 #define outc(c, file) (--(file)->nleft < 0? (emptyoutbuf(file), *(file)->nextc++ = (c)) : (*(file)->nextc++ = (c))) macro
77 #define out1c(c) outc(c, out1);
78 #define out2c(c) outc(c, out2);
  /external/webkit/Tools/android/flex-2.5.4a/
misc.c 308 outc( '\n' );
315 outc( '\n' );
470 outc( ',' );
479 outc( ',' );
497 outc( ',' );
505 outc( ',' );
690 void outc( c ) function
844 outc( '\n' );
847 outc( '\n' );
  /external/webkit/Source/JavaScriptCore/wtf/text/
StringImpl.cpp 356 unsigned outc = from - m_data; local
358 if (outc)
359 memcpy(to, m_data, outc * sizeof(UChar));
365 to[outc++] = *from++;
370 data.shrink(outc);
381 int outc = 0; local
393 to[outc++] = *from++;
395 to[outc++] = ' ';
400 if (outc > 0 && to[outc - 1] == ' '
    [all...]

Completed in 118 milliseconds