Home | History | Annotate | Download | only in libcutils

Lines Matching refs:whitespace

33         char* whitespace;
52 // skip colon and whitespace
55 // truncate trailing whitespace
61 whitespace = strchr(chp, ' ');
62 if (whitespace)
63 *whitespace = 0;
64 whitespace = strchr(chp, '\t');
65 if (whitespace)
66 *whitespace = 0;
67 whitespace = strchr(chp, '\r');
68 if (whitespace)
69 *whitespace = 0;
70 whitespace = strchr(chp, '\n');
71 if (whitespace)
72 *whitespace = 0;