Lines Matching refs:PResult
75 type PResult<'a, O> = Result<(Cursor<'a>, O), Reject>;
125 fn block_comment(input: Cursor) -> PResult<&str> {
266 fn leaf_token(input: Cursor) -> PResult<TokenTree> {
283 fn ident(input: Cursor) -> PResult<crate::Ident> {
296 fn ident_any(input: Cursor) -> PResult<crate::Ident> {
322 fn ident_not_raw(input: Cursor) -> PResult<&str> {
341 pub(crate) fn literal(input: Cursor) -> PResult<Literal> {
478 fn delimiter_of_raw_string(input: Cursor) -> PResult<&str> {
875 fn punct(input: Cursor) -> PResult<Punct> {
892 fn punct_char(input: Cursor) -> PResult<char> {
913 fn doc_comment<'a>(input: Cursor<'a>, trees: &mut TokenStreamBuilder) -> PResult<'a, ()> {
961 fn doc_comment_contents(input: Cursor) -> PResult<(&str, bool)> {