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

1 2 3 45 6 7 8 91011>>

  /prebuilts/gdb/linux-x86/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/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
field.go 29 // Parse extracts the bitfield b from i, and return it as an unsigned integer.
30 // Parse will panic if b is invalid.
31 func (b BitField) Parse(i uint32) uint32 {
41 u := int32(b.Parse(i))
60 // parse extracts the bitfields from i, concatenate them and return the result
62 // parse will panic if any bitfield in b is invalid, but it doesn't check if
64 func (bs BitFields) parse(i uint32) (u uint32, Bits uint8) { func
66 u = (u << b.Bits) | b.Parse(i)
72 // Parse extracts the bitfields from i, concatenate them and return the result
73 // as an unsigned integer. Parse will panic if any bitfield in b is invalid
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
field.go 29 // Parse extracts the bitfield b from i, and return it as an unsigned integer.
30 // Parse will panic if b is invalid.
31 func (b BitField) Parse(i uint32) uint32 {
41 u := int32(b.Parse(i))
60 // parse extracts the bitfields from i, concatenate them and return the result
62 // parse will panic if any bitfield in b is invalid, but it doesn't check if
64 func (bs BitFields) parse(i uint32) (u uint32, Bits uint8) { func
66 u = (u << b.Bits) | b.Parse(i)
72 // Parse extracts the bitfields from i, concatenate them and return the result
73 // as an unsigned integer. Parse will panic if any bitfield in b is invalid
    [all...]
  /prebuilts/python/darwin-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/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...]
  /tools/loganalysis/src/com/android/loganalysis/parser/
DumpsysProcStatsParser.java 25 * A {@link IParser} to parse procstats and create a mapping table of process names and UIDs
40 public DumpsysProcStatsItem parse(List<String> lines) { method in class:DumpsysProcStatsParser
LocationServiceParser.java 44 public LocationDumpsItem parse(List<String> lines) { method in class:LocationServiceParser
SystemPropsParser.java 38 public SystemPropsItem parse(List<String> lines) { method in class:SystemPropsParser
TopParser.java 46 public TopItem parse(List<String> lines) { method in class:TopParser
  /external/nist-sip/java/gov/nist/javax/sip/parser/ims/
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");
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");
  /external/testng/src/main/java/org/testng/xml/
XMLParser.java 37 public void parse(InputStream is, DefaultHandler dh) throws SAXException, IOException { method in class:XMLParser
39 m_saxParser.parse(is, dh);
122 // new Parser("c:/eclipse-workspace/testng/test/testng.xml").parse();
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/
HSConnectionCapabilityElement.java 46 * Parse a HSConnectionCapabilityElement from the given buffer.
52 public static HSConnectionCapabilityElement parse(ByteBuffer payload) { method in class:HSConnectionCapabilityElement
55 statusList.add(ProtocolPortTuple.parse(payload));
NAIRealmElement.java 48 * Parse a NAIRealmElement from the given buffer.
54 public static NAIRealmElement parse(ByteBuffer payload) method in class:NAIRealmElement
61 realmDataList.add(NAIRealmData.parse(payload));
HSOsuProvidersElement.java 61 * Parse a HSOsuProvidersElement from the given buffer.
68 public static HSOsuProvidersElement parse(ByteBuffer payload) method in class:HSOsuProvidersElement
80 providers.add(OsuProviderInfo.parse(payload));
NAIRealmData.java 60 * Parse a NAIRealmData from the given buffer.
67 public static NAIRealmData parse(ByteBuffer payload) throws ProtocolException { method in class:NAIRealmData
87 eapMethodList.add(EAPMethod.parse(payload));
  /tools/tradefederation/core/src/com/android/tradefed/util/xml/
AbstractXmlParser.java 54 public void parse(InputStream xmlInput) throws ParseException { method in class:AbstractXmlParser
62 parser.parse(new InputSource(xmlInput), handler);
  /external/apache-http/src/org/apache/http/impl/cookie/
CookieSpecBase.java 76 protected List<Cookie> parse(final HeaderElement[] elems, final CookieOrigin origin) method in class:CookieSpecBase
100 handler.parse(cookie, attrib.getValue());
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOM2Helper.java 112 * Parse an XML document.
121 * <p>Applications may not invoke this method while a parse is in
123 * additional XML document). Once a parse is complete, an
133 public void parse(InputSource source) throws TransformerException method in class:DOM2Helper
173 setDocument(parser.parse(source));
  /external/desugar/java/com/google/devtools/common/options/
Options.java 24 * The {@link Options#parse(Class, String...)} method in this class has no clear
31 * parser.parse(FooOptions.class, args);
48 * Parse the options provided in args, given the specification in
51 public static <O extends OptionsBase> Options<O> parse(Class<O> optionsClass, String... args) method in class:Options
54 parser.parse(OptionPriority.PriorityCategory.COMMAND_LINE, null, Arrays.asList(args));
85 return parse(optionsClass, new String[0]).getOptions();
118 * Returns the arguments that we didn't parse.
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
ParseExceptionsTest.java 63 DescriptorProto parse(InputStream in) throws IOException; method in interface:ParseExceptionsTest.ParseTester
87 public DescriptorProto parse(InputStream in) throws IOException {
98 public DescriptorProto parse(InputStream in) throws IOException {
109 public DescriptorProto parse(InputStream in) throws IOException {
120 public DescriptorProto parse(InputStream in) throws IOException {
132 public DescriptorProto parse(InputStream in) throws IOException {
143 public DescriptorProto parse(InputStream in) throws IOException {
154 public DescriptorProto parse(InputStream in) throws IOException {
165 public DescriptorProto parse(InputStream in) throws IOException {
178 public DescriptorProto parse(InputStream in) throws IOException
    [all...]
  /frameworks/base/core/java/android/util/
Xml.java 52 public static void parse(String xml, ContentHandler contentHandler) method in class:Xml
57 reader.parse(new InputSource(new StringReader(xml)));
67 public static void parse(Reader in, ContentHandler contentHandler) method in class:Xml
71 reader.parse(new InputSource(in));
78 public static void parse(InputStream in, Encoding encoding, method in class:Xml
84 reader.parse(source);
  /frameworks/base/wifi/java/android/net/wifi/hotspot2/omadm/
XMLParser.java 59 public XMLNode parse(String text) throws IOException, SAXException { method in class:XMLParser
70 parser.parse(new InputSource(new StringReader(text)), this);
  /libcore/luni/src/main/java/javax/xml/parsers/
SAXParser.java 109 * <p>Parse the content of the given {@link java.io.InputStream}
118 * @throws SAXException If parse produces a SAX error.
124 public void parse(InputStream is, HandlerBase hb) method in class:SAXParser
131 this.parse(input, hb);
135 * <p>Parse the content of the given {@link java.io.InputStream}
152 public void parse( method in class:SAXParser
163 this.parse(input, hb);
167 * Parse the content of the given {@link java.io.InputStream}
180 public void parse(InputStream is, DefaultHandler dh) method in class:SAXParser
187 this.parse(input, dh)
205 public void parse( method in class:SAXParser
235 public void parse(String uri, HandlerBase hb) method in class:SAXParser
259 public void parse(String uri, DefaultHandler dh) method in class:SAXParser
284 public void parse(File f, HandlerBase hb) method in class:SAXParser
313 public void parse(File f, DefaultHandler dh) method in class:SAXParser
346 public void parse(InputSource is, HandlerBase hb) method in class:SAXParser
377 public void parse(InputSource is, DefaultHandler dh) method in class:SAXParser
    [all...]
  /build/kati/
rule_parser.go 173 // parse parses rule line.
179 func (r *rule) parse(line []byte, assign *assignAST, rhs expr) (*assignAST, error) { func

Completed in 510 milliseconds

1 2 3 45 6 7 8 91011>>