Home
last modified time | relevance | path

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

/aosp12/system/core/init/
H A Dparser.h51 class SectionParser {
53 virtual ~SectionParser() {} in ~SectionParser()
76 void AddSectionParser(const std::string& name, std::unique_ptr<SectionParser> parser);
88 std::map<std::string, std::unique_ptr<SectionParser>> section_parsers_;
H A Dparser.cpp35 void Parser::AddSectionParser(const std::string& name, std::unique_ptr<SectionParser> parser) { in AddSectionParser()
52 SectionParser* section_parser = nullptr; in ParseData()
H A Dhost_import_parser.h27 class HostImportParser : public SectionParser {
H A Dimport_parser.h28 class ImportParser : public SectionParser {
H A Daction_parser.h31 class ActionParser : public SectionParser {
H A Dservice_parser.h30 class ServiceParser : public SectionParser {
H A Dueventd_parser.cpp158 class SubsystemParser : public SectionParser {
/aosp12/packages/apps/TV/tuner/src/com/android/tv/tuner/data/
H A DPsipData.java296 return SectionParser.DESCRIPTOR_TAG_CONTENT_ADVISORY; in getTag()
313 return SectionParser.DESCRIPTOR_TAG_CAPTION_SERVICE; in getTag()
330 return SectionParser.DESCRIPTOR_TAG_EXTENDED_CHANNEL_NAME; in getTag()
349 return SectionParser.DESCRIPTOR_TAG_GENRE; in getTag()
418 return SectionParser.DESCRIPTOR_TAG_AC3_AUDIO_STREAM; in getTag()
529 return SectionParser.DESCRIPTOR_TAG_ISO639LANGUAGE; in getTag()
555 return SectionParser.DVB_DESCRIPTOR_TAG_SERVICE; in getTag()
597 return SectionParser.DVB_DESCRIPTOR_TAG_SHORT_EVENT; in getTag()
617 return SectionParser.DVB_DESCRIPTOR_TAG_PARENTAL_RATING; in getTag()
H A DSectionParser.java65 public class SectionParser { class
645 public SectionParser(OutputListener listener) { in SectionParser() method in SectionParser
/aosp12/packages/apps/TV/tuner/tests/robotests/javatests/com/android/tv/tuner/data/
H A DSectionParserTest.java118 assertThat(SectionParser.generateContentRating(new ArrayList<TsDescriptor>())).isEmpty(); in testGenerateContentRating_emptyInput()
128 SectionParser.generateContentRating( in testGenerateContentRating_validInputs()
140 SectionParser.generateContentRating( in testGenerateContentRating_invalidInput()
156 SectionParser.generateContentRating( in testGenerateContentRating_multipleRatings()
/aosp12/packages/apps/TV/tuner/src/com/android/tv/tuner/ts/
H A DTsParser.java29 import com.android.tv.tuner.data.SectionParser;
30 import com.android.tv.tuner.data.SectionParser.OutputListener;
119 private final SectionParser mSectionParser;
124 mSectionParser = new SectionParser(mSectionListener); in SectionStream()