Lines Matching defs:lastWasPunctuation
381 bool &shouldEmitSpace, bool &lastWasPunctuation);
2119 /// space should be emitted before this element. `lastWasPunctuation` is true if
2122 bool &shouldEmitSpace, bool &lastWasPunctuation) {
2126 if (shouldEmitSpace && shouldEmitSpaceBefore(value, lastWasPunctuation))
2133 lastWasPunctuation = value.front() != '_' && !isalpha(value.front());
2136 /// Generate the printer for a space. `shouldEmitSpace` and `lastWasPunctuation`
2139 bool &lastWasPunctuation) {
2142 lastWasPunctuation = false;
2144 lastWasPunctuation = true;
2390 bool &lastWasPunctuation) {
2393 lastWasPunctuation);
2401 lastWasPunctuation);
2432 lastWasPunctuation);
2497 lastWasPunctuation);
2501 lastWasPunctuation);
2511 lastWasPunctuation = false;
2518 lastWasPunctuation = false;
2524 if (shouldEmitSpace || !lastWasPunctuation)
2526 lastWasPunctuation = false;
2659 bool shouldEmitSpace = true, lastWasPunctuation = false;
2661 genElementPrinter(element, body, op, shouldEmitSpace, lastWasPunctuation);