/packages/apps/Exchange/src/com/android/exchange/adapter/ |
MeetingResponseParser.java | 25 * Parse the result of a MeetingRequest command. 50 public boolean parse() throws IOException { method in class:MeetingResponseParser
|
SendMailParser.java | 23 public boolean parse() throws IOException { method in class:SendMailParser
|
SettingsParser.java | 25 * Parse the result of a Settings command. 28 * time. parse() returns true in the normal case; false if access to the account is denied due 40 public boolean parse() throws IOException { method in class:SettingsParser
|
/packages/apps/Tag/src/com/android/apps/tag/record/ |
MimeRecord.java | 70 public static MimeRecord parse(NdefRecord record) { method in class:MimeRecord
|
VCardRecord.java | 90 // TODO: parse content and display something nicer. 134 parser.parse(new ByteArrayInputStream(mVCard), constructor); 138 parser.parse(new ByteArrayInputStream(mVCard), constructor); 152 public static VCardRecord parse(NdefRecord record) { method in class:VCardRecord 153 MimeRecord underlyingRecord = MimeRecord.parse(record); 178 parse(record);
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/ |
SimpleContentHandler.java | 74 currHeader.addField(Field.parse(fieldData));
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/ |
AddressListField.java | 50 public Field parse(final String name, final String body, final String raw) {
method in class:AddressListField.Parser 54 addressList = AddressList.parse(body);
|
ContentTransferEncodingField.java | 83 public Field parse(final String name, final String body, final String raw) {
method in class:ContentTransferEncodingField.Parser
|
DateTimeField.java | 55 public Field parse(final String name, String body, final String raw) {
method in class:DateTimeField.Parser 62 date = DateTime.parse(body).getDate();
|
DelegatingFieldParser.java | 43 public Field parse(final String name, final String body, final String raw) {
method in class:DelegatingFieldParser 45 return parser.parse(name, body, raw);
|
MailboxField.java | 52 public Field parse(final String name, final String body, final String raw) {
method in class:MailboxField.Parser 56 MailboxList mailboxList = AddressList.parse(body).flatten();
|
MailboxListField.java | 52 public Field parse(final String name, final String body, final String raw) {
method in class:MailboxListField.Parser 56 mailboxList = AddressList.parse(body).flatten();
|
UnstructuredField.java | 44 public Field parse(final String name, final String body, final String raw) {
method in class:UnstructuredField.Parser
|
/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...] |
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/ |
TestResultRepo.java | 71 result.parse(new BufferedReader(new FileReader(new File(resultDir, 88 // parsing the summary data should be relatively quick, so just parse it every time 111 results.parse(new BufferedReader(new FileReader(resultFile))); 116 CLog.e("Failed to parse result file for session %d", sessionId);
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/ |
AbstractContainerBox.java | 104 public void parse(ReadableByteChannel readableByteChannel, ByteBuffer header, long contentSize, BoxParser boxParser) throws IOException { method in class:AbstractContainerBox 106 super.parse(readableByteChannel, header, contentSize, boxParser);
|
FullContainerBox.java | 94 public void parse(ReadableByteChannel readableByteChannel, ByteBuffer header, long contentSize, BoxParser boxParser) throws IOException { method in class:FullContainerBox 96 super.parse(readableByteChannel, header, contentSize, boxParser);
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/ |
PlayReadyHeader.java | 48 public void parse(ByteBuffer byteBuffer) { method in class:PlayReadyHeader 133 record.parse((ByteBuffer) byteBuffer.slice().limit(length)); 141 public abstract void parse(ByteBuffer bytes); method in class:PlayReadyHeader.PlayReadyRecord 164 public void parse(ByteBuffer bytes) { method in class:PlayReadyHeader.PlayReadyRecord.RMHeader 212 public void parse(ByteBuffer bytes) { method in class:PlayReadyHeader.PlayReadyRecord.EmeddedLicenseStore 240 public void parse(ByteBuffer bytes) { method in class:PlayReadyHeader.PlayReadyRecord.DefaulPlayReadyRecord
|
/external/smack/src/com/kenai/jbosh/ |
BodyParserSAX.java | 159 public BodyParserResults parse(String xml) throws BOSHException { method in class:BodyParserSAX 165 parser.parse(inStream, new Handler(parser, result)); 172 throw(new BOSHException("Could not parse body:\n" + xml, thrown));
|
/libcore/luni/src/test/java/libcore/xml/ |
SaxTest.java | 34 * Initiate and observe a SAX parse session. 39 parse(false, false, "<foo bar=\"baz\"/>", new DefaultHandler() { method 52 parse(false, false, "<a:foo a:bar=\"baz\"/>", new DefaultHandler() { method 67 parse(false, true, "<foo bar=\"baz\"/>", new DefaultHandler() { method 80 parse(false, true, "<a:foo a:bar=\"baz\" xmlns:a=\"http://quux\"/>", new DefaultHandler() { method 99 parse(true, true, "<foo bar=\"baz\"/>", new DefaultHandler() { method 112 parse(true, true, "<a:foo a:bar=\"baz\" xmlns:a=\"http://quux\"/>", new DefaultHandler() { method 130 parse(true, false, "<foo bar=\"baz\"/>", new DefaultHandler() { method 143 parse(true, false, "<a:foo a:bar=\"baz\"/>", new DefaultHandler() { method 200 reader.parse(new InputSource(new StringReader(xml))) 203 private void parse(boolean prefixes, boolean namespaces, String xml, method in class:SaxTest [all...] |
/external/apache-http/src/org/apache/http/impl/cookie/ |
RFC2965PortAttributeHandler.java | 103 * Parse cookie port attribute. 105 public void parse(final SetCookie cookie, final String portValue) method in class:RFC2965PortAttributeHandler
|
/external/chromium_org/third_party/WebKit/Source/platform/text/ |
DateTimeFormat.cpp | 103 bool DateTimeFormat::parse(const String& source, TokenHandler& tokenHandler) function in class:WebCore::DateTimeFormat
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_linkage.c | 48 struct tgsi_parse_context parse; local 72 tgsi_parse_init(&parse, tokens); 75 while(!tgsi_parse_end_of_tokens(&parse)) 77 tgsi_parse_token(&parse); 79 if(parse.FullToken.Token.Type == TGSI_TOKEN_TYPE_INSTRUCTION) 81 const struct tgsi_full_instruction *finst = &parse.FullToken.FullInstruction; 110 tgsi_parse_free(&parse);
|
/external/chromium_org/third_party/tlslite/tlslite/utils/ |
OpenSSL_RSAKey.py | 117 def parse(s, passwordCallback=None): member in class:.OpenSSL_RSAKey 148 parse = staticmethod(parse) variable in class:.OpenSSL_RSAKey
|