Home
last modified time | relevance | path

Searched refs:ParseFile (Results 1 – 5 of 5) sorted by relevance

/development/vndk/tools/header-checker/src/utils/
Dconfig_file.cpp28 ConfigFile ConfigParser::ParseFile(std::istream &istream) { in ParseFile() function in header_checker::utils::ConfigParser
30 return parser.ParseFile(); in ParseFile()
34 ConfigFile ConfigParser::ParseFile(const std::string &path) { in ParseFile() function in header_checker::utils::ConfigParser
36 return ParseFile(stream); in ParseFile()
40 ConfigFile ConfigParser::ParseFile() { in ParseFile() function in header_checker::utils::ConfigParser
Dconfig_file_test.cpp40 auto &&cfg = ConfigParser::ParseFile(stream); in TEST()
83 parser.ParseFile(); in TEST()
104 parser.ParseFile(); in TEST()
Dconfig_file.h152 ConfigFile ParseFile();
154 static ConfigFile ParseFile(std::istream &istream);
156 static ConfigFile ParseFile(const std::string &path);
/development/scripts/
Dcompare-installed-size.py43 def ParseFile(install_file, idx): function
90 ParseFile(sys.argv[1], 0)
94 ParseFile(sys.argv[2], 1)
/development/vndk/tools/header-checker/src/diff/
Dheader_abi_diff.cpp157 ConfigFile cfg = ConfigParser::ParseFile(config_file_path); in ReadConfigFile()