Lines Matching refs:Some
13 while let Some(val) = try_string(&mut it) { in expect_string_array()
17 Some(TokenTree::Punct(punct)) => assert_eq!(punct.as_char(), ','), in expect_string_array()
123 Some(TokenTree::Ident(ident)) => ident.to_string(), in parse()
124 Some(_) => panic!("Expected Ident or end"), in parse()
137 "author" => info.author = Some(expect_string(it)), in parse()
138 "authors" => info.authors = Some(expect_string_array(it)), in parse()
139 "description" => info.description = Some(expect_string(it)), in parse()
141 "alias" => info.alias = Some(expect_string_array(it)), in parse()
142 "firmware" => info.firmware = Some(expect_string_array(it)), in parse()
180 if let Some(author) = info.author { in module()
183 if let Some(authors) = info.authors { in module()
188 if let Some(description) = info.description { in module()
192 if let Some(aliases) = info.alias { in module()
197 if let Some(firmware) = info.firmware { in module()