HomeSort by relevance Sort by last modified time
    Searched defs:Parser (Results 51 - 75 of 94) sorted by null

1 23 4

  /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) {
  /external/llvm/lib/Target/MBlaze/AsmParser/
MBlazeAsmParser.cpp 29 MCAsmParser &Parser;
31 MCAsmParser &getParser() const { return Parser; }
32 MCAsmLexer &getLexer() const { return Parser.getLexer(); }
34 void Warning(SMLoc L, const Twine &Msg) { Parser.Warning(L, Msg); }
35 bool Error(SMLoc L, const Twine &Msg) { return Parser.Error(L, Msg); }
68 : MCTargetAsmParser(), Parser(_Parser) {}
396 SMLoc S = Parser.getTok().getLoc();
397 SMLoc E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
423 SMLoc S = Parser.getTok().getLoc();
424 SMLoc E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1)
    [all...]
  /external/regex-re2/re2/
re2.h 736 typedef bool (*Parser)(const char* str, int n, void* dest);
741 Arg(type* p, Parser parser) : arg_(p), parser_(parser) { } \
763 template <class T> Arg(T*, Parser parser);
774 Parser parser_;
813 // This part of the parser, appropriate only for ints, deals with bases
    [all...]
  /frameworks/base/cmds/content/src/com/android/commands/content/
Content.java 107 private static class Parser {
129 public Parser(String[] args) {
459 Parser parser = new Parser(args); local
460 Command command = parser.parseCommand();
  /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(int 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);
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
Parser.java 36 * Extremely fast and lightweight WBXML parser, implementing only the subset of WBXML that
40 public abstract class Parser {
55 private String logTag = "EAS Parser";
62 // The input stream for this parser
84 // the parser at any given time
115 * Generated when the parser comes to EOF prematurely during parsing (i.e. in error)
122 * An EmptyStreamException is an EofException that occurs reading the first byte in the parser's
163 public Parser(InputStream in) throws IOException {
170 * @param parser an existing, initialized parser
    [all...]
  /external/v8/src/
parser.h 376 // Parser state of containing expression, if any.
431 class Parser {
433 Parser(Handle<Script> script,
437 virtual ~Parser() {
483 FunctionState(Parser* parser,
534 Parser* parser_;
767 // Parser support
parser.cc 38 #include "parser.h"
249 Handle<String> Parser::LookupSymbol(int symbol_id) {
268 Handle<String> Parser::LookupCachedSymbol(int symbol_id) {
410 Scope* Parser::NewScope(Scope* parent, ScopeType type) {
419 // Parser's target_stack_ (the stack of potential 'break' and
462 // FunctionState and BlockState together implement the parser's scope stack.
463 // The parser's current scope is in top_scope_. The BlockState and
465 // pop. They are also used to hold the parser's per-function and per-block
468 class Parser::BlockState BASE_EMBEDDED {
470 BlockState(Parser* parser, Scope* scope
    [all...]
  /external/javassist/src/main/javassist/compiler/
Parser.java 20 public final class Parser implements TokenId {
23 public Parser(Lex lex) {
    [all...]
  /external/llvm/include/llvm/Support/
CommandLine.h 492 // parser class - Parameterizable parser for different data types. By default,
494 // you would expect. The default parser, used for data types that are not
500 // not need replicated for every instance of the generic parser. This also
595 // Default parser implementation - This implementation depends on having a
598 // command line option for -help. Because this is a simple mapping parser, the
602 class parser : public generic_parser_base { class in namespace:llvm::cl
701 // basic_parser - The real basic parser is just a template wrapper that provides
712 // parser<bool>
715 class parser<bool> : public basic_parser<bool> class in namespace:llvm::cl
746 class parser<boolOrDefault> : public basic_parser<boolOrDefault> { class in namespace:llvm::cl
771 class parser<int> : public basic_parser<int> { class in namespace:llvm::cl
793 class parser<unsigned> : public basic_parser<unsigned> { class in namespace:llvm::cl
814 class parser<unsigned long long> : public basic_parser<unsigned long long> { class in namespace:llvm::cl
836 class parser<double> : public basic_parser<double> { class in namespace:llvm::cl
857 class parser<float> : public basic_parser<float> { class in namespace:llvm::cl
878 class parser<std::string> : public basic_parser<std::string> { class in namespace:llvm::cl
902 class parser<char> : public basic_parser<char> { class in namespace:llvm::cl
    [all...]
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 39 MCAsmParser &Parser;
105 MipsAsmParser(MCSubtargetInfo &sti, MCAsmParser &parser)
106 : MCTargetAsmParser(), STI(sti), Parser(parser) {
111 MCAsmParser &getParser() const { return Parser; }
112 MCAsmLexer &getLexer() const { return Parser.getLexer(); }
432 const AsmToken &Tok = Parser.getTok();
455 SMLoc S = Parser.getTok().getLoc();
460 && Operands.size() == 2 && Parser.getTok().is(AsmToken::Integer)){
461 RegNo = Parser.getTok().getIntVal(); //get the int valu
    [all...]
  /external/icu4c/test/intltest/
wbnf.cpp 503 // The parser result nodes
781 // The parser
940 class Parser{
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
Parser.java 3 package com.google.clearsilver.jsilver.syntax.parser;
15 public class Parser
34 public Parser(@SuppressWarnings("hiding") Lexer lexer)
131 this.action[0] = Parser.actionTable[state()][0][1];
132 this.action[1] = Parser.actionTable[state()][0][2];
135 int high = Parser.actionTable[state()].length - 1;
141 if(index < Parser.actionTable[state()][middle][0])
145 else if(index > Parser.actionTable[state()][middle][0])
151 this.action[0] = Parser.actionTable[state()][middle][1];
152 this.action[1] = Parser.actionTable[state()][middle][2]
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 1 //===- AsmParser.cpp - Parser for Assembly Files --------------------------===//
10 // This class implements the parser for assembly files.
83 /// \brief The concrete assembly parser instance.
288 /// (or the default, at least) for all assembler parser.
302 virtual void Initialize(MCAsmParser &Parser) {
304 this->MCAsmParserExtension::Initialize(Parser);
418 // Initialize the generic parser.
421 // Initialize the platform / file format parser.
    [all...]
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 35 MCAsmParser &Parser;
37 MCAsmParser &getParser() const { return Parser; }
39 MCAsmLexer &getLexer() const { return Parser.getLexer(); }
45 return Parser.Error(L, Msg, Ranges);
109 X86AsmParser(MCSubtargetInfo &sti, MCAsmParser &parser)
110 : MCTargetAsmParser(), STI(sti), Parser(parser) {
524 const AsmToken &PercentTok = Parser.getTok();
530 Parser.Lex(); // Eat percent token.
532 const AsmToken &Tok = Parser.getTok()
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Parser.java 15 // The TagSoup parser
29 The SAX parser class.
31 public class Parser extends DefaultHandler implements ScanHandler, XMLReader, LexicalHandler {
84 Reports whether this parser processes external general entities
91 Reports whether this parser processes external parameter entities
134 parser in ContentHandler.startElement() implement the
142 Returns "true" if the Locator objects passed by this parser
158 Controls whether the parser is reporting all validity errors
165 Controls whether the parser reports Unicode normalization
174 the parser treats namespace declaration attributes as being i
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.artifact.repository_1.1.1.R36x_v20100901.jar 
org.eclipse.equinox.p2.metadata.repository_1.1.0.v20100513.jar 
org.eclipse.equinox.p2.engine_2.0.0.v20100606.jar 
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar 
  /external/clang/include/clang/Parse/
Parser.h 1 //===--- Parser.h - C Language Parser ---------------------------*- C++ -*-===//
10 // This file defines the Parser interface.
36 class Parser;
47 /// PrettyStackTraceParserEntry - If a crash happens while the parser is active,
50 const Parser &P;
52 PrettyStackTraceParserEntry(const Parser &p) : P(p) {}
80 /// Parser - This implements a parser for the C family of languages. After
84 class Parser : public CodeCompletionHandler
    [all...]
  /prebuilts/misc/common/commons-cli/
commons-cli-1.2.jar 
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 46 MCAsmParser &Parser;
82 MCAsmParser &getParser() const { return Parser; }
83 MCAsmLexer &getLexer() const { return Parser.getLexer(); }
87 return Parser.Warning(L, Msg, Ranges);
91 return Parser.Error(L, Msg, Ranges);
241 : MCTargetAsmParser(), STI(_STI), Parser(_Parser) {
    [all...]
  /cts/tools/signature-tools/lib/
antlr-2.7.7.jar 
  /prebuilts/misc/common/ecj/
ecj.jar 

Completed in 867 milliseconds

1 23 4