/external/autotest/cli/ |
shard.py | 95 def parse(self): member in class:shard_create 96 (options, leftover) = super(shard_create, self).parse( 111 def parse(self): member in class:shard_delete 112 (options, leftover) = super(shard_delete, self).parse()
|
/external/bison/examples/calc++/ |
calc++.cc | 15 else if (!driver.parse (argv[i]))
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/ |
util.py | 197 parsed = list(urllib.parse.urlparse(url)) 198 q = dict(urllib.parse.parse_qsl(parsed[4])) 200 parsed[4] = urllib.parse.urlencode(q) 201 return urllib.parse.urlunparse(parsed)
|
/external/clang/bindings/python/tests/cindex/ |
test_index.py | 14 tu = index.parse(os.path.join(kInputsDir, 'hello.cpp'))
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/ |
runrc.cmd | 21 parse arg name path rest 37 parse arg name path dir
|
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/xml/ |
XMLSupport.java | 35 * Test utility to parse, validate and query XML documents. 74 public Document parse(String document) throws SAXException, IOException, method in class:XMLSupport 76 return builder.parse(new InputSource(new StringReader(document))); 79 public Document parse(byte[] document) throws SAXException, IOException, method in class:XMLSupport 82 .parse(new InputSource(new ByteArrayInputStream(document)));
|
/external/jcommander/src/test/java/com/beust/jcommander/ |
MyClass.java | 14 jCommander.parse("--param=value");
|
/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/parameter-framework/upstream/parameter/ |
CompoundRule.h | 39 // Parse 40 virtual bool parse(CRuleParser &ruleParser, std::string &strError);
|
/external/selinux/libsemanage/src/ |
database_file.h | 17 /* Fill record structuure based on supplied parse info. 20 int (*parse) (semanage_handle_t * handle, member in struct:record_file_table
|
/external/skia/src/svg/parser/ |
SkSVG.cpp | 28 return parser.parse(data, actual, &fErrorCode, &fErrorLineNumber);
|
/external/svox/pico/src/com/svox/pico/ |
DownloadVoiceData.java | 32 Uri marketUri = Uri.parse(MARKET_URI);
|
/external/testng/src/main/java/org/testng/xml/ |
ResultXMLParser.java | 34 public void parse() { method in class:ResultXMLParser 38 public Object parse(String currentFile, InputStream inputStream, boolean loadClasses) { method in class:ResultXMLParser 43 parse(inputStream, handler); method 101 parser.parse(fileName, new FileInputStream(new File(fileName)), false /* don't load classes */);
|
/libcore/luni/src/test/java/libcore/java/util/ |
DateTest.java | 74 Date.parse("Wed, 06 Jan 2016 11:55:59 GMT+05:00"), 75 Date.parse("Wed, 06 Jan 2016 11:55:59 GMT+0500")); 78 Date.parse("Wed, 06 Jan 2016 11:55:59 GMT+05:00"), 79 Date.parse("Wed, 06 Jan 2016 11:55:59 GMT+05"));
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
LauncherSettings.java | 116 public static final Uri CONTENT_URI = Uri.parse("content://" + 136 public static final Uri CONTENT_URI = Uri.parse("content://" + 147 return Uri.parse("content://" + ProviderConfig.AUTHORITY + 319 public static final Uri CONTENT_URI = Uri.parse("content://" +
|
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/ |
AbstractXmlPullParser.java | 36 * Parse the summary data from the given input data. 39 * @throws ParseException if failed to parse the summary data. 41 public void parse(Reader xmlReader) throws ParseException { method in class:AbstractXmlPullParser 46 parse(parser); 54 abstract void parse(XmlPullParser parser) throws XmlPullParserException, IOException; method in class:AbstractXmlPullParser 57 * Parse an integer value from an XML attribute 76 * Parse a boolean attribute value
|
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/tests/ |
mockParser.py | 16 def parse(self, stream, output=True): member in class:HTMLParser 29 prof.runcall(x.parse, sys.argv[1], False) 36 x.parse(sys.argv[1])
|
/external/icu/icu4c/source/samples/date/ |
date.c | 14 * 08/11/11 srl added Parse and milli/second in/out 48 static UDate getWhen(const char *millis, const char *seconds, const char *format, UDateFormatStyle style, const char *parse, const UChar *tz, UErrorCode *status); 73 char *parse = NULL; local 78 /* parse the options */ 128 parse = argv[optInd]; 161 when = getWhen(millis, seconds, format, style, parse, tz, &status); 162 if(parse != NULL) { 192 puts(" -P <string> Parse <string> as the time, output in millis format."); 292 UDateFormatStyle style, const char *parse, const UChar *tz, UErrorCode *status) { 307 if(parse!=NULL) [all...] |
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
AcceptParser.java | 46 * @param accept the header to parse 54 * @param lexer the lexer to use to parse the header 61 * parse the Accept String header 65 public SIPHeader parse() throws ParseException { method in class:AcceptParser 68 dbg_enter("AcceptParser.parse"); 87 super.parse(accept); 104 super.parse(accept); 111 dbg_leave("AcceptParser.parse");
|
CallInfoParser.java | 45 * @param callInfo the header to parse 53 * @param lexer the lexer to use to parse the header 60 * parse the CallInfo String header 64 public SIPHeader parse() throws ParseException { method in class:CallInfoParser 66 if (debug) dbg_enter("CallInfoParser.parse"); 84 super.parse(callInfo); 101 super.parse(callInfo); 109 if (debug) dbg_leave("CallInfoParser.parse");
|
ContactParser.java | 54 public SIPHeader parse() throws ParseException { method in class:ContactParser 66 super.parse(contact); 69 super.parse(contact);
|
/external/nist-sip/java/gov/nist/javax/sip/parser/extensions/ |
JoinParser.java | 23 * @param callID message to parse 38 * parse the String message 42 public SIPHeader parse() throws ParseException { method in class:JoinParser 44 dbg_enter("parse"); 52 super.parse(join); 57 dbg_leave("parse"); 69 Join t = (Join) tp.parse();
|
MinSEParser.java | 23 * @param text is the text of the header to parse 38 * Parse the header. 40 public SIPHeader parse() throws ParseException { method in class:MinSEParser 43 dbg_enter("parse"); 57 super.parse(minse); 62 dbg_leave("parse"); 75 MinSE t = (MinSE) tp.parse();
|
ReplacesParser.java | 25 * @param callID message to parse 40 * parse the String message 44 public SIPHeader parse() throws ParseException { method in class:ReplacesParser 46 dbg_enter("parse"); 54 super.parse(replaces); 59 dbg_leave("parse"); 71 Replaces t = (Replaces) tp.parse();
|
SessionExpiresParser.java | 19 * @param text is the text of the header to parse 34 * Parse the header. 36 public SIPHeader parse() throws ParseException { method in class:SessionExpiresParser 39 dbg_enter("parse"); 55 super.parse(se); 60 dbg_leave("parse"); 73 SessionExpires t = (SessionExpires) tp.parse();
|