/external/snakeyaml/src/test/java/org/pyyaml/ |
PyEmitterTest.java | 37 import org.yaml.snakeyaml.parser.Parser; 38 import org.yaml.snakeyaml.parser.ParserImpl; 81 Parser parser = new ParserImpl(reader); local 82 while (parser.peekEvent() != null) { 83 Event event = parser.getEvent(); 133 Parser parser = new ParserImpl(reader); local 134 while (parser.peekEvent() != null) 212 ParserImpl parser = new ParserImpl(new StreamReader(data)); local 242 Parser parser = new ParserImpl(reader); local [all...] |
CanonicalParser.java | 33 import org.yaml.snakeyaml.parser.Parser; 40 public class CanonicalParser implements Parser {
|
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
ParserAdapter.java | 1 // ParserAdapter.java - adapt a SAX1 Parser to a SAX2 XMLReader. 21 import org.xml.sax.Parser; 30 * Adapt a SAX1 Parser as a SAX2 XMLReader. 39 * <p>This class wraps a SAX1 {@link org.xml.sax.Parser Parser} 53 * @see org.xml.sax.Parser 66 * Construct a new parser adapter. 68 * <p>Use the "org.xml.sax.parser" property to locate the 73 * org.xml.sax.parser property is not specified. 79 String driver = System.getProperty("org.xml.sax.parser"); 819 private Parser parser = null; field in class:ParserAdapter [all...] |
/system/tools/aidl/ |
aidl_language.h | 342 class Parser { 344 explicit Parser(const android::aidl::IoDelegate& io_delegate); 345 ~Parser(); 385 DISALLOW_COPY_AND_ASSIGN(Parser);
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/ |
ST.stg | 54 Template<if(TREE_PARSER)>Tree<else>Parser<endif>RuleReturnScope\<StringTemplate, <labelType>>
|
/external/deqp/external/vulkancts/modules/vulkan/ |
vktBuildPrograms.cpp | 268 void registerOptions (de::cmdline::Parser& parser) 272 parser << Option<opt::DstPath> ("d", "dst-path", "Destination path", "out") 283 de::cmdline::Parser parser; local 284 registerOptions(parser); 285 if (!parser.parse(argc, argv, &cmdLine, std::cerr)) 287 parser.help(std::cout);
|
/external/testng/src/test/java/test/annotationtransformer/ |
AnnotationTransformerTest.java | 10 import org.testng.xml.Parser; 240 Collection<XmlSuite> suites = new Parser(is).parse();
|
/external/v8/tools/ |
parser-shell.cc | 40 #include "src/parsing/parser.h" 114 bool success = Parser::ParseStatic(&info); 132 bool success = Parser::ParseStatic(&info);
|
/libcore/ojluni/src/main/java/java/text/ |
MergeCollation.java | 178 PatternEntry.Parser parser = new PatternEntry.Parser(pattern); 180 PatternEntry entry = parser.next(); 183 entry = parser.next();
|
/external/clang/utils/analyzer/ |
SATestBuild.py | 677 Parser = argparse.ArgumentParser(description='Test the Clang Static Analyzer.') 678 Parser.add_argument('--strictness', dest='strictness', type=int, default=0, 682 Parser.add_argument('-r', dest='regenerate', action='store_true', default=False, 684 Parser.add_argument('-rs', dest='update_reference', action='store_true', 686 Args = Parser.parse_args()
|
/external/llvm/lib/Target/Hexagon/AsmParser/ |
HexagonAsmParser.cpp | 76 MCTargetStreamer &TS = *Parser.getStreamer().getTargetStreamer(); 80 MCAsmParser &Parser; 86 MCAsmParser &getParser() const { return Parser; } 88 MCAsmLexer &getLexer() const { return Parser.getLexer(); } 93 void Warning(SMLoc L, const Twine &Msg) { Parser.Warning(L, Msg); } 94 bool Error(SMLoc L, const Twine &Msg) { return Parser.Error(L, Msg); } 139 : MCTargetAsmParser(Options, _STI), Parser(_Parser), 147 if (!Parser.getStreamer().hasRawTextSupport()) { 148 MCELFStreamer *MES = static_cast<MCELFStreamer *>(&Parser.getStreamer()); 732 MCAsmParser &Parser = getParser() [all...] |
/external/protobuf/java/src/test/java/com/google/protobuf/ |
TextFormatTest.java | 34 import com.google.protobuf.TextFormat.Parser.SingularOverwritePolicy; 122 private final TextFormat.Parser parserWithOverwriteForbidden = 123 TextFormat.Parser.newBuilder() 128 private final TextFormat.Parser defaultParser = 129 TextFormat.Parser.newBuilder().build(); [all...] |
/prebuilts/eclipse/maven/apache-maven-3.2.1/lib/ |
commons-cli-1.2.jar | |
/prebuilts/misc/common/commons-cli/ |
commons-cli-1.2.jar | |
/external/llvm/lib/MC/MCParser/ |
AsmParser.cpp | 1 //===- AsmParser.cpp - Parser for Assembly Files --------------------------===// 10 // This class implements the parser for assembly files. 114 /// \brief The concrete assembly parser instance. 135 /// \brief maps directive names to handler methods in parser 264 /// \brief Are macros enabled in the parser? 267 /// \brief Control a flag in the parser that enables or disables macros. 518 // Initialize the platform / file format parser. [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
recognizers.rb | 181 Parser, and TreeParser are abstract classes. They can be instantiated, but 534 # rule invocation, the parser pushes the set of tokens that can 601 # So, you cna see that the parser walks up call chain looking 680 # action in the parser or tree parser works. It simply creates 713 # * override this method in your parser to do things 927 the lexer converts text into tokens for use by a parser, which recognizes larger 930 ANTLR parsers have a variety of entry points specified by parser rules, each of 948 If the lexer is preparing tokens for use by an ANTLR generated parser, the lexer 963 class Parser < ANTLR3::Parse [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/ |
group-file-parser.rb | 59 # - - - - - - begin action @parser::header - - - - - - 66 # - - - - - - end action @parser::header - - - - - - - 96 class Parser < ANTLR3::Parser 167 # parser rule group_spec 244 # parser rule group_name 319 # parser rule member 405 # parser rule parameter_declaration 480 # parser rule parameters 534 # parser rule paramete [all...] |
/external/caliper/caliper/src/main/java/com/google/caliper/runner/ |
StreamService.java | 25 import com.google.caliper.util.Parser; 93 private final Parser<LogMessage> logMessageParser; 113 Parser<LogMessage> logMessageParser,
|
/external/javassist/src/main/javassist/bytecode/ |
AnnotationsAttribute.java | 226 return new Parser(info, constPool).parseAnnotations(); 562 static class Parser extends Walker { 570 * Constructs a parser. This parser constructs a parse tree of 576 Parser(byte[] info, ConstPool cp) {
|
/frameworks/base/core/java/android/content/res/ |
XmlBlock.java | 71 return new Parser(nativeCreateParseState(mNative), this); 77 /*package*/ final class Parser implements XmlResourceParser { 78 Parser(long parseState, XmlBlock block) { 277 + ": parser must be on START_TAG to read next text", this, null); 294 + ": parser must be on START_TAG or TEXT to read text", this, null);
|
/prebuilts/tools/common/m2/repository/org/eclipse/tycho/org.eclipse.tycho.p2.maven.repository/0.18.1/ |
org.eclipse.tycho.p2.maven.repository-0.18.1.jar | |
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/debugging/ |
profile-mode.rb | 128 parser = SimpleC::Parser.new( tokens ) 129 parser.program 131 profile_data = parser.profile
|
/external/clang/tools/driver/ |
cc1as_main.cpp | 284 // Get the target specific parser. 300 // Tell SrcMgr about this buffer, which is what the parser will pick up. 410 std::unique_ptr<MCAsmParser> Parser( 416 TheTarget->createMCAsmParser(*STI, *Parser, *MCII, Options)); 421 Parser->setTargetParser(*TAP.get()); 422 Failed = Parser->Run(Opts.NoInitialTextSection);
|
/external/lzma/CS/7zip/Common/ |
CommandLineParser.cs | 58 public class Parser
63 public Parser(int numSwitches)
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
HeaderParser.java | 26 package gov.nist.javax.sip.parser; 33 * Generic header parser class. The parsers for various headers extend this 34 * class. To create a parser for a new header, extend this class and change 43 public class HeaderParser extends Parser {
|