Home | History | Annotate | Download | only in tabwriter

Lines Matching refs:endChar

105 	endChar byte         // terminating char of escaped sequence (Escape for escapes, '>', ';' for HTML tags/entities, or 0)
117 b.endChar = 0
413 b.endChar = Escape
415 b.endChar = '>'
417 b.endChar = ';'
427 switch b.endChar {
438 b.endChar = 0
476 if b.endChar != 0 {
500 if b.endChar == 0 {
551 if ch == b.endChar {