HomeSort by relevance Sort by last modified time
    Searched defs:parse (Results 51 - 75 of 3737) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
__init__.py 29 def parse(source, handler, errorHandler=ErrorHandler()): function
33 parser.parse(source)
49 parser.parse(inpsrc)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
parser.py 57 def parse(self, fp, headersonly=False):
83 return self.parse(StringIO(text), headersonly=headersonly)
89 def parse(self, fp, headersonly=True):
90 return Parser.parse(self, fp, True)
56 def parse(self, fp, headersonly=False): member in class:Parser
87 def parse(self, fp, headersonly=True): member in class:HeaderParser
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
__init__.py 29 def parse(source, handler, errorHandler=ErrorHandler()): function
33 parser.parse(source)
49 parser.parse(inpsrc)
  /tools/loganalysis/src/com/android/loganalysis/parser/
IParser.java 36 public IItem parse(List<String> lines); method in interface:IParser
NoopParser.java 30 public IItem parse(List<String> block) { method in class:NoopParser
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/
ProvidersTest.java 39 ParseResult<CompilationUnit> parse = parser.parse(ParseStart.COMPILATION_UNIT, provider); local
40 assertTrue(parse.isSuccessful());
48 ParseResult<CompilationUnit> parse = parser.parse(ParseStart.COMPILATION_UNIT, provider); local
49 assertFalse(parse.isSuccessful());
60 ParseResult<CompilationUnit> parse = parser.parse(ParseStart.COMPILATION_UNIT, provider); local
61 assertTrue(parse.isSuccessful());
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/utils/
SourceZipTest.java 48 List<Pair<Path, ParseResult<CompilationUnit>>> results = sourceZip.parse();
62 sourceZip.parse((path, result) -> results.add(new Pair<>(path, result)));
74 new SourceZip(testDir.resolve("test")).parse(); method
79 new SourceZip(testDir.resolve("test.txt")).parse(); method
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
UserDataBox.java 41 public void parse(ReadableByteChannel readableByteChannel, ByteBuffer header, long contentSize, BoxParser boxParser) throws IOException { method in class:UserDataBox
42 super.parse(readableByteChannel, header, contentSize, boxParser); //To change body of overridden methods use File | Settings | File Templates.
  /external/testng/src/main/java/org/testng/xml/
ResultXMLParser.java 34 public void parse() { method in class:ResultXMLParser
38 public Object parse(String currentFile, InputStream inputStream, boolean loadClasses) { method in class:ResultXMLParser
43 parse(inputStream, handler); method
101 parser.parse(fileName, new FileInputStream(new File(fileName)), false /* don't load classes */);
  /bionic/libc/tools/
genserv.py 41 def parse(f): function
69 services = parse(sys.stdin)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
version.py 15 * the 'parse' method takes a string and parses it to some internal
17 'parse' raises a ValueError exception
19 if supplied, is passed to 'parse'
20 * __str__ reconstructs the string that was passed to 'parse' (or
40 self.parse(vstring)
49 # __init__ (string) - create and take same action as 'parse'
51 # parse (string) - convert a string representation to whatever
55 # (if not identical to) the string supplied to parse
104 def parse (self, vstring): member in class:StrictVersion
265 self.parse(vstring)
268 def parse (self, vstring): member in class:LooseVersion
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
hetero-nodes.rb 593 def parse( grammar_name, grammar_rule, input ) method in class:TestHeterogeneousNodeTypes
621 result = parse( :VToken, :a, 'a' )
627 result = parse( :TokenWithQualifiedType, :a, 'a' )
633 result = parse( :TokenWithLabel, :a, 'a' )
639 result = parse( :TokenWithListLabel, :a, 'a' )
645 result = parse( :TokenRoot, :a, 'a' )
651 result = parse( :TokenRootWithListLabel, :a, 'a' )
657 result = parse( :FromString, :a, 'begin' )
663 result = parse( :StringRoot, :a, 'begin' )
669 result = parse( :RewriteToken, :a, 'a'
    [all...]
  /external/apache-http/src/org/apache/http/cookie/
CookieAttributeHandler.java 54 * Parse the given cookie attribute value and update the corresponding
60 void parse(SetCookie cookie, String value) method in interface:CookieAttributeHandler
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicCommentHandler.java 48 public void parse(final SetCookie cookie, final String value) method in class:BasicCommentHandler
BasicSecureHandler.java 50 public void parse(final SetCookie cookie, final String value) method in class:BasicSecureHandler
  /external/autotest/cli/
suite.py 83 def parse(self): member in class:suite_create
105 options, leftover = suite.parse(
test.py 75 def parse(self): member in class:test_list
76 (options, leftover) = super(test_list, self).parse()
user.py 68 def parse(self): member in class:user_list
69 (options, leftover) = super(user_list, self).parse()
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
Parser.java 56 void parse(Reader reader, Data output, ErrorHandler errorHandler, ResourceLoader resourceLoader, method in interface:Parser
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugLoc.cpp 37 void DWARFDebugLoc::parse(DataExtractor data, unsigned AddressSize) { function in class:DWARFDebugLoc
77 void DWARFDebugLocDWO::parse(DataExtractor data) { function in class:DWARFDebugLocDWO
  /external/llvm/utils/release/
findRegressions-nightly.py 12 def parse(file): function
124 d_old = parse(sys.argv[1])
125 d_new = parse(sys.argv[2])
  /external/mesa3d/scons/
source_list.py 59 """Parse a variable definition line."""
85 """Parse a source list line."""
112 def parse(self, filename): member in class:SourceListParser
113 """Parse a source list file."""
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
GroupEntry.java 22 public abstract void parse(ByteBuffer byteBuffer); method in class:GroupEntry
  /external/nist-sip/java/gov/nist/javax/sip/parser/
AuthorizationParser.java 45 * @param authorization Authorization message to parse
60 * parse the String message
64 public SIPHeader parse() throws ParseException { method in class:AuthorizationParser
65 dbg_enter("parse");
69 super.parse(auth);
72 dbg_leave("parse");
ProxyAuthenticateParser.java 44 * @param proxyAuthenticate message to parse
59 * parse the String message
63 public SIPHeader parse() throws ParseException { method in class:ProxyAuthenticateParser
66 super.parse(proxyAuthenticate);
84 ProxyAuthenticate pa= (ProxyAuthenticate) pap.parse();

Completed in 490 milliseconds

1 23 4 5 6 7 8 91011>>