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

1 2 3 4 5 6 7 8 91011>>

  /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 297 // Interface that TextFormat::Parser can use to find extensions.
340 // Allow the text format parser to record information into the tree.
363 class LIBPROTOBUF_EXPORT Parser {
365 Parser();
366 ~Parser();
383 // Set how parser finds extensions. If NULL (the default), the
384 // parser will use the standard Reflection object associated with
446 // 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();
  /libcore/luni/src/main/java/javax/xml/parsers/
SAXParser.java 28 import org.xml.sax.Parser;
39 * {@link org.xml.sax.Parser} interface, however this interface was
60 * As the content is parsed by the underlying parser, methods of the
352 Parser parser = this.getParser(); local
354 parser.setDocumentHandler(hb);
355 parser.setEntityResolver(hb);
356 parser.setErrorHandler(hb);
357 parser.setDTDHandler(hb);
359 parser.parse(is)
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
text_format.h 212 // Interface that TextFormat::Parser can use to find extensions.
255 // Allow the text format parser to record information into the tree.
278 class LIBPROTOBUF_EXPORT Parser {
280 Parser();
281 ~Parser();
298 // Set how parser finds extensions. If NULL (the default), the
299 // parser will use the standard Reflection object associated with
343 // the friendship to TextFormat::Parser::ParserImpl, but unfortunately some
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
text_format.h 212 // Interface that TextFormat::Parser can use to find extensions.
255 // Allow the text format parser to record information into the tree.
278 class LIBPROTOBUF_EXPORT Parser {
280 Parser();
281 ~Parser();
298 // Set how parser finds extensions. If NULL (the default), the
299 // parser will use the standard Reflection object associated with
343 // the friendship to TextFormat::Parser::ParserImpl, but unfortunately some
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
text_format.h 212 // Interface that TextFormat::Parser can use to find extensions.
255 // Allow the text format parser to record information into the tree.
278 class LIBPROTOBUF_EXPORT Parser {
280 Parser();
281 ~Parser();
298 // Set how parser finds extensions. If NULL (the default), the
299 // parser will use the standard Reflection object associated with
343 // the friendship to TextFormat::Parser::ParserImpl, but unfortunately some
  /prebuilts/tools/darwin-x86_64/protoc/include/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
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/
text_format.h 212 // Interface that TextFormat::Parser can use to find extensions.
255 // Allow the text format parser to record information into the tree.
278 class LIBPROTOBUF_EXPORT Parser {
280 Parser();
281 ~Parser();
298 // Set how parser finds extensions. If NULL (the default), the
299 // parser will use the standard Reflection object associated with
343 // the friendship to TextFormat::Parser::ParserImpl, but unfortunately some
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 90 // This is useful in case the asm parser doesn't handle something but the
127 std::unique_ptr<MCAsmParser> Parser(
136 STI, *Parser, *MII, MCOptions));
139 " we don't have an asm parser for this target\n");
140 Parser->setAssemblerDialect(Dialect);
141 Parser->setTargetParser(*TAP.get());
149 int Res = Parser->Run(/*NoInitialTextSection*/ true,
  /external/clang/lib/Parse/
ParsePragma.cpp 19 #include "clang/Parse/Parser.h"
165 void Parser::initializePragmaHandlers() {
246 void Parser::resetPragmaHandlers() {
322 void Parser::HandlePragmaUnused() {
329 void Parser::HandlePragmaVisibility() {
347 void Parser::HandlePragmaPack() {
362 void Parser::HandlePragmaMSStruct() {
371 void Parser::HandlePragmaAlign() {
380 void Parser::HandlePragmaWeak() {
388 void Parser::HandlePragmaWeakAlias()
    [all...]
ParseExpr.cpp 24 #include "clang/Parse/Parser.h"
36 /// \brief Simple precedence-based parser for binary/ternary operators.
120 ExprResult Parser::ParseExpression(TypeCastState isTypeCast) {
131 Parser::ParseExpressionWithLeadingAt(SourceLocation AtLoc) {
140 Parser::ParseExpressionWithLeadingExtension(SourceLocation ExtLoc) {
157 ExprResult Parser::ParseAssignmentExpression(TypeCastState isTypeCast) {
185 Parser::ParseAssignmentExprWithObjCMessageExprStart(SourceLocation LBracLoc,
197 ExprResult Parser::ParseConstantExpression(TypeCastState isTypeCast) {
216 ExprResult Parser::ParseConstraintExpression() {
228 bool Parser::isNotExpressionStart()
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/commons-cli/commons-cli/1.0/
commons-cli-1.0.jar 
  /prebuilts/tools/common/m2/repository/commons-cli/commons-cli/1.0/
commons-cli-1.0.jar 
  /frameworks/native/libs/input/
KeyCharacterMap.cpp 36 // Enables debug output for the parser.
39 // Enables debug output for parser performance.
150 Parser parser(map.get(), tokenizer, format);
151 status = parser.parse();
718 // --- KeyCharacterMap::Parser ---
720 KeyCharacterMap::Parser::Parser(KeyCharacterMap* map, Tokenizer* tokenizer, Format format) :
724 KeyCharacterMap::Parser::~Parser() {
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
template.rb 92 autoload :Parser, 'antlr3/template/group-file'
97 parser = Parser.new( lexer, options )
98 return( parser.group( namespace ) )
111 parser = Parser.new( lexer, options )
112 return( parser.group( namespace ) )
  /external/caliper/caliper/src/test/java/com/google/caliper/runner/
StreamServiceTest.java 29 import com.google.caliper.util.Parser;
67 private final Parser<LogMessage> parser = new Parser<LogMessage>() { field in class:StreamServiceTest
222 parser,
  /external/v8/src/parsing/
parser.h 12 #include "src/parsing/parser-base.h"
201 FunctionLiteral* literal_; // produced by full parser.
248 // Wrapper around ScriptData to provide parser-specific functionality.
294 class Parser;
332 typedef v8::internal::Parser* Parser;
356 explicit ParserTraits(Parser* parser) : parser_(parser) {}
663 Parser* parser_
760 Parser* parser; member in struct:v8::internal::Parser::DeclarationDescriptor
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
backtracking.rb 239 parser = Backtrack::Parser.new lexer
240 events = parser.translation_unit
calc.rb 11 @parser::init {
15 @parser::members {
69 parser = TestCalc::Parser.new lexer
70 value = parser.evaluate
71 errors = parser.reported_errors
ll-star.rb 134 parser = LLStar::Parser.new lexer
136 parser.program
137 parser.output.should == <<-'END'.fixed_indent( 0 )
  /external/caliper/caliper/src/main/java/com/google/caliper/options/
CommandLineParser.java 21 import com.google.caliper.util.Parser;
139 * Constructs a new command-line parser that will inject values into {@code injectee}.
275 private Parser<?> parser; field in class:CommandLineParser.FieldOption
281 this.parser = Parsers.conventionalParser(Primitives.wrap(c));
292 Object value = convert(parser, valueText);
312 private Parser<?> parser; field in class:CommandLineParser.MethodOption
318 this.parser = Parsers.conventionalParser(Primitives.wrap(c));
335 invokeMethod(injectee, method, convert(parser, valueText))
    [all...]
  /external/clang/test/Analysis/inlining/
false-positive-suppression.cpp 22 class Parser {

Completed in 4364 milliseconds

1 2 3 4 5 6 7 8 91011>>