Home
last modified time | relevance | path

Searched refs:Parser (Results 1 – 11 of 11) sorted by relevance

/system/core/init/
Dinit_parser.cpp30 Parser::Parser() { in Parser() function in Parser
33 Parser& Parser::GetInstance() { in GetInstance()
34 static Parser instance; in GetInstance()
38 void Parser::AddSectionParser(const std::string& name, in AddSectionParser()
43 void Parser::ParseData(const std::string& filename, const std::string& data) { in ParseData()
95 bool Parser::ParseConfigFile(const std::string& path) { in ParseConfigFile()
113 bool Parser::ParseConfigDir(const std::string& path) { in ParseConfigDir()
140 bool Parser::ParseConfig(const std::string& path) { in ParseConfig()
147 void Parser::DumpState() const { in DumpState()
Dinit_parser.h37 class Parser {
39 static Parser& GetInstance();
58 Parser();
Dimport_parser.cpp50 if (!Parser::GetInstance().ParseConfig(s)) { in EndFile()
Dbuiltins.cpp375 Parser& parser = Parser::GetInstance(); in import_late()
Dinit.cpp1085 Parser& parser = Parser::GetInstance(); in main()
/system/core/libutils/
DPropertyMap.cpp130 Parser parser(map, tokenizer); in load()
152 PropertyMap::Parser::Parser(PropertyMap* map, Tokenizer* tokenizer) : in Parser() function in android::PropertyMap::Parser
156 PropertyMap::Parser::~Parser() { in ~Parser()
159 status_t PropertyMap::Parser::parse() { in parse()
/system/core/libutils/include/utils/
DPropertyMap.h84 class Parser {
89 Parser(PropertyMap* map, Tokenizer* tokenizer);
90 ~Parser();
/system/tools/aidl/
Daidl_language.cpp33 int yyparse(Parser*);
157 Parser::Parser(const IoDelegate& io_delegate) in Parser() function in Parser
253 Parser::~Parser() { in ~Parser()
261 bool Parser::ParseFile(const string& filename) { in ParseFile()
296 void Parser::ReportError(const string& err, unsigned line) { in ReportError()
301 std::vector<std::string> Parser::Package() const { in Package()
308 void Parser::AddImport(AidlQualifiedName* name, unsigned line) { in AddImport()
Daidl_language.h385 class Parser {
387 explicit Parser(const android::aidl::IoDelegate& io_delegate);
388 ~Parser();
428 DISALLOW_COPY_AND_ASSIGN(Parser);
Daidl.cpp570 Parser p{io_delegate}; in load_and_validate_aidl()
612 Parser p{io_delegate}; in load_and_validate_aidl()
754 Parser p{io_delegate}; in preprocess_aidl()
Daidl_language_y.yy14 %parse-param { Parser* ps }