Lines Matching refs:unstructured
194 token_type = 'unstructured'
1088 """unstructured = (*([FWS] vchar) *WSP) / obs-unstruct
1101 Because an 'unstructured' value must by definition constitute the entire
1110 unstructured = UnstructuredTokenList()
1114 unstructured.append(token)
1128 if len(unstructured) > 0:
1129 if unstructured[-1].token_type != 'fws':
1130 unstructured.defects.append(errors.InvalidHeaderDefect(
1133 if have_ws and len(unstructured) > 1:
1134 if unstructured[-2].token_type == 'encoded-word':
1135 unstructured[-1] = EWWhiteSpaceTerminal(
1136 unstructured[-1], 'fws')
1137 unstructured.append(token)
1150 unstructured.append(vtext)
1152 return unstructured