/external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/ots/src/ |
layout.h | 19 bool (*parse)(const OpenTypeFile *file, const uint8_t *data, member in struct:ots::LookupSubtableParser::TypeParser 26 bool Parse(const OpenTypeFile *file, const uint8_t *data,
|
/external/chromium_org/third_party/skia/src/ports/ |
SkXMLParser_tinyxml.cpp | 48 (void)doc.Parse(buf); 59 bool SkXMLParser::parse(SkStream& stream) function in class:SkXMLParser 72 bool SkXMLParser::parse(const char doc[], size_t len) function in class:SkXMLParser
|
/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/ |
DWARFDebugLoc.cpp | 37 void DWARFDebugLoc::parse(DataExtractor data, unsigned AddressSize) { function in class:DWARFDebugLoc
|
/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();
|
ProxyAuthorizationParser.java | 45 * @param proxyAuthorization -- header to parse 60 * parse the String message 64 public SIPHeader parse() throws ParseException { method in class:ProxyAuthorizationParser 67 super.parse(proxyAuth); 86 ProxyAuthorization pa= (ProxyAuthorization) pap.parse(); 91 pap.parse();
|
ReplyToParser.java | 44 * @param replyTo the header to parse 52 * param lexer the lexer to use to parse the header 59 * parse the String message and generate the ReplyTo List Object 63 public SIPHeader parse() throws ParseException { method in class:ReplyToParser 66 dbg_enter("ReplyTo.parse"); 73 super.parse(replyTo); 78 dbg_leave("ReplyTo.parse"); 92 ReplyTo re = (ReplyTo) rt.parse();
|
ToParser.java | 55 public SIPHeader parse() throws ParseException { method in class:ToParser 59 super.parse(to); 82 To t = (To) tp.parse();
|
WWWAuthenticateParser.java | 44 * @param wwwAuthenticate - message to parse 59 * parse the String message 63 public SIPHeader parse() throws ParseException { method in class:WWWAuthenticateParser 65 dbg_enter("parse"); 69 super.parse(wwwAuthenticate); 73 dbg_leave("parse");
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ims/ |
SecurityClientParser.java | 63 public SIPHeader parse() throws ParseException method in class:SecurityClientParser 65 dbg_enter("SecuriryClient parse"); 71 (SecurityClientList) super.parse(secClient); 76 dbg_leave("SecuriryClient parse");
|
SecurityServerParser.java | 63 public SIPHeader parse() throws ParseException method in class:SecurityServerParser 65 dbg_enter("SecuriryServer parse"); 71 (SecurityServerList) super.parse(secServer); 75 dbg_leave("SecuriryServer parse"); 106 SecurityServer secServer= (SecurityServer) parser.parse(); 116 SecurityServerList secList = (SecurityServerList) parser.parse();
|
SecurityVerifyParser.java | 62 public SIPHeader parse() throws ParseException method in class:SecurityVerifyParser 64 dbg_enter("SecuriryVerify parse"); 70 (SecurityVerifyList) super.parse(secVerify); 74 dbg_leave("SecuriryVerify parse");
|
/external/skia/src/ports/ |
SkXMLParser_tinyxml.cpp | 48 (void)doc.Parse(buf); 59 bool SkXMLParser::parse(SkStream& stream) function in class:SkXMLParser 72 bool SkXMLParser::parse(const char doc[], size_t len) function in class:SkXMLParser
|
/frameworks/base/tools/aapt/ |
ResourceFilter.cpp | 10 ResourceFilter::parse(const char* arg) function in class:ResourceFilter
|
/frameworks/compile/mclinker/include/mcld/Support/ |
CommandLine.h | 32 // parse - Return true on error. 33 bool parse(Option &pOption, 54 // parse - Return true on error. 55 bool parse(cl::Option &O, StringRef ArgName, StringRef Arg, bool &Val) { function in class:llvm::cl::FalseParser 56 if (cl::parser<bool>::parse(O, ArgName, Arg, Val)) 70 bool parse(Option &O, 90 bool parse(Option &O, StringRef ArgName, StringRef Arg, mcld::ZOption &Val);
|
/frameworks/compile/mclinker/lib/Support/ |
CommandLine.cpp | 26 // parse - Return true on error. 27 bool SearchDirParser::parse(Option &pOption, function in class:SearchDirParser 63 bool parser<mcld::sys::fs::Path>::parse(llvm::cl::Option &O, function in class:parser 97 bool parser<mcld::ZOption>::parse(llvm::cl::Option &O, function in class:parser
|
/frameworks/opt/vcard/java/com/android/vcard/ |
VCardParser.java | 37 * <p>This method reads a whole InputStream. If you just want to parse one vCard entry inside 40 * @param is The source to parse. 43 public abstract void parse(InputStream is) throws IOException, VCardException; method in class:VCardParser 71 * @param is The source to parse. 78 * {@link #parse(InputStream)} 81 public void parse(InputStream is, VCardInterpreter interpreter) method in class:VCardParser 84 parse(is); 89 * Cancel parsing vCard. Useful when you want to stop the parse in the other threads.
|
/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...] |
/prebuilts/python/darwin-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/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
|