/frameworks/native/libs/input/ |
KeyLayoutMap.cpp | 30 // Enables debug output for the parser. 33 // Enables debug output for parser performance. 68 Parser parser(map.get(), tokenizer); 69 status = parser.parse(); 189 // --- KeyLayoutMap::Parser --- 191 KeyLayoutMap::Parser::Parser(KeyLayoutMap* map, Tokenizer* tokenizer) : 195 KeyLayoutMap::Parser::~Parser() { [all...] |
/prebuilts/tools/common/m2/repository/org/pegdown/pegdown/1.1.0/ |
pegdown-1.1.0.jar | |
/external/v8/src/parsing/ |
parser.cc | 5 #include "src/parsing/parser.h" 110 DiscardableZoneScope(Parser* parser, Zone* temp_zone, bool use_temp_zone) 111 : ast_node_factory_scope_(parser->factory(), temp_zone, use_temp_zone), 112 fni_(parser->ast_value_factory_, temp_zone), 113 parser_(parser), 114 prev_fni_(parser->fni_), 115 prev_zone_(parser->zone_) { 139 Parser* parser_; 146 void Parser::SetCachedData(ParseInfo* info) [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/main/ |
main-scripts.rb | 31 # when the parser script is run directly 78 example 'using Parser.main to run the built-in parser script utility with a combo grammar' do 91 MainForCombined::Parser.main( 98 example 'using built-in main to inspect AST constructed by an AST-building parser' do 114 ASTParserMain::Parser.main( 121 example "using a tree parser's built-in main" do 151 %w(--rule r --parser-name TreeMain::Parser 152 --parser-rule r --lexer-name TreeMain::Lexer) [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/ |
properties.rb | 12 @parser::members { 42 parser = RuleProperties::Parser.new lexer 43 start, stop, text = parser.a.bla 59 @parser::members { 88 parser = Labels::Parser.new lexer 89 ids, w = parser.a 114 @parser::members { 163 parser = TokenLabels::Parser.new lexe [all...] |
/external/conscrypt/common/src/main/java/org/conscrypt/ |
OpenSSLX509CertificateFactory.java | 70 private static abstract class Parser<T> { 221 private Parser<OpenSSLX509Certificate> certificateParser = 222 new Parser<OpenSSLX509Certificate>() { 248 private Parser<OpenSSLX509CRL> crlParser = 249 new Parser<OpenSSLX509CRL>() {
|
/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" 35 StmtResult Parser::ParseStatement(SourceLocation *TrailingElseLoc, 102 Parser::ParseStatementOrDeclaration(StmtVector &Stmts, 155 Parser::ParseStatementOrDeclarationAfterAttributes(StmtVector &Stmts, 161 // Cases in this switch statement should fall through if the parser expects 397 StmtResult Parser::ParseExprStatement() { 438 StmtResult Parser::ParseSEHTryBlock() { 476 StmtResult Parser::ParseSEHExceptBlock(SourceLocation ExceptLoc) [all...] |
ParseOpenMP.cpp | 19 #include "clang/Parse/Parser.h" 48 Parser *P; 51 ThreadprivateListParserHelper(Parser *P) : P(P) {} 82 static OpenMPDirectiveKind ParseOpenMPDirectiveKind(Parser &P) { 143 static DeclarationName parseOpenMPReductionId(Parser &P) { 185 Parser::StopBeforeMatch); 204 Parser::DeclGroupPtrTy 205 Parser::ParseOpenMPDeclareReductionDirective(AccessSpecifier AS) { 364 Parser &P; 366 Parser::ParseScope *TempScope [all...] |
/external/flatbuffers/src/ |
idl_parser.cpp | 75 CheckedError Parser::Error(const std::string &msg) { 90 CheckedError Parser::CheckBitsFit(int64_t val, size_t bits) { 105 template<typename T> inline CheckedError atot(const char *s, Parser &parser, 108 ECHECK(parser.CheckBitsFit(i, sizeof(T) * 8)); 112 template<> inline CheckedError atot<uint64_t>(const char *s, Parser &parser, 114 (void)parser; 118 template<> inline CheckedError atot<bool>(const char *s, Parser &parser, [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/ |
DecParser.py | 33 from Parser.DecParserMisc import TOOL_NAME
34 from Parser.DecParserMisc import CleanString
35 from Parser.DecParserMisc import IsValidPcdDatum
36 from Parser.DecParserMisc import ParserHelper
37 from Parser.DecParserMisc import StripRoot
38 from Parser.DecParserMisc import VERSION_PATTERN
39 from Parser.DecParserMisc import CVAR_PATTERN
40 from Parser.DecParserMisc import PCD_TOKEN_PATTERN
41 from Parser.DecParserMisc import MACRO_PATTERN
42 from Parser.DecParserMisc import FileContent [all...] |
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
CommandLine.h | 490 // parser class - Parameterizable parser for different data types. By default, 492 // you would expect. The default parser, used for data types that are not 498 // not need replicated for every instance of the generic parser. This also 593 // Default parser implementation - This implementation depends on having a 596 // command line option for -help. Because this is a simple mapping parser, the 600 class parser : public generic_parser_base { class in namespace:llvm::cl 699 // basic_parser - The real basic parser is just a template wrapper that provides 710 // parser<bool> 713 class parser<bool> : public basic_parser<bool> class in namespace:llvm::cl 744 class parser<boolOrDefault> : public basic_parser<boolOrDefault> { class in namespace:llvm::cl 769 class parser<int> : public basic_parser<int> { class in namespace:llvm::cl 791 class parser<unsigned> : public basic_parser<unsigned> { class in namespace:llvm::cl 812 class parser<unsigned long long> : public basic_parser<unsigned long long> { class in namespace:llvm::cl 834 class parser<double> : public basic_parser<double> { class in namespace:llvm::cl 855 class parser<float> : public basic_parser<float> { class in namespace:llvm::cl 876 class parser<std::string> : public basic_parser<std::string> { class in namespace:llvm::cl 900 class parser<char> : public basic_parser<char> { class in namespace:llvm::cl [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/ |
GenFds.py | 313 def SingleCheckCallback(option, opt_str, value, parser):
315 setattr(parser.values, option.dest, value)
318 parser.error("Option %s only allows one instance in command line!" % option)
329 Parser = OptionParser(usage=usage, description=__copyright__, version="%prog " + str(versionNumber))
330 Parser.add_option("-f", "--file", dest="filename", type="string", help="Name of FDF file to convert", action="callback", callback=SingleCheckCallback)
331 Parser.add_option("-a", "--arch", dest="archList", help="comma separated list containing one or more of: IA32, X64, IPF, ARM, AARCH64 or EBC which should be built, overrides target.txt?s TARGET_ARCH")
332 Parser.add_option("-q", "--quiet", action="store_true", type=None, help="Disable all messages except FATAL ERRORS.")
333 Parser.add_option("-v", "--verbose", action="store_true", type=None, help="Turn on verbose output with informational messages printed.")
334 Parser.add_option("-d", "--debug", action="store", type="int", help="Enable debug messages at specified level.")
335 Parser.add_option("-p", "--platform", type="string", dest="activePlatform", help="Set the ACTIVE_PLATFORM (…) [all...] |
/prebuilts/go/darwin-x86/src/cmd/asm/internal/asm/ |
parse.go | 5 // Package asm implements the parser and instruction generator for the assembler. 25 type Parser struct { 52 func NewParser(ctxt *obj.Link, ar *arch.Arch, lexer lex.TokenReader) *Parser { 53 return &Parser{ 67 func (p *Parser) errorf(format string, args ...interface{}) { 88 func (p *Parser) Parse() (*obj.Prog, bool) { 99 func (p *Parser) line() bool { 199 func (p *Parser) instruction(op obj.As, word, cond string, operands [][]lex.Token) { 216 func (p *Parser) pseudo(word string, operands [][]lex.Token) bool { 234 func (p *Parser) start(operand []lex.Token) [all...] |
/prebuilts/go/linux-x86/src/cmd/asm/internal/asm/ |
parse.go | 5 // Package asm implements the parser and instruction generator for the assembler. 25 type Parser struct { 52 func NewParser(ctxt *obj.Link, ar *arch.Arch, lexer lex.TokenReader) *Parser { 53 return &Parser{ 67 func (p *Parser) errorf(format string, args ...interface{}) { 88 func (p *Parser) Parse() (*obj.Prog, bool) { 99 func (p *Parser) line() bool { 199 func (p *Parser) instruction(op obj.As, word, cond string, operands [][]lex.Token) { 216 func (p *Parser) pseudo(word string, operands [][]lex.Token) bool { 234 func (p *Parser) start(operand []lex.Token) [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/UnitTest/ |
InfBinarySectionTest.py | 15 #import Object.Parser.InfObject as InfObject
16 from Object.Parser.InfCommonObject import CurrentLine
17 from Object.Parser.InfCommonObject import InfLineCommentObject
18 from Object.Parser.InfBinaryObject import InfBinariesObject
244 # Construct SectionString for call section parser usage.
|
/external/clang/include/clang/ASTMatchers/Dynamic/ |
Parser.h | 1 //===--- Parser.h - Matcher expression parser -----*- C++ -*-===// 11 /// \brief Simple matcher expression parser. 13 /// The parser understands matcher expressions of the form: 16 /// The parser does not know how to process the matchers. It delegates this task 49 /// \brief Matcher expression parser. 50 class Parser { 52 /// \brief Interface to connect the parser with the registry and more. 54 /// The parser uses the Sema instance passed into 91 /// \param MatcherName The matcher name found by the parser [all...] |
/external/llvm/lib/Target/AMDGPU/Utils/ |
AMDKernelCodeTUtils.cpp | 164 auto Parser = getParserTable()[Idx]; 165 return Parser ? Parser(C, MCParser, Err) : false;
|
/external/skia/src/sksl/ |
SkSLParser.h | 52 class Parser { 54 Parser(SkString text, SymbolTable& types, ErrorReporter& errors); 56 ~Parser(); 105 // don't need to call any of these outside of the parser. The function declarations in the .cpp
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/parser/ |
ParserImplTest.java | 16 package org.yaml.snakeyaml.parser; 38 private void check(LinkedList<Event> etalonEvents, Parser parser) { 39 while (parser.checkEvent(null)) { 40 Event event = parser.getEvent(); 46 assertFalse("Must contain no more events: " + parser.getEvent(), parser.checkEvent(null)); 52 Parser parser = new ParserImpl(reader); local 66 check(etalonEvents, parser); 72 Parser parser = new ParserImpl(reader); local [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/ |
PythonCore.inf | 62 #Parser
63 Python-$(PYTHON_VERSION)/Parser/acceler.c
64 Python-$(PYTHON_VERSION)/Parser/bitset.c
65 Python-$(PYTHON_VERSION)/Parser/firstsets.c
66 Python-$(PYTHON_VERSION)/Parser/grammar.c
67 Python-$(PYTHON_VERSION)/Parser/grammar1.c
68 Python-$(PYTHON_VERSION)/Parser/listnode.c
69 Python-$(PYTHON_VERSION)/Parser/metagrammar.c
70 Python-$(PYTHON_VERSION)/Parser/myreadline.c
71 Python-$(PYTHON_VERSION)/Parser/node.c [all...] |
/external/caliper/caliper/src/main/java/com/google/caliper/runner/ |
Parameter.java | 20 import com.google.caliper.util.Parser; 42 private final Parser<?> parser; field in class:Parameter 60 this.parser = Parsers.conventionalParser(type); 73 parser.parse(valueAsString); 101 Object o = parser.parse(value);
|
/external/javassist/src/main/javassist/bytecode/ |
ParameterAnnotationsAttribute.java | 25 import javassist.bytecode.AnnotationsAttribute.Parser; 132 return new Parser(info, constPool).parseParameters();
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/ |
ConstructorSequenceTest.java | 25 import org.yaml.snakeyaml.parser.Parser; 26 import org.yaml.snakeyaml.parser.ParserImpl; 71 Parser parser = new ParserImpl(reader); local 73 Composer composer = new Composer(parser, resolver);
|
/external/testng/src/test/java/test/methodinterceptors/ |
MethodInterceptorTest.java | 8 import org.testng.xml.Parser; 102 List<XmlSuite> xmlSuites = new Parser(f.getAbsolutePath()).parseToList();
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/PomAdapter/ |
InfPomAlignment.py | 2 # This file contained the adapter for convert INF parser object to POM Object
52 from Parser import InfParser
68 self.Parser = None
94 # from INF parser's output
98 # Call INF Parser to get information from INF file
100 self.Parser = InfParser.InfParser(self.FileName, self.WorkSpace)
101 self.FullPath = self.Parser.FullPath
132 RecordSet = self.Parser.InfDefSection.Defines
248 Logger.Error("Parser", PARSER_ERROR, ST.ERR_INF_PARSER_NOT_SUPPORT_EDKI_INF, ExtraData=self.FullPath,
299 InfHeaderObj = self.Parser.InfHeader [all...] |