Lines Matching full:atom
38 static void add_white(Fuzz* fuzz, SkString* atom) { in add_white() argument
40 atom->append(" "); in add_white()
51 atom->append(&gWhiteSpace[index], 1); in add_white()
56 static void add_some_white(Fuzz* fuzz, SkString* atom) { in add_some_white() argument
58 add_white(fuzz, atom); in add_some_white()
62 static void add_comma(Fuzz* fuzz, SkString* atom) { in add_comma() argument
64 atom->append(","); in add_comma()
67 add_white(fuzz, atom); in add_comma()
71 atom->append(","); in add_comma()
73 add_some_white(fuzz, atom); in add_comma()
77 SkString atom; in MakeRandomParsePathPiece() local
81 gEasy ? atom.append("\n") : add_white(fuzz, &atom); in MakeRandomParsePathPiece()
85 atom.append(&symbol, 1); in MakeRandomParsePathPiece()
92 add_white(fuzz, &atom); in MakeRandomParsePathPiece()
93 atom.appendScalar(coord); in MakeRandomParsePathPiece()
95 add_comma(fuzz, &atom); in MakeRandomParsePathPiece()
97 add_some_white(fuzz, &atom); in MakeRandomParsePathPiece()
102 atom.appendScalar(s); in MakeRandomParsePathPiece()
103 add_comma(fuzz, &atom); in MakeRandomParsePathPiece()
105 atom.appendU32(b); in MakeRandomParsePathPiece()
106 add_comma(fuzz, &atom); in MakeRandomParsePathPiece()
108 atom.appendU32(b); in MakeRandomParsePathPiece()
109 add_comma(fuzz, &atom); in MakeRandomParsePathPiece()
113 return atom; in MakeRandomParsePathPiece()