/external/testng/src/test/java/test/sanitycheck/ |
CheckSuiteNamesTest.java | 7 import org.testng.xml.Parser; 80 Parser parser = new Parser(testngXmlPath); local 81 tng.setXmlSuites(parser.parseToList());
|
/external/clang/lib/Parse/ |
ParseTemplate.cpp | 14 #include "clang/Parse/Parser.h" 28 Parser::ParseDeclarationStartingWithTemplate(unsigned Context, 61 Parser::ParseTemplateDeclarationOrSpecialization(unsigned Context, 172 Parser::ParseSingleDeclarationAfterTemplate( 330 bool Parser::ParseTemplateParameters(unsigned Depth, 370 Parser::ParseTemplateParameterList(unsigned Depth, 387 // Don't consume this... that's done by template parser. 402 /// \brief Determine whether the parser is at the start of a template 404 bool Parser::isStartOfTemplateTypeParameter() { 480 Decl *Parser::ParseTemplateParameter(unsigned Depth, unsigned Position) [all...] |
/external/llvm/lib/Target/X86/AsmParser/ |
X86AsmParser.cpp | 65 MCAsmParser &Parser = getParser(); 66 SMLoc Result = Parser.getTok().getLoc(); 67 Parser.Lex(); 665 MCAsmParser &Parser = getParser(); 667 return Parser.Error(L, Msg, Ranges); 673 MCAsmParser &Parser = getParser(); 674 Parser.eatToEndOfStatement(); 803 X86AsmParser(const MCSubtargetInfo &sti, MCAsmParser &Parser, 810 CreateX86AsmInstrumentation(Options, Parser.getContext(), STI)); 871 MCAsmParser &Parser = getParser() [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/ |
Ecc.py | 400 Parser = OptionParser(description = self.Copyright, version = self.Version, prog = "Ecc.exe", usage = "%prog [options]")
401 Parser.add_option("-t", "--target sourcepath", action="store", type="string", dest='Target',
403 Parser.add_option("-c", "--config filename", action="store", type="string", dest="ConfigFile",
405 Parser.add_option("-o", "--outfile filename", action="store", type="string", dest="OutputFile",
407 Parser.add_option("-r", "--reportfile filename", action="store", type="string", dest="ReportFile",
409 Parser.add_option("-e", "--exceptionfile filename", action="store", type="string", dest="ExceptionFile",
411 Parser.add_option("-m", "--metadata", action="store_true", type=None, help="Only scan meta-data files information if this option is specified.")
412 Parser.add_option("-s", "--sourcecode", action="store_true", type=None, help="Only scan source code files information if this option is specified.")
413 Parser.add_option("-k", "--keepdatabase", action="store_true", type=None, help="The existing Ecc database will not be cleaned except report information if this option is specified.")
414 Parser.add_option("-l", "--log filename", action="store", dest="LogFile", help="""If specified, the tool (…) [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/ |
Eot.py | 32 from Parser import ConvertGuid
601 Parser = OptionParser(description = self.Copyright, version = self.Version, prog = "Eot.exe", usage = "%prog [options]")
602 Parser.add_option("-m", "--makefile filename", action="store", type="string", dest='MakeFile',
604 Parser.add_option("-c", "--dsc filename", action="store", type="string", dest="DscFile",
606 Parser.add_option("-f", "--fv filename", action="store", type="string", dest="FvFileList",
608 Parser.add_option("-a", "--map filename", action="store", type="string", dest="MapFileList",
610 Parser.add_option("-s", "--source files", action="store", type="string", dest="SourceFileList",
612 Parser.add_option("-i", "--include dirs", action="store", type="string", dest="IncludeDirList",
614 Parser.add_option("-e", "--dec files", action="store", type="string", dest="DecFileList",
616 Parser.add_option("-g", "--guid list", action="store", type="string", dest="GuidList", [all...] |
/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/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/pcre/pcrecpp/include/ |
pcrecpparg.h | 65 typedef bool (*Parser)(const char* str, int n, void* dest); 70 Arg(type* p, Parser parser) : arg_(p), parser_(parser) { } 95 template <class T> Arg(T*, Parser parser); 106 Parser parser_; 145 // This part of the parser, appropriate only for ints, deals with bases
|
/hardware/intel/common/libmix/mix_vbp/ |
mixvbp.spec | 7 Summary: MIX Video Bitstream Parser 19 MIX Video Bitstream Parser is an user library interface for various video format bitstream parsing
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/ |
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);
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/ |
InfDepexSectionParser.py | 2 # This file contained the parser for [Depex] sections in INF file
24 from Parser.InfParserMisc import InfExpandMacro
27 from Parser.InfParserMisc import InfParserSectionRoot
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
Parser.as | 31 /** A parser for TokenStreams. "parser grammars" result in a subclass 34 public class Parser extends BaseRecognizer { 37 public function Parser(input:TokenStream, state:RecognizerSharedState = null) { 71 /** Set the token stream and reset the parser */
|
/external/caliper/caliper/src/main/java/com/google/caliper/runner/ |
BenchmarkCreator.java | 20 import com.google.caliper.util.Parser; 86 Parser<?> parser = Parsers.conventionalParser(field.getType()); local 87 field.set(instance, parser.parse(parameters.get(field.getName())));
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
From.java | 33 import gov.nist.javax.sip.parser.Parser; 150 Parser.checkToken(t);
|
To.java | 33 import gov.nist.javax.sip.parser.Parser; 175 Parser.checkToken(t);
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/ |
ConstructorMappingTest.java | 25 import org.yaml.snakeyaml.parser.Parser; 26 import org.yaml.snakeyaml.parser.ParserImpl; 54 Parser parser = new ParserImpl(reader); local 56 Composer composer = new Composer(parser, resolver);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/ |
Python2710.inf | 57 #Parser
58 Parser/acceler.c
59 Parser/bitset.c
60 Parser/firstsets.c
61 Parser/grammar.c
62 Parser/grammar1.c
63 Parser/listnode.c
64 Parser/metagrammar.c
65 Parser/myreadline.c
66 Parser/node.c [all...] |
/external/flatbuffers/src/ |
idl_gen_grpc.cpp | 148 FlatBufFile(const Parser &parser, const std::string &file_name) 149 : parser_(parser), file_name_(file_name) {} 191 const Parser &parser_; 197 GoGRPCGenerator(const Parser &parser, const std::string &path, 199 : BaseGenerator(parser, path, file_name, "", "" /*Unused*/), 200 parser_(parser), path_(path), file_name_(file_name) {} 219 const Parser &parser_; 223 bool GenerateGoGRPC(const Parser &parser [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/ |
MigrationUtilities.py | 528 Parser = OptionParser(description=Copyright, version=Version, usage=UsageString)
529 Parser.add_option("-o", "--output", dest="OutputFile", help="The name of the %s file to be created." % Destinate)
530 Parser.add_option("-a", "--auto", dest="AutoWrite", action="store_true", default=False, help="Automatically create the %s file using the name of the %s file and replacing file extension" % (Source, Destinate))
531 Parser.add_option("-q", "--quiet", action="store_true", type=None, help="Disable all messages except FATAL ERRORS.")
532 Parser.add_option("-v", "--verbose", action="store_true", type=None, help="Turn on verbose output with informational messages printed.")
534 Options, Args = Parser.parse_args()
546 raise MigrationError(PARAMETER_MISSING, name="Input file", usage=Parser.get_usage())
548 raise MigrationError(PARAMETER_INVALID, name="Too many input files", usage=Parser.get_usage())
556 raise MigrationError(OPTION_CONFLICT, arg1="-o", arg2="-a", usage=Parser.get_usage())
561 raise MigrationError(OPTION_MISSING, name="-o", usage=Parser.get_usage()) [all...] |
/external/llvm/include/llvm/Support/ |
CommandLine.h | 607 // parser class - Parameterizable parser for different data types. By default, 609 // you would expect. The default parser, used for data types that are not 615 // not need replicated for every instance of the generic parser. This also 707 // Default parser implementation - This implementation depends on having a 710 // command line option for -help. Because this is a simple mapping parser, the 713 template <class DataType> class parser : public generic_parser_base { class in namespace:llvm 724 parser(Option &O) : generic_parser_base(O) {} function in class:llvm::parser 815 // basic_parser - The real basic parser is just a template wrapper that provides 830 // parser<bool 834 parser(Option &O) : basic_parser(O) {} function in class:llvm::final 862 parser(Option &O) : basic_parser(O) {} function in class:llvm::final 888 parser(Option &O) : basic_parser(O) {} function in class:llvm::final 910 parser(Option &O) : basic_parser(O) {} function in class:llvm::final 934 parser(Option &O) : basic_parser(O) {} function in class:llvm::final 957 parser(Option &O) : basic_parser(O) {} function in class:llvm::final 979 parser(Option &O) : basic_parser(O) {} function in class:llvm::final 1001 parser(Option &O) : basic_parser(O) {} function in class:llvm::final 1026 parser(Option &O) : basic_parser(O) {} function in class:llvm::final [all...] |
/external/protobuf/src/google/protobuf/compiler/ |
parser.h | 55 class Parser; 61 // Parser is a lower-level class which simply converts a single .proto file 65 class LIBPROTOBUF_EXPORT Parser { 67 Parser(); 68 ~Parser(); 105 // Call SetStopAfterSyntaxIdentifier(true) to tell the parser to stop 129 // The Parser often calls SkipStatement() after encountering a syntax 209 // destructor records the end location. Since the parser is 214 LocationRecorder(Parser* parser); [all...] |
/prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/compiler/ |
parser.h | 55 class Parser; 61 // Parser is a lower-level class which simply converts a single .proto file 65 class LIBPROTOBUF_EXPORT Parser { 67 Parser(); 68 ~Parser(); 105 // Call SetStopAfterSyntaxIdentifier(true) to tell the parser to stop 129 // The Parser often calls SkipStatement() after encountering a syntax 209 // destructor records the end location. Since the parser is 214 LocationRecorder(Parser* parser); [all...] |
/external/v8/src/parsing/ |
pattern-rewriter.cc | 8 #include "src/parsing/parser.h" 14 void Parser::PatternRewriter::DeclareAndInitializeVariables( 15 Parser* parser, Block* block, 24 rewriter.parser_ = parser; 38 void Parser::PatternRewriter::RewriteDestructuringAssignment( 39 Parser* parser, RewritableExpression* to_rewrite, Scope* scope) { 47 rewriter.parser_ = parser; 61 Expression* Parser::PatternRewriter::RewriteDestructuringAssignment [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/ |
GenDepex.py | 369 Parser = OptionParser(description=__copyright__, version=__version__, usage=__usage__)
371 Parser.add_option("-o", "--output", dest="OutputFile", default=None, metavar="FILE",
373 Parser.add_option("-t", "--module-type", dest="ModuleType", default=None,
375 Parser.add_option("-e", "--dependency-expression", dest="Expression", default="",
377 Parser.add_option("-m", "--optimize", dest="Optimize", default=False, action="store_true",
379 Parser.add_option("-v", "--verbose", dest="verbose", default=False, action="store_true",
381 Parser.add_option("-d", "--debug", action="store", type="int", help="Enable debug messages at specified level.")
382 Parser.add_option("-q", "--quiet", dest="quiet", default=False, action="store_true",
385 return Parser.parse_args()
|