HomeSort by relevance Sort by last modified time
    Searched refs:parse (Results 951 - 975 of 4368) sorted by null

<<31323334353637383940>>

  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
TestPackageResult.java 191 void parse(XmlPullParser parser) throws XmlPullParserException, IOException { method in class:TestPackageResult
204 suite.parse(parser);
253 report = ReportLog.parse(perfResult);
TestResults.java 61 void parse(XmlPullParser parser) throws XmlPullParserException, IOException { method in class:TestResults
66 mDeviceInfo.parse(parser);
71 pkg.parse(parser);
TestSuite.java 161 void parse(XmlPullParser parser) throws XmlPullParserException, IOException { method in class:TestSuite
171 suite.parse(parser);
176 testCase.parse(parser);
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
TestPackageRepo.java 60 parse(testCaseDir);
66 private void parse(File dir) { method in class:TestPackageRepo
104 parser.parse(createStreamFromFile(xmlFile));
141 Log.e(LOG_TAG, String.format("Failed to parse test case xml file %s",
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorInclude.java 147 // on some stacks for later retrieval during parse() time.
158 parse(handler, uri, localName, rawName, attributes); method
175 * Set off a new parse for an included or imported stylesheet. This will
177 * a new set of parse events. Once this function returns, the state of
189 protected void parse( method in class:ProcessorInclude
312 reader.parse(inputSource);
  /external/autotest/cli/
topic_common_unittest.py 457 sys.argv = ['atest', '--web', 'fooweb', '--parse',
463 (options, leftover) = self.atest.parse([item_info])
469 'parse': True,
481 sys.argv = ['atest', '--web', 'fooweb', '--parse', '-g',
486 (options, leftover) = self.atest.parse([item_info])
492 'parse': True,
505 sys.argv = ['atest', '-g', '--parse', '--ulist', ulist.name,
518 (options, leftover) = self.atest.parse([host_info, user_info])
529 'parse': True,
543 sys.argv = ['atest', '-g', '--parse', '-U', ulist.name
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
CompileErrorCheck.java 99 parse(aFile);
155 private void parse(File file) { method in class:CompileErrorCheck
167 parser.parse(inputSource, compilerErrorCheckerHandler);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
IntlTestNumberFormatAPI.java 116 // ======= Test parse()
118 logln("Testing parse()");
126 errln("ERROR: Roundtrip failed (via parse()) for " + text);
130 double d2 = fr.parse(text, pos01).doubleValue();
132 errln("ERROR: Roundtrip failed (via parse()) for " + text);
138 d3 = fr.parse(text).doubleValue();
141 errln("ERROR: parse() failed");
144 errln("ERROR: Roundtrip failed (via parse()) for " + text);
226 public Number parse(String text, ParsePosition parsePosition) {return null;} method in class:IntlTestNumberFormatAPI.StubNumberFormat
RbnfLenientScannerTest.java 40 * and lenient parse is on.
52 if (logKnownIssue("9503", "Lenient parse problems with English RBNF")) {
53 logln("Can't do lenient parse test due to http://bugs.icu-project.org/trac/ticket/9503");
70 // test spaces before fifty-7 causing lenient parse match of "fifty-" to " fifty"
71 // leaving "-7" for remaining parse, resulting in 2643 as the parse result.
80 logln("Can't do lenient parse test due to http://bugs.icu-project.org/trac/ticket/9503");
143 // RBNF parse is extremely slow when lenient option is enabled.
161 //RBNF parse is too slow. Increase count only for debugging purpose for now.
186 // non-lenient parse
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
datefmt.h 60 * DateFormat helps you to format and parse dates for any locale. Your code can
108 * You can use a DateFormat to parse also.
112 * UDate myDate = df->parse(myString, status);
135 * You can also use forms of the parse and format methods with ParsePosition and
138 * <li> Progressively parse through pieces of a string.
385 * Parse a date/time string. For example, a time text "07/10/96 4:5 PM, PDT"
388 * possible. Assuming no parse errors were encountered, this function
391 * parse() that takes a ParsePosition.
395 * parse succeeds. Clients may insist on strict adherence to the format by
406 * recommended that clients parse using the metho
    [all...]
msgfmt.h 725 * @param pos On input, starting position for parse. On output,
726 * final position after parse. Unchanged if parse
734 virtual Formattable* parse(const UnicodeString& source,
753 virtual Formattable* parse(const UnicodeString& source,
762 * @param result Formattable to be set to the parse result.
763 * If parse fails, return contents are undefined.
764 * @param pos On input, starting position for parse. On output,
765 * final position after parse. Unchanged if parse
    [all...]
  /external/icu/icu4c/source/test/intltest/
sdtfmtts.cpp 157 // ======= Test parse()
159 logln("Testing parse()");
164 result1 = def.parse(text, pos);
168 result2 = def.parse(text, status);
170 errln("ERROR: parse() failed");
268 UDate udDate = object.parse("2007W014", pp);
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/format/
RbnfLenientScannerTest.java 36 * and lenient parse is on.
48 if (logKnownIssue("9503", "Lenient parse problems with English RBNF")) {
49 logln("Can't do lenient parse test due to http://bugs.icu-project.org/trac/ticket/9503");
66 // test spaces before fifty-7 causing lenient parse match of "fifty-" to " fifty"
67 // leaving "-7" for remaining parse, resulting in 2643 as the parse result.
76 logln("Can't do lenient parse test due to http://bugs.icu-project.org/trac/ticket/9503");
139 // RBNF parse is extremely slow when lenient option is enabled.
157 //RBNF parse is too slow. Increase count only for debugging purpose for now.
182 // non-lenient parse
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
IntlTestNumberFormatAPI.java 112 // ======= Test parse()
114 logln("Testing parse()");
122 errln("ERROR: Roundtrip failed (via parse()) for " + text);
126 double d2 = fr.parse(text, pos01).doubleValue();
128 errln("ERROR: Roundtrip failed (via parse()) for " + text);
134 d3 = fr.parse(text).doubleValue();
137 errln("ERROR: parse() failed");
140 errln("ERROR: Roundtrip failed (via parse()) for " + text);
222 public Number parse(String text, ParsePosition parsePosition) {return null;} method in class:IntlTestNumberFormatAPI.StubNumberFormat
  /external/jcommander/src/test/java/com/beust/jcommander/command/
CommandAliasTest.java 42 jc.parse("a", "-i", "A.java");
65 jc.parse(alias, "--amend", "--author", "jack", "file1.txt");
82 jc.parse("a", "-i", "A.java");
  /external/llvm/lib/DebugInfo/DWARF/
DWARFUnitIndex.cpp 17 bool DWARFUnitIndex::Header::parse(DataExtractor IndexData, function in class:llvm::DWARFUnitIndex::Header
32 bool DWARFUnitIndex::parse(DataExtractor IndexData) { function in class:llvm::DWARFUnitIndex
46 if (!Header.parse(IndexData, &Offset))
  /external/llvm/lib/Support/
SpecialCaseList.cpp 61 if (!SCL->parse(FileOrErr.get().get(), ParseError)) {
73 if (!SCL->parse(MB, Error))
87 bool SpecialCaseList::parse(const MemoryBuffer *MB, std::string &Error) { function in class:llvm::SpecialCaseList
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
AACTrackImpl.java 85 parse(inputStream);
89 parse(inputStream);
92 private void parse(InputStream inputStream) throws IOException { method in class:AACTrackImpl
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
CacheStrategy.java 136 servedDate = HttpDate.parse(value);
139 expires = HttpDate.parse(value);
141 lastModified = HttpDate.parse(value);
  /external/opencv3/modules/java/
check-tests.py 64 def parse(self, path): member in class:JavaParser
86 self.parse(path + "/" + x)
157 parser.parse(x)
  /external/parameter-framework/upstream/tools/xmlGenerator/
domainGeneratorConnector.cpp 93 size_t parse(std::istream &input);
159 size_t XmlGenerator::parse(std::istream &input) function in class:XmlGenerator
283 auto errorNb = xmlGenerator.parse(std::cin);
  /external/selinux/sepolgen/tests/
test_interfaces.py 201 h = refparser.parse(simple_interface)
226 h = refparser.parse(test_expansion)
261 h = refparser.parse(interface_example)
  /external/testng/src/main/java/org/testng/xml/
Parser.java 56 * the xml test suite to parse.
140 public Collection<XmlSuite> parse() method in class:Parser
172 XmlSuite currentXmlSuite = fileParser.parse(currentFile, inputStream, m_loadClasses);
238 Collection<XmlSuite> suites = parse();
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
ISO8601Converter.java 39 * Parse a date according to ISO 8601 and
75 public static XMPDateTime parse(String iso8601String) throws XMPException method in class:ISO8601Converter
77 return parse(iso8601String, new XMPDateTimeImpl());
87 public static XMPDateTime parse(String iso8601String, XMPDateTime binValue) throws XMPException method in class:ISO8601Converter
XMPMetaParser.java 68 * @param options the parse options
72 public static XMPMeta parse(Object input, ParseOptions options) throws XMPException method in class:XMPMetaParser
85 XMPMetaImpl xmp = ParseRDF.parse((Node) result[0]);
273 return builder.parse(source);
309 * initially to <code>true</code>, if the parse option "REQUIRE_XMP_META" is set

Completed in 850 milliseconds

<<31323334353637383940>>