HomeSort by relevance Sort by last modified time
    Searched defs:parse (Results 351 - 375 of 3737) sorted by null

<<11121314151617181920>>

  /external/robolectric-shadows/resources/src/test/java/org/robolectric/res/
StaxValueLoaderTest.java 36 parse("<resources xmlns:xliff=\"urn:oasis:names:tc:xliff:document:1.2\">" +
50 parse("<resources xmlns:xliff=\"urn:oasis:names:tc:xliff:document:1.2\">" +
58 private void parse(String xml) throws XMLStreamException { method in class:StaxValueLoaderTest
  /external/tensorflow/tensorflow/contrib/eager/python/examples/rnn_colorbot/
rnn_colorbot.py 76 def parse(line): function
77 """Parse a line from the colors dataset."""
102 # 2. parsing the subsequent lines; (.map(parse))
105 dataset = tf.data.TextLineDataset(path).skip(1).map(parse).shuffle(
275 _, chars, length = parse(color_name)
  /external/testng/src/main/java/org/testng/xml/dom/
DomXmlParser.java 19 public XmlSuite parse(String currentFile, InputStream inputStream, boolean loadClasses) { method in class:DomXmlParser
41 Document doc = builder.parse(inputStream);
  /external/turbine/java/com/google/turbine/parse/
UnicodeEscapePreprocessor.java 17 package com.google.turbine.parse;
  /external/vulkan-validation-layers/scripts/
vk_validation_stats.py 37 # 1. Parse vk_validation_error_database.txt to store claimed state of validation checks
38 # 2. Parse vk_validation_error_messages.h to verify the actual checks in header vs. the
40 # 3. Parse source files to identify which checks are implemented and verify that this
42 # 4. Parse test file(s) and verify that reported tests exist
205 def parse(self): member in class:ValidationSource
242 # Class to parse the validation layer test source and store testnames
253 # Parse test files into internal data struct
254 def parse(self): member in class:TestParser
255 # For each test file, parse test names into set
314 # parse d
    [all...]
  /frameworks/av/drm/mediadrm/plugins/clearkey/default/
InitDataParser.cpp 44 android::status_t InitDataParser::parse(const Vector<uint8_t>& initData, function in class:clearkeydrm::InitDataParser
  /frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/license/
LicenseHtmlGeneratorFromXmlTest.java 89 LicenseHtmlGeneratorFromXml.parse(
104 LicenseHtmlGeneratorFromXml.parse(
  /frameworks/base/services/net/java/android/net/netlink/
StructNdaCacheInfo.java 40 public static StructNdaCacheInfo parse(ByteBuffer byteBuffer) { method in class:StructNdaCacheInfo
  /frameworks/base/tools/split-select/
SplitDescription.cpp 131 bool SplitDescription::parse(const String8& str, SplitDescription* outSplit) { function in class:split::SplitDescription
144 if (!AaptConfig::parse(configStr, &split.config)) {
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
ExpressionParser.java 53 public Expr parse(String input, @Nullable Location locationInFile, BindingTarget target) { method in class:ExpressionParser
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
Duration.java 44 * Parse according to RFC2445 ss4.3.6. (It's actually a little loose with
47 public void parse(String str) throws DateException method in class:Duration
80 "Duration.parse(str='" + str + "') expected 'P' at index="
123 "Duration.parse(str='" + str + "') unexpected char '"
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/
DomainNameElement.java 50 * Parse a DomainNameElement from the given buffer.
56 public static DomainNameElement parse(ByteBuffer payload) { method in class:DomainNameElement
HSFriendlyNameElement.java 43 * Parse a HSFriendlyNameElement from the given buffer.
50 public static HSFriendlyNameElement parse(ByteBuffer payload) method in class:HSFriendlyNameElement
54 I18Name name = I18Name.parse(payload);
RoamingConsortiumElement.java 43 * Parse a VenueNameElement from the given payload.
50 public static RoamingConsortiumElement parse(ByteBuffer payload) method in class:RoamingConsortiumElement
ThreeGPPNetworkElement.java 56 * Parse a ThreeGPPNetworkElement from the given buffer.
63 public static ThreeGPPNetworkElement parse(ByteBuffer payload) method in class:ThreeGPPNetworkElement
78 // Parse each IEI (Information Element Identity) content.
81 CellularNetwork network = CellularNetwork.parse(payload);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/eap/
InnerAuthEAP.java 45 * Parse a InnerAuthEAP from the given buffer.
53 public static InnerAuthEAP parse(ByteBuffer payload, int length) throws ProtocolException { method in class:InnerAuthEAP
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
ImageDescriptor.java 56 static ImageDescriptor parse(byte[] rawData, int valueIndex) { method in class:ImageDescriptor
63 // parse image id
66 // parse offset
71 CatLog.d("ImageDescriptor", "parse; Descriptor : " + d.mWidth + ", " + d.mHeight +
75 CatLog.d("ImageDescriptor", "parse; failed parsing image descriptor");
  /libcore/benchmarks/src/benchmarks/regression/
XmlEntitiesBenchmark.java 69 documentBuilder.parse(new InputSource(new StringReader(xml)));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
MockFilter.java 80 public void parse(InputSource input) throws SAXException, IOException { method in class:MockFilter
81 logger.add("parse", input);
85 public void parse(String systemId) throws SAXException, IOException { method in class:MockFilter
86 logger.add("parse", systemId);
MockParser.java 40 public void parse(InputSource source) throws SAXException, IOException { method in class:MockParser
41 logger.add("parse", source);
44 public void parse(String systemId) throws SAXException, IOException { method in class:MockParser
45 logger.add("parse", systemId);
  /libcore/luni/src/main/java/javax/xml/parsers/
DocumentBuilder.java 46 * implementation use a SAX parser to parse XML document into a
87 * Parse the content of the given <code>InputStream</code> as an XML
96 * @exception SAXException If any parse errors occur.
100 public Document parse(InputStream is) method in class:DocumentBuilder
107 return parse(in);
111 * Parse the content of the given <code>InputStream</code> as an
120 * @exception SAXException If any parse errors occur.
124 public Document parse(InputStream is, String systemId) method in class:DocumentBuilder
132 return parse(in);
136 * Parse the content of the given URI as an XML documen
148 public Document parse(String uri) method in class:DocumentBuilder
171 public Document parse(File f) throws SAXException, IOException { method in class:DocumentBuilder
199 public abstract Document parse(InputSource is) method in class:DocumentBuilder
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSParser.java 144 * source. This <code>DOMConfiguration</code> is specific to the parse
148 * parse operation. The DOM application is responsible for passing any
297 * Parse an XML document from a resource identified by a
315 public Document parse(LSInput input) method in interface:LSParser
319 * Parse an XML document from a location identified by a URI reference [<a href='http://www.ietf.org/rfc/rfc2396.txt'>IETF RFC 2396</a>]. If the URI
344 * Append the result of the parse operation as children of the context
351 * parse operation. For this action to work, the context node must be an
357 * Insert the result of the parse operation as the immediately preceding
364 * Insert the result of the parse operation as the immediately following
371 * Replace the context node with the result of the parse operation. Fo
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/
XMLReader.java 31 * a document parse.</p>
34 * {@link #parse parse} methods must not return until parsing
77 * contexts, such as before, during, or after a parse.
104 * // parse the first document
106 * r.parse("http://www.foo.com/mydoc.xml");
138 * a parse.</p>
164 * contexts, such as before, during, or after a parse.</p>
194 * a parse.</p>
229 * middle of a parse, and the SAX parser must begin using the ne
375 public void parse (InputSource input) method in interface:XMLReader
401 public void parse (String systemId) method in interface:XMLReader
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
NamespacedAttributesLookupTest.java 136 reader.parse(new InputSource(new StringReader(xml)));
  /packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
FolderListing.java 38 parse(in);
41 public void parse(InputStream in) { method in class:FolderListing

Completed in 765 milliseconds

<<11121314151617181920>>