Home
last modified time | relevance | path

Searched refs:line (Results 1 – 4 of 4) sorted by relevance

/DragonReach/src/parse/graph/
H A Dmod.rs137 if let Ok(line) = line_result { in parse_after()
138 if line.starts_with("After") { in parse_after()
139 lines_with_after.push(line); in parse_after()
144 for line in lines_with_after { in parse_after()
145 let after = &line.split('=').collect::<Vec<&str>>()[1]; in parse_after()
175 if let Ok(line) = line_result { in get_node_num()
176 if line.starts_with("After=") { in get_node_num()
177 let dependencies_str = &line[6..]; in get_node_num()
/DragonReach/src/parse/
H A Dmod.rs270 .map(|line| line.unwrap()) in parse()
274 let line = &lines[i]; in parse() localVariable
276 if line.chars().all(char::is_whitespace) { in parse()
281 if line.starts_with('#') { in parse()
285 let mut line = line.trim(); in parse() localVariable
286 let segment_flag = SEGMENT_TABLE.get(&line); in parse()
313 line = templine.as_str(); in parse()
317 let (attr_str, val_str) = match line.find('=') { in parse()
318 Some(idx) => (line[..idx].trim(), line[idx + 1..].trim()), in parse()
/DragonReach/src/parse/parse_util/
H A Dmod.rs714 for line in env_reader.lines() { in parse_environment_file()
715 if let Ok(line) = line { in parse_environment_file()
716 let x = UnitParseUtil::parse_env(line.as_str())?; in parse_environment_file()
/DragonReach/
H A DLICENSE632 the "copyright" line and a pointer to where the full notice is found.
634 <one line to give the program's name and a brief idea of what it does.>