HomeSort by relevance Sort by last modified time
    Searched refs:Parser (Results 201 - 225 of 720) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTree.h 110 #pragma mark Tree Parser support
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTree.h 110 #pragma mark Tree Parser support
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
TrialModule.java 29 import com.google.caliper.util.Parser;
105 Parser<LogMessage> logMessageParser,
  /external/deqp/framework/platform/android/
tcuAndroidPlatformCapabilityQueryJNI.cpp 57 virtual void registerExtendedOptions (de::cmdline::Parser& parser);
93 void GLConfigParser::registerExtendedOptions (de::cmdline::Parser& parser)
97 parser
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
DefaultHdfParser.java 31 public class DefaultHdfParser implements Parser {
142 public Parser newInstance() {
  /external/jsilver/src/com/google/streamhtmlparser/impl/
GenericParser.java 21 import com.google.streamhtmlparser.Parser;
28 * An implementation of the {@code Parser} interface that is common to both
38 public class GenericParser implements Parser {
59 * Constructs a generic parser that is an exact copy of the
61 * change are shallow-copied (parser state table and state mappings).
75 * Tell the parser to process the provided {@code String}. This is just a
76 * convenience method that wraps over {@link Parser#parse(char)}.
91 * derived from a state-machine configuration file in the original C++ parser.
139 * Return the current state of the parser.
151 * Reset the parser back to its initial default state
    [all...]
  /external/snakeyaml/src/test/java/org/pyyaml/
PyImportTest.java 31 import org.yaml.snakeyaml.parser.Parser;
32 import org.yaml.snakeyaml.parser.ParserImpl;
95 CanonicalParser parser = new CanonicalParser(buffer.toString()); local
97 while (parser.peekEvent() != null) {
98 result.add(parser.getEvent());
106 Parser parser = new ParserImpl(reader); local
108 while (parser.peekEvent() != null) {
109 result.add(parser.getEvent())
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/helpers/
XMLReaderAdapter.java 1 // XMLReaderAdapter.java - adapt an SAX2 XMLReader to a SAX1 Parser
20 import org.xml.sax.Parser;
27 * Adapt a SAX2 XMLReader as a SAX1 Parser.
37 * and makes it act as a SAX1 {@link org.xml.sax.Parser Parser}. The XMLReader
47 * @see org.xml.sax.Parser
50 public class XMLReaderAdapter implements Parser, ContentHandler
82 * Parser.</p>
111 // Implementation of org.xml.sax.Parser.
122 * @see org.xml.sax.Parser#setLocal
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/
ContentTypeField.java 32 import org.apache.james.mime4j.field.contenttype.parser.ContentTypeParser;
33 import org.apache.james.mime4j.field.contenttype.parser.ParseException;
34 import org.apache.james.mime4j.field.contenttype.parser.TokenMgrError;
208 public static class Parser implements FieldParser {
209 private static Log log = LogFactory.getLog(Parser.class);
216 ContentTypeParser parser = new ContentTypeParser(new StringReader(body)); local
218 parser.parseAll();
234 final String type = parser.getType();
235 final String subType = parser.getSubType();
238 mimeType = (type + "/" + parser.getSubType()).toLowerCase()
    [all...]
  /packages/services/Telephony/src/org/apache/james/mime4j/field/
ContentTypeField.java 32 import org.apache.james.mime4j.field.contenttype.parser.ContentTypeParser;
33 import org.apache.james.mime4j.field.contenttype.parser.ParseException;
34 import org.apache.james.mime4j.field.contenttype.parser.TokenMgrError;
208 public static class Parser implements FieldParser {
209 private static Log log = LogFactory.getLog(Parser.class);
216 ContentTypeParser parser = new ContentTypeParser(new StringReader(body)); local
218 parser.parseAll();
234 final String type = parser.getType();
235 final String subType = parser.getSubType();
238 mimeType = (type + "/" + parser.getSubType()).toLowerCase()
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/command/
check.py 14 from docutils.parsers.rst import Parser
128 parser = Parser()
144 parser.parse(data, document)
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/command/
check.py 14 from docutils.parsers.rst import Parser
128 parser = Parser()
144 parser.parse(data, document)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
check.py 14 from docutils.parsers.rst import Parser
128 parser = Parser()
144 parser.parse(data, document)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
check.py 14 from docutils.parsers.rst import Parser
128 parser = Parser()
144 parser.parse(data, document)
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugParser.cs 39 public class DebugParser : Parser {
40 /** <summary>Who to notify when events in the parser occur.</summary> */
51 * Create a normal parser except wrap the token stream in a debug
75 * Provide a new debug event listener for this parser. Notify the
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugParser.cs 40 public class DebugParser : Parser
42 /** <summary>Who to notify when events in the parser occur.</summary> */
53 * Create a normal parser except wrap the token stream in a debug
82 * Provide a new debug event listener for this parser. Notify the
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
Parser.pm 1 package ANTLR::Runtime::Parser;
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/template-output/
template-output.rb 15 rule = options.fetch( :rule ) { grammar_module::Parser.default_rule }
18 rule = grammar_module::Parser.default_rule
22 @parser = grammar_module::Parser.new( @lexer, parser_options )
24 out = @parser.send( rule ).template
303 @parser.input.render.should == expected
396 parser = TreeRewrite::Parser.new( tokens )
397 tree = parser.prog.tree
  /external/llvm/lib/Object/
IRObjectFile.cpp 78 std::unique_ptr<MCAsmParser> Parser(
83 T->createMCAsmParser(*STI, *Parser, *MCII, MCOptions));
87 Parser->setTargetParser(*TAP);
88 if (Parser->Run(false))
  /external/nist-sip/java/gov/nist/javax/sip/parser/
Parser.java 26 package gov.nist.javax.sip.parser;
34 * Base parser class.
42 public abstract class Parser extends ParserCore implements TokenTypes {
127 * $Log: Parser.java,v $
  /external/protobuf/java/src/main/java/com/google/protobuf/
Parser.java 42 public interface Parser<MessageType> {
  /external/v8/src/
background-parsing-task.cc 55 // Parser needs to stay alive for finalizing the parsing on the main
56 // thread. Passing &parse_info is OK because Parser doesn't store it.
57 source_->parser.Reset(new Parser(source_->info.get()));
58 source_->parser->ParseOnBackground(source_->info.get());
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tree_construction/
parser.js 347 //Parser
348 var Parser = module.exports = function (treeAdapter, options) {
358 Parser.prototype.parse = function (html) {
367 Parser.prototype.parseFragment = function (html, fragmentContext) {
398 Parser.prototype._reset = function (html, document, fragmentContext) {
428 Parser.prototype._iterateParsingLoop = function () {
451 Parser.prototype._runParsingLoop = function () {
457 Parser.prototype._setupTokenizerCDATAMode = function () {
466 Parser.prototype._switchToTextParsing = function (currentToken, nextTokenizerState) {
474 Parser.prototype._getAdjustedCurrentElement = function ()
    [all...]
  /external/clang/lib/Parse/
ParseOpenMP.cpp 19 #include "clang/Parse/Parser.h"
29 static OpenMPDirectiveKind ParseOpenMPDirectiveKind(Parser &P) {
89 Parser::DeclGroupPtrTy Parser::ParseOpenMPDeclarativeDirective() {
169 Parser::ParseOpenMPDeclarativeOrExecutableDirective(bool StandAloneAllowed) {
344 bool Parser::ParseOpenMPSimpleVarList(OpenMPDirectiveKind Kind,
421 OMPClause *Parser::ParseOpenMPClause(OpenMPDirectiveKind DKind,
586 OMPClause *Parser::ParseOpenMPSingleExprClause(OpenMPClauseKind Kind) {
617 OMPClause *Parser::ParseOpenMPSimpleClause(OpenMPClauseKind Kind) {
666 OMPClause *Parser::ParseOpenMPClause(OpenMPClauseKind Kind)
    [all...]
ParseStmtAsm.cpp 1 //===---- ParseStmtAsm.cpp - Assembly Statement Parser --------------------===//
14 #include "clang/Parse/Parser.h"
38 Parser &TheParser;
49 ClangAsmParserCallback(Parser &P, SourceLocation Loc, StringRef AsmString,
181 /// \param CastInfo - a void* so that we don't have to teach Parser.h
183 ExprResult Parser::ParseMSAsmIdentifier(llvm::SmallVectorImpl<Token> &LineToks,
285 /// to the MC asm parser.
356 StmtResult Parser::ParseMicrosoftAsmStatement(SourceLocation AsmLoc) {
542 // Tell SrcMgr about this buffer, which is what the parser will pick up.
546 std::unique_ptr<llvm::MCAsmParser> Parser(
    [all...]

Completed in 1992 milliseconds

1 2 3 4 5 6 7 891011>>