HomeSort by relevance Sort by last modified time
    Searched refs:parse (Results 451 - 475 of 4368) sorted by null

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_transformer.py 19 a = transformer.parse(s)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/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...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
classperms.py 114 result = yacc.parse(txt)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_transformer.py 19 a = transformer.parse(s)
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-protobuf/0.13.2/
grpc-protobuf-0.13.2.jar 
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/route53/
connection.py 99 pairs.append(key + '=' + urllib.parse.quote(str(val)))
130 h.parse(body)
158 h.parse(body)
243 h.parse(body)
268 h.parse(body)
307 h.parse(body)
341 h.parse(body)
358 h.parse(body)
379 h.parse(body)
478 h.parse(body
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_fpc_optimize.c 306 struct tgsi_parse_context parse; local
312 tgsi_parse_init( &parse, tokens );
313 while( !tgsi_parse_end_of_tokens( &parse ) ) {
314 tgsi_parse_token( &parse );
317 tgsi_parse_free (&parse);
322 tgsi_parse_init( &parse, tokens );
323 while( !tgsi_parse_end_of_tokens( &parse ) ) {
324 tgsi_parse_token( &parse );
326 if (i915_fpc_useless_mov(&parse.FullToken)) {
331 copy_token(&out_tokens->Tokens[i] , &parse.FullToken)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
DocumentBuilderFactoryTest.java 312 db.parse(getClass().getResourceAsStream("/simple.xml"));
384 Document document = parser.parse(getClass().getResourceAsStream(
412 Document document = parser.parse(getClass().getResourceAsStream(
447 Document document = parser.parse(getClass().getResourceAsStream(
470 Document document = parser.parse(getClass().getResourceAsStream(
545 Document document = parser.parse(getClass().getResourceAsStream(
568 Document document = parser.parse(getClass().getResourceAsStream(
594 Document document = parser.parse(getClass().getResourceAsStream(
613 Document document = parser.parse(getClass().getResourceAsStream(
637 Document document = parser.parse(getClass().getResourceAsStream
    [all...]
  /bionic/libc/tools/
genserv.py 41 def parse(f): function
69 services = parse(sys.stdin)
  /cts/libs/vogar-expect/src/vogar/
ExpectationStore.java 121 public static ExpectationStore parse(Set<File> expectationFiles, ModeId mode) throws IOException { method in class:ExpectationStore
125 result.parse(f, mode);
150 result.parse(url, mode);
156 private void parse(URL url, ModeId mode) throws IOException { method in class:ExpectationStore
161 parse(reader, url.toString(), mode); method
165 public void parse(File expectationsFile, ModeId mode) throws IOException { method in class:ExpectationStore
170 parse(fileReader, source, mode); method
174 private void parse(Reader reader, String source, ModeId mode) throws IOException { method in class:ExpectationStore
  /developers/build/buildSrc/src/main/groovy/com/example/android/samples/build/
SampleGenProperties.groovy 184 def xml = new XmlSlurper().parse(xmlFile)
201 def xml = new XmlSlurper().parse(xmlFile)
227 // Parse the xml into Freemarker's DOM structure
228 def params = freemarker.ext.dom.NodeModel.parse(xmlFile)
266 def xml = new XmlSlurper().parse(xmlFile)
  /external/autotest/cli/
server.py 69 def parse(self): member in class:server
70 """Parse command arguments.
76 (options, leftover) = super(server, self).parse([role_info], **kwargs)
142 def parse(self): member in class:server_list
143 """Parse command arguments.
145 (options, leftover) = super(server_list, self).parse()
200 def parse(self): member in class:server_create
201 """Parse command arguments.
203 (options, leftover) = super(server_create, self).parse()
304 def parse(self) member in class:server_modify
    [all...]
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/harfbuzz_ng/.ci/
deploy-docs.sh 12 REVISION=$(git rev-parse --short HEAD)
  /external/icu/icu4c/source/test/intltest/
dtfmapts.cpp 181 // ======= Test parse()
184 logln("Testing parse()");
197 result2 = def->parse(text, status);
199 errln("ERROR: parse() failed, stopping testing");
204 result3 = def->parse(text, pos01);
273 * Test hiding of parse() and format() APIs in the Format hierarchy.
316 sdf.parse(str, status);
317 sdf.parse(str, ppos);
352 fmt.parse(str, obj, ppos);
353 fmt.parse(str, obj, status)
    [all...]
  /external/jcommander/src/test/java/com/beust/jcommander/
CmdTest.java 41 jc.parse(newArgs.toArray(new String[0]));
44 jc.parse(args);
ConverterFactoryTest.java 55 jc.parse("-hostport", "example.com:8080");
68 jc.parse("a.com:10", "b.com:20");
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/
SoapFault.java 58 public void parse(XmlPullParser parser) throws IOException, XmlPullParserException { method in class:SoapFault
64 detail.parse(parser);
  /external/llvm/include/llvm/Transforms/Utils/
SymbolRewriter.h 55 /// The RewriteMapParser can be used to parse a mapping file that provides the
93 bool parse(const std::string &MapFile, RewriteDescriptorList *Descriptors);
96 bool parse(std::unique_ptr<MemoryBuffer> &MapFile, RewriteDescriptorList *DL);
  /external/llvm/test/MC/PowerPC/
deprecated-p7.s 12 # FIXME: Test dst and friends once we can parse them.
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/
ProtectionSpecificHeader.java 52 protectionSpecificHeader.parse(bufferWrapper);
57 public void parse(ByteBuffer buffer) { method in class:ProtectionSpecificHeader
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/threegpp26245/
FontTableBox.java 38 fr.parse(content);
71 public void parse(ByteBuffer bb) { method in class:FontTableBox.FontRecord
  /external/nist-sip/java/gov/nist/javax/sip/parser/ims/
PAssertedServiceParser.java 41 * Parse this:
56 public SIPHeader parse() throws ParseException { method in class:PAssertedServiceParser
58 dbg_enter("PAssertedServiceParser.parse");
107 super.parse();
112 dbg_enter("PAssertedServiceParser.parse");
PPreferredServiceParser.java 42 * Parse this:
93 public SIPHeader parse() throws ParseException { method in class:PPreferredServiceParser
95 dbg_enter("PPreferredServiceParser.parse");
145 super.parse();
150 dbg_enter("PPreferredServiceParser.parse");

Completed in 376 milliseconds

<<11121314151617181920>>