Lines Matching refs:input
375 /// Read suppressions specifications from an input stream.
377 /// @param input the input stream to read from.
382 read_suppressions(std::istream& input,
385 if (ini::config_sptr config = ini::read_config(input))
389 /// Read suppressions specifications from an input file on disk.
391 /// @param input the path to the input file to read from.
1541 /// @param input the input string representing the value of the
1546 read_type_kind_string(const string& input)
1548 if (input == "class")
1550 else if (input == "struct")
1552 else if (input == "union")
1554 else if (input == "enum")
1556 else if (input == "array")
1558 else if (input == "typedef")
1560 else if (input == "builtin")
1569 /// @param input the input string representing the value of the
1574 read_suppression_reach_kind(const string& input)
1576 if (input == "direct")
1578 else if (input == "pointer")
1580 else if (input == "reference")
1582 else if (input == "reference-or-pointer")