HomeSort by relevance Sort by last modified time
    Searched refs:Parser (Results 176 - 200 of 675) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/parser/
StatusLineParser.java 26 package gov.nist.javax.sip.parser;
31 * Parser for the SIP status line.
40 public class StatusLineParser extends Parser {
URLParser.java 26 package gov.nist.javax.sip.parser;
39 * Parser For SIP and Tel URLs. Other kinds of URL's are handled by the
47 public class URLParser extends Parser {
371 * Parser for the base phone number.
404 * Parser for the local phone #.
439 * Parser for telephone subscriber.
  /external/protobuf/java/src/main/java/com/google/protobuf/
MessageLite.java 84 * Gets the parser for a message of the same type as this message.
86 Parser<? extends MessageLite> getParserForType();
112 * that the parser on the receiving end does not interpret this as being
  /external/testng/src/main/java/org/testng/xml/
Parser.java 20 * <code>Parser</code> is a parser for a TestNG XML test suite file.
22 public class Parser {
40 for (ISuiteParser parser : suiteParserLoader) {
41 PARSERS.add(parser); typedefs
45 /** The file name of the xml suite being parsed. This may be null if the Parser
55 * Constructs a <code>Parser</code> to use the inputStream as the source of
60 public Parser(String fileName) {
65 * Creates a parser that will try to find the DEFAULT_FILENAME from the jar.
69 public Parser() throws FileNotFoundException
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/delegation/
import.rb 18 parser grammar DIDRSlave;
41 parser = DIDRMaster::Parser.new( tokens )
42 parser.s
43 parser.output.should == 'S.a'
48 parser grammar Slave2;
72 parser = Master2::Parser.new( tokens )
73 parser.s
74 parser.output.should == 'S.a1000
    [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 {
241 Parser(Preprocessor &PP, Sema &Actions, bool SkipFunctionBodies);
242 ~Parser() override;
269 /// Initialize - Warm up the parser
    [all...]
  /external/clang/lib/Parse/
ParseObjc.cpp 10 // This file implements the Objective-C portions of the Parser interface.
14 #include "clang/Parse/Parser.h"
27 void Parser::MaybeSkipAttributes(tok::ObjCKeywordKind Kind) {
47 Parser::DeclGroupPtrTy Parser::ParseObjCAtDirectives() {
98 class Parser::ObjCTypeParamListScope {
126 Parser::DeclGroupPtrTy
127 Parser::ParseObjCAtClassDeclaration(SourceLocation atLoc) {
163 void Parser::CheckNestedObjCContexts(SourceLocation AtLoc)
211 Decl *Parser::ParseObjCAtInterfaceDeclaration(SourceLocation AtLoc
    [all...]
ParseInit.cpp 14 #include "clang/Parse/Parser.h"
27 bool Parser::MayBeDesignationStart() {
94 static void CheckArrayDesignatorSyntax(Parser &P, SourceLocation Loc,
131 ExprResult Parser::ParseInitializerWithPotentialDesignator() {
395 ExprResult Parser::ParseBraceInitializer() {
485 bool Parser::ParseMicrosoftIfExistsBraceInitializer(ExprVector &InitExprs,
ParseDecl.cpp 10 // This file implements the Declaration portions of the Parser interfaces.
14 #include "clang/Parse/Parser.h"
43 TypeResult Parser::ParseTypeName(SourceRange *Range,
123 void Parser::ParseGNUAttributes(ParsedAttributes &attrs,
232 IdentifierLoc *Parser::ParseIdentifierLoc() {
241 void Parser::ParseAttributeWithTypeArg(IdentifierInfo &AttrName,
270 unsigned Parser::ParseAttributeArgsCommon(
334 void Parser::ParseGNUAttributeArgs(IdentifierInfo *AttrName,
385 bool Parser::ParseMicrosoftDeclSpecArgs(IdentifierInfo *AttrName,
534 void Parser::ParseMicrosoftDeclSpecs(ParsedAttributes &Attrs
    [all...]
ParseExprCXX.cpp 19 #include "clang/Parse/Parser.h"
43 bool Parser::areTokensAdjacent(const Token &First, const Token &Second) {
51 static void FixDigraph(Parser &P, Preprocessor &PP, Token &DigraphToken,
80 void Parser::CheckForTemplateAndDigraph(Token &Next, ParsedType ObjectType,
107 void Parser::CheckForLParenAfterColonColon() {
187 bool Parser::ParseOptionalCXXScopeSpecifier(CXXScopeSpec &SS,
592 ExprResult Parser::tryParseCXXIdExpression(CXXScopeSpec &SS, bool isAddressOfOperand,
626 /// NOTE: The standard specifies that, for qualified-id, the parser does not
639 /// :: ~ C(); // Some Parser error like 'unexpected ~'.
642 /// We simplify the parser a bit and make it work like
    [all...]
ParseDeclCXX.cpp 10 // This file implements the C++ Declaration portions of the Parser interfaces.
14 #include "clang/Parse/Parser.h"
58 Parser::DeclGroupPtrTy Parser::ParseNamespace(unsigned Context,
209 void Parser::ParseInnerNamespace(std::vector<SourceLocation> &IdentLoc,
254 Decl *Parser::ParseNamespaceAlias(SourceLocation NamespaceLoc,
299 Decl *Parser::ParseLinkage(ParsingDeclSpec &DS, unsigned Context) {
380 Decl *Parser::ParseUsingDirectiveOrDeclaration(unsigned Context,
428 Decl *Parser::ParseUsingDirective(unsigned Context,
492 Decl *Parser::ParseUsingDeclaration(unsigned Context
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/tree-parser/
basic.rb 34 parser = FlatList::Parser.new( tokens )
36 result = parser.a
70 parser = SimpleTree::Parser.new( tokens )
72 result = parser.a
109 parser = FlatVsTreeDecision::Parser.new( tokens )
111 result = parser.a
147 parser = FlatVsTreeDecision2::Parser.new( tokens
    [all...]
  /external/deqp/framework/delibs/decpp/
deCommandLine.cpp 21 * \brief Command line parser.
100 Parser::Parser (void)
105 Parser::~Parser (void)
109 void Parser::addOption (const OptInfo& option)
114 bool Parser::parse (int numArgs, const char* const* args, CommandLine* dst, std::ostream& err) const
245 void Parser::help (std::ostream& str) const
351 Parser parser; local
397 Parser parser; local
    [all...]
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 197 // Get the target specific parser.
323 static int fillCommandLineSymbols(MCAsmParser &Parser){
335 auto &Context = Parser.getContext();
337 Parser.getStreamer().EmitAssignment(Symbol,
347 std::unique_ptr<MCAsmParser> Parser(
350 TheTarget->createMCAsmParser(STI, *Parser, MCII, MCOptions));
358 int SymbolResult = fillCommandLineSymbols(*Parser);
361 Parser->setShowParsedOperands(ShowInstOperands);
362 Parser->setTargetParser(*TAP);
364 int Res = Parser->Run(NoInitialTextSection)
    [all...]
  /external/protobuf/src/google/protobuf/
text_format.cc 190 // returning false. Borrowed from parser.cc (Thanks Kenton!).
193 class TextFormat::Parser::ParserImpl {
    [all...]
  /external/clang/lib/Format/
UnwrappedLineParser.cpp 21 #define DEBUG_TYPE "format-parser"
121 ScopedLineState(UnwrappedLineParser &Parser,
123 : Parser(Parser), OriginalLines(Parser.CurrentLines) {
125 Parser.CurrentLines = &Parser.PreprocessorDirectives;
126 else if (!Parser.Line->Tokens.empty())
127 Parser.CurrentLines = &Parser.Line->Tokens.back().Children
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTree.h 110 #pragma mark Tree Parser support
  /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...]

Completed in 547 milliseconds

1 2 3 4 5 6 78 91011>>