Lines Matching defs:content
139 /// Parse a syntax tree node from the content of this string literal.
176 /// Invoke parser on the content of this string literal.
1158 // Returns (content, suffix).
1174 let mut content = String::new();
1221 content.push(ch);
1225 let content = content.into_boxed_str();
1227 (content, suffix)
1244 let content = s[pounds + 1..close].to_owned().into_boxed_str();
1246 (content, suffix)
1249 // Returns (content, suffix).