HomeSort by relevance Sort by last modified time
    Searched defs:Parser (Results 101 - 125 of 179) sorted by null

1 2 3 45 6 7 8

  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
ir.py 16 from parse_core import Symbols #, Parser
    [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 527 // parser class - Parameterizable parser for different data types. By default,
529 // you would expect. The default parser, used for data types that are not
535 // not need replicated for every instance of the generic parser. This also
630 // Default parser implementation - This implementation depends on having a
633 // command line option for -help. Because this is a simple mapping parser, the
637 class parser : public generic_parser_base { class in namespace:llvm::cl
735 // basic_parser - The real basic parser is just a template wrapper that provides
746 // parser<bool>
749 class parser<bool> : public basic_parser<bool> class in namespace:llvm::cl
780 class parser<boolOrDefault> : public basic_parser<boolOrDefault> { class in namespace:llvm::cl
805 class parser<int> : public basic_parser<int> { class in namespace:llvm::cl
827 class parser<unsigned> : public basic_parser<unsigned> { class in namespace:llvm::cl
848 class parser<unsigned long long> : public basic_parser<unsigned long long> { class in namespace:llvm::cl
870 class parser<double> : public basic_parser<double> { class in namespace:llvm::cl
891 class parser<float> : public basic_parser<float> { class in namespace:llvm::cl
912 class parser<std::string> : public basic_parser<std::string> { class in namespace:llvm::cl
936 class parser<char> : public basic_parser<char> { class in namespace:llvm::cl
    [all...]
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 216 MCAsmParser &Parser;
221 MCAsmParser &getParser() const { return Parser; }
222 MCAsmLexer &getLexer() const { return Parser.getLexer(); }
224 void Warning(SMLoc L, const Twine &Msg) { Parser.Warning(L, Msg); }
225 bool Error(SMLoc L, const Twine &Msg) { return Parser.Error(L, Msg); }
268 : MCTargetAsmParser(), STI(_STI), Parser(_Parser), MII(_MII) {
    [all...]
  /external/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 299 MCAsmParser &Parser;
331 SystemZAsmParser(MCSubtargetInfo &sti, MCAsmParser &parser,
334 : MCTargetAsmParser(), STI(sti), Parser(parser) {
335 MCAsmParserExtension::Initialize(Parser);
420 Reg.StartLoc = Parser.getTok().getLoc();
423 if (Parser.getTok().isNot(AsmToken::Percent))
424 return Error(Parser.getTok().getLoc(), "register expected");
425 Parser.Lex();
428 if (Parser.getTok().isNot(AsmToken::Identifier)
    [all...]
  /frameworks/base/cmds/content/src/com/android/commands/content/
Content.java 128 private static class Parser {
155 public Parser(String[] args) {
602 Parser parser = new Parser(args); local
603 Command command = parser.parseCommand();
  /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/chromium_org/third_party/icu/source/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/Target/X86/AsmParser/
X86AsmParser.cpp 58 MCAsmParser &Parser;
64 SMLoc Result = Parser.getTok().getLoc();
65 Parser.Lex();
633 MCAsmParser &getParser() const { return Parser; }
635 MCAsmLexer &getLexer() const { return Parser.getLexer(); }
641 return Parser.Error(L, Msg, Ranges);
647 Parser.eatToEndOfStatement();
744 X86AsmParser(MCSubtargetInfo &sti, MCAsmParser &parser,
747 : MCTargetAsmParser(), STI(sti), Parser(parser), MII(mii)
    [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 
  /external/clang/include/clang/Parse/
Parser.h 1 //===--- Parser.h - C Language Parser ---------------------------*- C++ -*-===//
10 // This file defines the Parser interface.
39 class Parser;
50 /// Parser - This implements a parser for the C family of languages. After
54 class Parser : public CodeCompletionHandler {
236 Parser(Preprocessor &PP, Sema &Actions, bool SkipFunctionBodies);
237 ~Parser();
280 /// Initialize - Warm up the parser
    [all...]
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 32 #define DEBUG_TYPE "mips-asm-parser"
64 MCTargetStreamer &TS = *Parser.getStreamer().getTargetStreamer();
69 MCAsmParser &Parser;
226 MipsAsmParser(MCSubtargetInfo &sti, MCAsmParser &parser,
228 : MCTargetAsmParser(), STI(sti), Parser(parser) {
244 MCAsmParser &getParser() const { return Parser; }
245 MCAsmLexer &getLexer() const { return Parser.getLexer(); }
340 MipsOperand(KindTy K, MipsAsmParser &Parser)
341 : MCParsedAsmOperand(), Kind(K), AsmParser(Parser) {}
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/
test_email_renamed.py 18 from email.parser import Parser, HeaderParser
    [all...]
test_email.py 19 from email.Parser import Parser, HeaderParser
199 parser = email.Parser.HeaderParser()
200 msg = parser.parsestr(msgdata)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/
test_email_renamed.py 18 from email.parser import Parser, HeaderParser
    [all...]
test_email.py 19 from email.Parser import Parser, HeaderParser
199 parser = email.Parser.HeaderParser()
200 msg = parser.parsestr(msgdata)
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/org.eclipse.tycho.p2.maven.repository/0.20.0/
org.eclipse.tycho.p2.maven.repository-0.20.0.jar 
  /external/chromium_org/v8/src/
parser.cc 14 #include "src/parser.h"
328 Scope* Parser::NewScope(Scope* parent, ScopeType scope_type) {
337 // Parser's target_stack_ (the stack of potential 'break' and
400 // Implementation of Parser
764 Parser::Parser(CompilationInfo* info)
795 FunctionLiteral* Parser::ParseProgram() {
807 // Initialize parser state.
855 FunctionLiteral* Parser::DoParseProgram(CompilationInfo* info,
946 FunctionLiteral* Parser::ParseLazy()
    [all...]
preparser.h 18 // Common base class shared between parser and pre-parser. Traits encapsulate
19 // the differences between Parser and PreParser:
21 // - Return types: For example, Parser functions return Expression* and
24 // - Creating parse tree nodes: Parser generates an AST during the recursive
33 // example, Parser keeps track of which function literals should be marked as
69 typename Traits::Type::Parser this_object)
88 // allowed to be parsed by this instance of the parser.
100 // allowed to be parsed by this instance of the parser.
125 // FunctionState and BlockState together implement the parser's scope stack
443 ParserBase* parser() const { return parser_; } function in class:v8::internal::ParserBase::ObjectLiteralChecker
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 1 //===- AsmParser.cpp - Parser for Assembly Files --------------------------===//
10 // This class implements the parser for assembly files.
120 /// \brief The concrete assembly parser instance.
141 /// \brief maps directive names to handler methods in parser
260 /// \brief Are macros enabled in the parser?
263 /// \brief Control a flag in the parser that enables or disables macros.
504 // Initialize the platform / file format parser.
    [all...]
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 44 MCAsmParser &Parser;
54 MCAsmParser &getParser() const { return Parser; }
55 MCAsmLexer &getLexer() const { return Parser.getLexer(); }
57 SMLoc getLoc() const { return Parser.getTok().getLoc(); }
71 void Warning(SMLoc L, const Twine &Msg) { Parser.Warning(L, Msg); }
72 bool Error(SMLoc L, const Twine &Msg) { return Parser.Error(L, Msg); }
119 : MCTargetAsmParser(), STI(_STI), Parser(_Parser) {
121 if (Parser.getStreamer().getTargetStreamer() == nullptr)
122 new AArch64TargetStreamer(Parser.getStreamer());
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.artifact.repository_1.1.200.v20130515-2028.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.artifact.repository_1.1.200.v20130515-2028.jar 

Completed in 1779 milliseconds

1 2 3 45 6 7 8