HomeSort by relevance Sort by last modified time
    Searched defs:parse (Results 76 - 100 of 3170) sorted by null

1 2 34 5 6 7 8 91011>>

  /libcore/luni/src/main/java/libcore/net/http/
HttpDate.java 45 * If we fail to parse a date in a non-standard format, try each of these formats in sequence.
71 public static Date parse(String value) { method in class:HttpDate
73 return STANDARD_DATE_FORMAT.get().parse(value);
78 return new SimpleDateFormat(formatString, Locale.US).parse(value);
  /libcore/luni/src/main/java/org/xml/sax/
Parser.java 29 * and to initiate a parse from a URI, or a character stream.</p>
36 * once the first parse has completed successfully, but it may not
37 * invoke the parse() methods recursively within a parse.</p>
62 * not request a locale change in the middle of a parse.</p>
84 * in the middle of a parse, and the SAX parser must begin using
103 * handler in the middle of a parse, and the SAX parser must
122 * middle of a parse, and the SAX parser must begin using the new
141 * middle of a parse, and the SAX parser must begin using the new
153 * Parse an XML document
179 public abstract void parse (InputSource source) method in interface:Parser
205 public abstract void parse (String systemId) method in interface:Parser
    [all...]
  /libcore/ojluni/src/main/java/java/time/format/
SignStyle.java 118 * Parse helper.
125 boolean parse(boolean positive, boolean strict, boolean fixedWidth) { method in class:SignStyle
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/parser/
DeviceAdminIconParser.java 46 public String parse(Uri uri) { method in class:DeviceAdminIconParser
MessageParser.java 52 public ProvisioningParams parse(Intent provisioningIntent) method in class:MessageParser
54 return getParser(provisioningIntent).parse(provisioningIntent);
  /prebuilts/gdb/darwin-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/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");
  /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/base/packages/Osu/src/com/android/hotspot2/omadm/
OMAParser.java 27 public MOTree parse(String text, String urn) throws IOException, SAXException { method in class:OMAParser
30 parser.parse(new InputSource(new StringReader(text)), this);
  /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));
  /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 23 * The {@link Options#parse(Class, String...)} method in this class has no clear
30 * parser.parse(FooOptions.class, args);
47 * Parse the options provided in args, given the specification in
50 public static <O extends OptionsBase> Options<O> parse(Class<O> optionsClass, String... args) method in class:Options
53 parser.parse(OptionPriority.COMMAND_LINE, null, Arrays.asList(args));
65 return parse(optionsClass, new String[0]).getOptions();
98 * Returns the arguments that we didn't parse.
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
ElementParser.java 57 public void parse(String xmlFile){ method in class:ElementParser
59 // Parse the Document
61 parser.parse(xmlFile,this);
70 public void parse(String install, String type, String id){ method in class:ElementParser
82 parse(xmlFile);
107 xmlParser.parse("l:/vabase/team/sonia", "feature", "org.eclipse.platform-feature");
108 xmlParser.parse("l:/vabase/team/sonia", "feature", "org.eclipse.platform.win32-feature");
109 xmlParser.parse("l:/vabase/team/sonia", "feature", "org.eclipse.platform.linux.motif-feature");
110 xmlParser.parse("l:/vabase/team/sonia", "feature", "org.eclipse.platform.linux.gtk-feature");
111 xmlParser.parse("l:/vabase/team/sonia", "feature", "org.eclipse.platform.solaris.motif-feature")
    [all...]

Completed in 759 milliseconds

1 2 34 5 6 7 8 91011>>