HomeSort by relevance Sort by last modified time
    Searched refs:Parser (Results 76 - 100 of 180) sorted by null

1 2 34 5 6 7 8

  /external/clang/lib/Parse/
ParseStmt.cpp 1 //===--- ParseStmt.cpp - Statement and Block Parser -----------------------===//
10 // This file implements the Statement and Block portions of the Parser
15 #include "clang/Parse/Parser.h"
79 Parser::ParseStatementOrDeclaration(StmtVector &Stmts, bool OnlyStatement) {
88 // Cases in this switch statement should fall through if the parser expects
297 StmtResult Parser::ParseExprStatement(ParsedAttributes &Attrs) {
330 StmtResult Parser::ParseSEHTryBlock(ParsedAttributes & Attrs) {
345 StmtResult Parser::ParseSEHTryBlockCommon(SourceLocation TryLoc) {
379 StmtResult Parser::ParseSEHExceptBlock(SourceLocation ExceptLoc) {
422 StmtResult Parser::ParseSEHFinallyBlock(SourceLocation FinallyBlock)
    [all...]
ParseObjc.cpp 10 // This file implements the Objective-C portions of the Parser interface.
15 #include "clang/Parse/Parser.h"
32 Decl *Parser::ParseObjCAtDirectives() {
72 Decl *Parser::ParseObjCAtClassDeclaration(SourceLocation atLoc) {
131 Decl *Parser::ParseObjCAtInterfaceDeclaration(SourceLocation atLoc,
250 struct Parser::ObjCPropertyCallback : FieldCallback {
251 Parser &P;
258 ObjCPropertyCallback(Parser &P, Decl *IDecl,
317 void Parser::ParseObjCInterfaceDeclList(Decl *interfaceDecl,
488 void Parser::ParseObjCPropertyAttribute(ObjCDeclSpec &DS, Decl *ClassDecl)
    [all...]
ParseExprCXX.cpp 15 #include "clang/Parse/Parser.h"
45 static void FixDigraph(Parser &P, Preprocessor &PP, Token &DigraphToken,
109 bool Parser::ParseOptionalCXXScopeSpecifier(CXXScopeSpec &SS,
450 /// NOTE: The standard specifies that, for qualified-id, the parser does not
463 /// :: ~ C(); // Some Parser error like 'unexpected ~'.
466 /// We simplify the parser a bit and make it work like:
480 ExprResult Parser::ParseCXXIdExpression(bool isAddressOfOperand) {
516 ExprResult Parser::ParseCXXCasts() {
579 ExprResult Parser::ParseCXXTypeid() {
646 ExprResult Parser::ParseCXXUuidof()
    [all...]
ParseDeclCXX.cpp 10 // This file implements the C++ Declaration portions of the Parser interfaces.
15 #include "clang/Parse/Parser.h"
50 Decl *Parser::ParseNamespace(unsigned Context,
180 void Parser::ParseInnerNamespace(std::vector<SourceLocation>& IdentLoc,
217 Decl *Parser::ParseNamespaceAlias(SourceLocation NamespaceLoc,
261 Decl *Parser::ParseLinkage(ParsingDeclSpec &DS, unsigned Context) {
314 Decl *Parser::ParseUsingDirectiveOrDeclaration(unsigned Context,
360 Decl *Parser::ParseUsingDirective(unsigned Context,
423 Decl *Parser::ParseUsingDeclaration(unsigned Context,
565 Decl *Parser::ParseStaticAssertDeclaration(SourceLocation &DeclEnd)
    [all...]
ParseDecl.cpp 10 // This file implements the Declaration portions of the Parser interfaces.
14 #include "clang/Parse/Parser.h"
33 TypeResult Parser::ParseTypeName(SourceRange *Range,
93 void Parser::ParseGNUAttributes(ParsedAttributes &attrs,
253 void Parser::ParseMicrosoftDeclSpec(ParsedAttributes &attrs) {
295 void Parser::ParseMicrosoftTypeAttributes(ParsedAttributes &attrs) {
311 void Parser::ParseBorlandTypeAttributes(ParsedAttributes &attrs) {
321 void Parser::ParseOpenCLAttributes(ParsedAttributes &attrs) {
331 void Parser::ParseOpenCLQualifiers(DeclSpec &DS) {
387 VersionTuple Parser::ParseVersionTuple(SourceRange &Range)
    [all...]
  /external/javassist/src/main/javassist/bytecode/
ParameterAnnotationsAttribute.java 25 import javassist.bytecode.AnnotationsAttribute.Parser;
132 return new Parser(info, constPool).parseParameters();
AnnotationDefaultAttribute.java 124 return new AnnotationsAttribute.Parser(info, constPool)
  /external/protobuf/src/google/protobuf/
text_format.cc 104 // returning false. Borrowed from parser.cc (Thanks Kenton!).
107 class TextFormat::Parser::ParserImpl {
616 explicit ParserErrorCollector(TextFormat::Parser::ParserImpl* parser) :
617 parser_(parser) { }
631 TextFormat::Parser::ParserImpl* parser_;
768 TextFormat::Parser::Parser()
772 TextFormat::Parser::~Parser() {}
    [all...]
  /external/v8/src/
parser.cc 37 #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, Scope::Type type, bool inside_with) {
418 // Parser's target_stack_ (the stack of potential 'break' and
462 // Parser's scope stack. The constructor sets the parser's top scope
467 // trees so they can be stack-allocated and hence used by the pre-parser.
471 LexicalScope(Parser* parser, Scope* scope, Isolate* isolate)
    [all...]
  /external/antlr/src/org/antlr/runtime/debug/
DebugParser.java 34 public class DebugParser extends Parser {
35 /** Who to notify when events in the parser occur. */
43 /** Create a normal parser except wrap the token stream in a debug
59 /** Provide a new debug event listener for this parser. Notify the
  /external/chromium/chrome/browser/autofill/
phone_field.h 113 static struct Parser {
  /external/nist-sip/java/gov/nist/javax/sip/parser/
RequestLineParser.java 26 package gov.nist.javax.sip.parser;
33 * Parser for the SIP request line.
41 public class RequestLineParser extends 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/webkit/Source/WebCore/xml/
XPathExpression.cpp 48 Parser parser; local
50 expr->m_topExpression = parser.parseStatement(expression, resolver, ec);
  /packages/apps/Exchange/src/com/android/exchange/adapter/
ItemOperationsParser.java 25 public class ItemOperationsParser extends Parser {
MoveItemsParser.java 26 public class MoveItemsParser extends Parser {
PingParser.java 34 public class PingParser extends Parser {
AbstractSyncParser.java 41 public abstract class AbstractSyncParser extends Parser {
57 public AbstractSyncParser(Parser p, AbstractSyncAdapter adapter) throws IOException {
  /frameworks/base/libs/ui/
KeyCharacterMap.cpp 29 // Enables debug output for the parser.
32 // Enables debug output for parser performance.
108 Parser parser(map, tokenizer);
109 status = parser.parse();
457 // --- KeyCharacterMap::Parser ---
459 KeyCharacterMap::Parser::Parser(KeyCharacterMap* map, Tokenizer* tokenizer) :
463 KeyCharacterMap::Parser::~Parser() {
    [all...]
  /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...]
  /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/Email/emailcommon/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...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 81 // This is useful in case the asm parser doesn't handle something but the
113 OwningPtr<MCAsmParser> Parser(createMCAsmParser(TM.getTarget(), SrcMgr,
125 OwningPtr<TargetAsmParser> TAP(TM.getTarget().createAsmParser(*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,

Completed in 826 milliseconds

1 2 34 5 6 7 8