/external/clang/lib/Parse/ |
ParseCXXInlineMethods.cpp | 14 #include "clang/Parse/Parser.h" 32 NamedDecl *Parser::ParseCXXInlineMethodDef(AccessSpecifier AS, 200 void Parser::ParseCXXNonStaticMemberInitializer(Decl *VarD) { 237 Parser::LateParsedDeclaration::~LateParsedDeclaration() {} 238 void Parser::LateParsedDeclaration::ParseLexedMethodDeclarations() {} 239 void Parser::LateParsedDeclaration::ParseLexedMemberInitializers() {} 240 void Parser::LateParsedDeclaration::ParseLexedMethodDefs() {} 242 Parser::LateParsedClass::LateParsedClass(Parser *P, ParsingClass *C) 245 Parser::LateParsedClass::~LateParsedClass() [all...] |
ParseTentative.cpp | 10 // This file implements the tentative parsing portions of the Parser 15 #include "clang/Parse/Parser.h" 50 bool Parser::isCXXDeclarationStatement() { 82 bool Parser::isCXXSimpleDeclaration(bool AllowForRangeDecl) { 153 Parser::TPResult Parser::TryParseSimpleDeclaration(bool AllowForRangeDecl) { 214 Parser::TPResult Parser::TryParseInitDeclaratorList() { 241 // At present, Clang follows MSVC and g++, since the parser does not have 247 // in any other context 'in' is invalid after a declaration and parser [all...] |
Parser.cpp | 1 //===--- Parser.cpp - C Language Family Parser ----------------------------===// 10 // This file implements the Parser interfaces. 14 #include "clang/Parse/Parser.h" 29 /// to the parser action. 43 IdentifierInfo *Parser::getSEHExceptKeyword() { 51 Parser::Parser(Preprocessor &pp, Sema &actions, bool skipFunctionBodies) 118 DiagnosticBuilder Parser::Diag(SourceLocation Loc, unsigned DiagID) { 122 DiagnosticBuilder Parser::Diag(const Token &Tok, unsigned DiagID) [all...] |
ParseTemplate.cpp | 14 #include "clang/Parse/Parser.h" 27 Parser::ParseDeclarationStartingWithTemplate(unsigned Context, 60 Parser::ParseTemplateDeclarationOrSpecialization(unsigned Context, 164 Parser::ParseSingleDeclarationAfterTemplate( 300 bool Parser::ParseTemplateParameters(unsigned Depth, 343 Parser::ParseTemplateParameterList(unsigned Depth, 359 // Don't consume this... that's done by template parser. 373 /// \brief Determine whether the parser is at the start of a template 375 bool Parser::isStartOfTemplateTypeParameter() { 451 Decl *Parser::ParseTemplateParameter(unsigned Depth, unsigned Position) [all...] |
/external/llvm/lib/AsmParser/ |
Android.mk | 6 Parser.cpp
|
/external/skia/tools/copyright/ |
fileparser.py | 12 """Returns a Parser as appropriate for the file at this filepath. 22 class Parser(object): 57 class CParser(Parser): 58 """Parser that knows how to parse C/C++ files.
|
/libcore/luni/src/test/java/tests/api/org/xml/sax/support/ |
MockParser.java | 27 import org.xml.sax.Parser; 31 public class MockParser implements Parser {
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/ |
AddressListField.java | 27 import org.apache.james.mime4j.field.address.parser.ParseException;
47 public static class Parser implements FieldParser {
48 private static Log log = LogFactory.getLog(Parser.class);
|
DateTimeField.java | 30 import org.apache.james.mime4j.field.datetime.parser.ParseException;
52 public static class Parser implements FieldParser {
53 private static Log log = LogFactory.getLog(Parser.class);
|
MailboxField.java | 29 import org.apache.james.mime4j.field.address.parser.ParseException;
49 public static class Parser implements FieldParser {
50 private static Log log = LogFactory.getLog(Parser.class);
|
MailboxListField.java | 28 import org.apache.james.mime4j.field.address.parser.ParseException;
49 public static class Parser implements FieldParser {
50 private static Log log = LogFactory.getLog(Parser.class);
|
ContentTransferEncodingField.java | 82 public static class Parser implements FieldParser {
|
DelegatingFieldParser.java | 24 private FieldParser defaultParser = new UnstructuredField.Parser();
27 * Sets the parser used for the field named <code>name</code>.
29 * @param parser the parser for fields named <code>name</code>
31 public void setFieldParser(final String name, final FieldParser parser) {
32 parsers.put(name.toLowerCase(), parser);
local 44 final FieldParser parser = getParser(name);
local 45 return parser.parse(name, body, raw);
|
/external/llvm/lib/Target/ARM/AsmParser/ |
ARMAsmParser.cpp | 49 MCAsmParser &Parser; 99 MCAsmParser &getParser() const { return Parser; } 100 MCAsmLexer &getLexer() const { return Parser.getLexer(); } 104 return Parser.Warning(L, Msg, Ranges); 108 return Parser.Error(L, Msg, Ranges); 246 : MCTargetAsmParser(), STI(_STI), Parser(_Parser), FPReg(-1) { 262 if (MCELFStreamer *MES = dyn_cast<MCELFStreamer>(&Parser.getStreamer())) [all...] |
/external/protobuf/src/google/protobuf/compiler/ |
parser.h | 56 class Parser; 62 // Parser is a lower-level class which simply converts a single .proto file 66 class LIBPROTOBUF_EXPORT Parser { 68 Parser(); 69 ~Parser(); 103 // Call SetStopAfterSyntaxIdentifier(true) to tell the parser to stop 125 // The Parser often calls SkipStatement() after encountering a syntax 299 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Parser);
|
/external/javassist/src/main/javassist/compiler/ |
Javac.java | 88 Parser p = new Parser(new Lex(src)); 141 private CtBehavior compileMethod(Parser p, MethodDecl md) 211 Parser p = new Parser(new Lex(src)); 434 Parser p = new Parser(new Lex(target)); 522 Parser p = new Parser(new Lex(target)); 563 Parser p = new Parser(new Lex(src)) [all...] |
/external/llvm/lib/Target/SystemZ/AsmParser/ |
SystemZAsmParser.cpp | 296 MCAsmParser &Parser; 330 SystemZAsmParser(MCSubtargetInfo &sti, MCAsmParser &parser) 331 : MCTargetAsmParser(), STI(sti), Parser(parser) { 332 MCAsmParserExtension::Initialize(Parser); 432 Reg.StartLoc = Parser.getTok().getLoc(); 435 if (Parser.getTok().isNot(AsmToken::Percent)) 436 return Error(Parser.getTok().getLoc(), "register expected"); 437 Parser.Lex(); 440 if (Parser.getTok().isNot(AsmToken::Identifier) [all...] |
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/ |
parser.h | 56 class Parser; 62 // Parser is a lower-level class which simply converts a single .proto file 66 class LIBPROTOBUF_EXPORT Parser { 68 Parser(); 69 ~Parser(); 106 // Call SetStopAfterSyntaxIdentifier(true) to tell the parser to stop 130 // The Parser often calls SkipStatement() after encountering a syntax 207 // destructor records the end location. Since the parser is 212 LocationRecorder(Parser* parser); [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
SyntaxTreeBuilder.java | 26 import com.google.clearsilver.jsilver.syntax.parser.Parser; 27 import com.google.clearsilver.jsilver.syntax.parser.ParserException; 96 // AutoEscaper contains per-AST context like HTML parser object. 111 Parser parser = new Parser(lexer); local 112 Start root = parser.parse();
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/ |
actions.rb | 39 example "parser action execution" do 41 parser = ParserActions::Parser.new lexer 43 parser.declaration.should == 'foo' 55 @parser::members { 92 parser = AllKindsOfActions::Parser.new lexer 93 parser.prog 95 parser.output.should == <<-END.fixed_indent( 0 ) 142 parser = Finally::Parser.new lexe [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/ |
test_parser.py | 34 from webkitpy.thirdparty.BeautifulSoup import BeautifulSoup as Parser 55 self.test_doc = Parser(self.filesystem.read_binary_file(filename)) 76 self.test_doc = Parser(test_contents) 79 self.ref_doc = Parser(ref_contents)
|
/external/clang/lib/AST/ |
CommentParser.cpp | 1 //===--- CommentParser.cpp - Doxygen comment parser -----------------------===// 24 Parser &P; 138 TextTokenRetokenizer(llvm::BumpPtrAllocator &Allocator, Parser &P): 248 Parser::Parser(Lexer &L, Sema &S, llvm::BumpPtrAllocator &Allocator, 256 void Parser::parseParamCommandArgs(ParamCommandComment *PC, 274 void Parser::parseTParamCommandArgs(TParamCommandComment *TPC, 284 void Parser::parseBlockCommandArgs(BlockCommandComment *BC, 302 BlockCommandComment *Parser::parseBlockCommand() { 394 InlineCommandComment *Parser::parseInlineCommand() [all...] |
/external/jsilver/src/com/google/streamhtmlparser/ |
HtmlParser.java | 21 * of Automatic context-aware escaping. The HTML parser also embeds a 22 * Javascript parser for processing Javascript fragments. In the future, 26 * <p>Note: These are the exact methods exposed in the original C++ Parser. The 29 public interface HtmlParser extends Parser { 32 * The Parser Mode requested for parsing a given template. 59 * Indicates the type of HTML attribute that the parser is currently in or 60 * {@code NONE} if the parser is not currently in an attribute. 77 * All the states in which the parser can be. These are external states. 78 * The parser has many more internal states that are not exposed and which 80 * {@code STATE_TEXT} the parser is in HTML proper [all...] |
/external/llvm/lib/Target/X86/AsmParser/ |
X86AsmParser.cpp | 50 MCAsmParser &Parser; 478 MCAsmParser &getParser() const { return Parser; } 480 MCAsmLexer &getLexer() const { return Parser.getLexer(); } 486 return Parser.Error(L, Msg, Ranges); 558 X86AsmParser(MCSubtargetInfo &sti, MCAsmParser &parser) 559 : MCTargetAsmParser(), STI(sti), Parser(parser), InstInfo(0) { 1032 const AsmToken &PercentTok = Parser.getTok(); 1038 Parser.Lex(); // Eat percent token. 1040 const AsmToken &Tok = Parser.getTok() [all...] |
/packages/apps/Exchange/src/com/android/exchange/adapter/ |
MeetingResponseParser.java | 27 public class MeetingResponseParser extends Parser {
|