Home
last modified time | relevance | path

Searched refs:Parse (Results 1 – 13 of 13) sorted by relevance

/development/vndk/tools/header-checker/src/utils/
Dapi_level_test.cpp26 TEST(ApiLevelTest, Parse) { in TEST() argument
31 EXPECT_FALSE(api_level_map.Parse("")); in TEST()
32 EXPECT_FALSE(api_level_map.Parse("A")); in TEST()
34 EXPECT_TRUE(api_level_map.Parse("current").has_value()); in TEST()
35 EXPECT_EQ(FUTURE_API_LEVEL, api_level_map.Parse("current").value()); in TEST()
37 EXPECT_TRUE(api_level_map.Parse("UpsideDownCake").has_value()); in TEST()
38 EXPECT_EQ(9000, api_level_map.Parse("UpsideDownCake").value()); in TEST()
40 EXPECT_TRUE(api_level_map.Parse("16").has_value()); in TEST()
41 EXPECT_EQ(16l, api_level_map.Parse("16").value()); in TEST()
Dapi_level.h39 std::optional<ApiLevel> Parse(const std::string &api) const;
Dapi_level.cpp49 std::optional<ApiLevel> ApiLevelMap::Parse(const std::string &api) const { in Parse() function in header_checker::utils::ApiLevelMap
Dconfig_file_test.cpp28 TEST(ConfigFileTest, Parse) { in TEST() argument
/development/vndk/tools/header-checker/src/repr/symbol/
Dversion_script_parser_test.cpp53 std::unique_ptr<ExportedSymbolSet> result(parser.Parse(stream)); in TEST()
86 std::unique_ptr<ExportedSymbolSet> result(parser.Parse(stream)); in TEST()
101 std::unique_ptr<ExportedSymbolSet> result(parser.Parse(stream)); in TEST()
140 std::unique_ptr<ExportedSymbolSet> result(parser.Parse(stream)); in TEST()
173 std::unique_ptr<ExportedSymbolSet> result(parser.Parse(stream)); in TEST()
188 std::unique_ptr<ExportedSymbolSet> result(parser.Parse(stream)); in TEST()
202 std::unique_ptr<ExportedSymbolSet> result(parser.Parse(stream)); in TEST()
216 std::unique_ptr<ExportedSymbolSet> result(parser.Parse(stream)); in TEST()
231 std::unique_ptr<ExportedSymbolSet> result(parser.Parse(stream)); in TEST()
246 std::unique_ptr<ExportedSymbolSet> result(parser.Parse(stream)); in TEST()
[all …]
Dso_file_parser.h35 virtual std::unique_ptr<ExportedSymbolSet> Parse() = 0;
Dversion_script_parser.cpp137 std::optional<utils::ApiLevel> intro = api_level_map_.Parse( in ParseSymbolTags()
151 std::optional<utils::ApiLevel> intro = api_level_map_.Parse( in ParseSymbolTags()
335 std::unique_ptr<ExportedSymbolSet> VersionScriptParser::Parse( in Parse() function in header_checker::repr::VersionScriptParser
Dversion_script_parser.h103 std::unique_ptr<ExportedSymbolSet> Parse(std::istream &version_script_stream);
Dso_file_parser.cpp65 std::unique_ptr<ExportedSymbolSet> Parse() override { in Parse() function in header_checker::repr::ELFSoFileParser
/development/tools/repo_diff/service/repodiff/
Dcommandline.go26 flag.Parse()
/development/vndk/tools/header-checker/src/linker/
Dheader_abi_linker.cpp451 version_script_symbols_ = version_script_parser_.Parse(stream); in ReadExportedSymbolsFromVersionScript()
467 shared_object_symbols_ = so_parser->Parse(); in ReadExportedSymbolsFromSharedObjectFile()
490 std::optional<utils::ApiLevel> api_level = api_level_map.Parse(api); in InitializeVersionScriptParser()
/development/vndk/tools/elfcheck/bpflatten/
Dmain.go188 flag.Parse()
/development/vndk/tools/header-checker/src/repr/protobuf/
Dir_reader.cpp48 if (!google::protobuf::TextFormat::Parse(&text_is, &tu)) { in ReadDumpImpl()