HomeSort by relevance Sort by last modified time
    Searched refs:Parser (Results 251 - 275 of 895) sorted by null

<<11121314151617181920>>

  /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...]
  /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)
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Object/Parser/
InfDefineCommonObject.py 19 from Object.Parser.InfCommonObject import InfLineCommentObject
  /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 86 std::unique_ptr<MCAsmParser> Parser(
91 T->createMCAsmParser(*STI, *Parser, *MCII, MCOptions));
95 Parser->setTargetParser(*TAP);
96 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/csharp/src/AddressBook/
Addressbook.cs 38 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.Examples.AddressBook.Person), global::Google.Protobuf.Examples.AddressBook.Person.Parser, new[]{ "Name", "Id", "Email", "Phones" }, null, new[]{ typeof(global::Google.Protobuf.Examples.AddressBook.Person.Types.PhoneType) }, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.Examples.AddressBook.Person.Types.PhoneNumber), global::Google.Protobuf.Examples.AddressBook.Person.Types.PhoneNumber.Parser, new[]{ "Number", "Type" }, null, null, null)}),
39 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.Examples.AddressBook.AddressBook), global::Google.Protobuf.Examples.AddressBook.AddressBook.Parser, new[]{ "People" }, null, null, null)
52 public static pb::MessageParser<Person> Parser { get { return _parser; } }
115 = pb::FieldCodec.ForMessage(34, global::Google.Protobuf.Examples.AddressBook.Person.Types.PhoneNumber.Parser);
239 public static pb::MessageParser<PhoneNumber> Parser { get { return _parser; } }
377 public static pb::MessageParser<AddressBook> Parser { get { return _parser; } }
404 = pb::FieldCodec.ForMessage(10, global::Google.Protobuf.Examples.AddressBook.Person.Parser);
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
Parser.java 46 public interface Parser<MessageType> {
  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 80 // This is useful in case the asm parser doesn't handle something but the
112 OwningPtr<MCAsmParser> Parser(createMCAsmParser(SrcMgr,
125 TAP(TM.getTarget().createMCAsmParser(*STI, *Parser));
128 " we don't have an asm parser for this target\n");
129 Parser->setTargetParser(*TAP.get());
132 int Res = Parser->Run(/*NoInitialTextSection*/ true,
  /external/v8/src/
background-parsing-task.cc 8 #include "src/parsing/parser.h"
14 parser.reset();
46 // Parser needs to stay alive for finalizing the parsing on the main
48 source_->parser.reset(new Parser(source_->info.get()));
49 source_->parser->DeserializeScopeChain(source_->info.get(),
59 // Reset the stack limit of the parser to reflect correctly that we're on a
62 source_->parser->set_stack_limit(stack_limit);
64 // Nullify the Isolate temporarily so that the background parser doesn't
69 source_->parser->ParseOnBackground(source_->info.get())
    [all...]
  /external/clang/include/clang/Parse/
Parser.h 1 //===--- Parser.h - C Language Parser ---------------------------*- C++ -*-===//
10 // This file defines the Parser interface.
39 class Parser;
52 /// Parser - This implements a parser for the C family of languages. After
56 class Parser : public CodeCompletionHandler {
247 Parser(Preprocessor &PP, Sema &Actions, bool SkipFunctionBodies);
248 ~Parser() override;
275 /// Initialize - Warm up the parser
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/
InfBuildOptionSectionParser.py 2 # This file contained the parser for BuildOption sections in INF file
26 from Parser.InfParserMisc import InfExpandMacro
28 from Parser.InfParserMisc import IsAsBuildOptionInfo
32 from Parser.InfParserMisc import InfParserSectionRoot
  /external/clang/lib/Parse/
ParseStmtAsm.cpp 1 //===---- ParseStmtAsm.cpp - Assembly Statement Parser --------------------===//
14 #include "clang/Parse/Parser.h"
39 Parser &TheParser;
50 ClangAsmParserCallback(Parser &P, SourceLocation Loc, StringRef AsmString,
182 /// \param CastInfo - a void* so that we don't have to teach Parser.h
184 ExprResult Parser::ParseMSAsmIdentifier(llvm::SmallVectorImpl<Token> &LineToks,
282 /// to the MC asm parser.
380 StmtResult Parser::ParseMicrosoftAsmStatement(SourceLocation AsmLoc) {
580 // Tell SrcMgr about this buffer, which is what the parser will pick up.
584 std::unique_ptr<llvm::MCAsmParser> Parser(
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
JHdf.java 22 import com.google.clearsilver.jsilver.data.Parser;
110 Parser hdfParser = dataFactory.getParser();
112 hdfParser.parse(new StringReader(content), data, new Parser.ErrorHandler() {
  /external/llvm/tools/llvm-mcmarkup/
llvm-mcmarkup.cpp 10 // Example simple parser implementation for the MC assembly markup language.
33 /// Trivial lexer for the markup parser. Input is always handled a character
68 /// A simple parser implementation for creating MarkupTags from input text.
150 // Tell SrcMgr about this buffer, which is what the parser will pick up.
154 MarkupParser Parser(Lex, SrcMgr);
169 TagStack.push_back(Parser.parseTag());
184 Parser.FatalError(Loc, "'>' without matching '<'");
215 cl::ParseCommandLineOptions(argc, argv, "llvm MC markup parser\n");
  /external/protobuf/src/google/protobuf/
text_format.h 341 // Interface that TextFormat::Parser can use to find extensions.
384 // Allow the text format parser to record information into the tree.
407 class LIBPROTOBUF_EXPORT Parser {
409 Parser();
410 ~Parser();
427 // Set how parser finds extensions. If NULL (the default), the
428 // parser will use the standard Reflection object associated with
490 // the friendship to TextFormat::Parser::ParserImpl, but unfortunately some
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/composer/
Composer.java 38 import org.yaml.snakeyaml.parser.Parser;
42 * Creates a node graph from parser events.
49 protected final Parser parser; field in class:Composer
54 public Composer(Parser parser, Resolver resolver) {
55 this.parser = parser;
68 if (parser.checkEvent(Event.ID.StreamStart))
    [all...]
  /frameworks/native/include/input/
KeyCharacterMap.h 183 class Parser {
210 Parser(KeyCharacterMap* map, Tokenizer* tokenizer, Format format);
211 ~Parser();

Completed in 876 milliseconds

<<11121314151617181920>>