HomeSort by relevance Sort by last modified time
    Searched refs:Attributes (Results 101 - 125 of 144) sorted by null

1 2 3 45 6

  /frameworks/base/core/java/android/text/
Html.java 21 import org.xml.sax.Attributes;
444 private void handleStartTag(String tag, Attributes attributes) {
469 startFont(mSpannableStringBuilder, attributes);
476 startA(mSpannableStringBuilder, attributes);
489 startImg(mSpannableStringBuilder, attributes, mImageGetter);
600 Attributes attributes, Html.ImageGetter img) {
601 String src = attributes.getValue("", "src");
622 Attributes attributes)
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/xml/
ExpatParserTest.java 22 import org.xml.sax.Attributes;
56 String qName, Attributes attributes)
132 Attributes attributes) throws SAXException {
137 // Validate attributes.
138 assertEquals(1, attributes.getLength());
139 assertEquals("", attributes.getURI(0));
140 assertEquals("dad", attributes.getLocalName(0));
141 assertEquals("bob", attributes.getValue(0))
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatParser.java 27 import org.xml.sax.Attributes;
64 private final ExpatAttributes attributes = new CurrentAttributes(); field in class:ExpatParser
67 = "Attributes can only be used within the scope of startElement().";
131 * @param attributeCount number of attributes
146 uri, localName, qName, this.attributes);
603 * Clones the current attributes so they can be used outside of
606 /*package*/ Attributes cloneAttributes() {
623 * Used for cloned attributes.
627 private static final Attributes EMPTY = new ClonedAttributes(0, 0, 0);
634 * Constructs a Java wrapper for native attributes
    [all...]
ExpatPullParser.java 22 import org.xml.sax.Attributes;
573 final Attributes attributes; field in class:ExpatPullParser.StartTagEvent
585 this.attributes = expatParser.cloneAttributes();
601 return attributes.getLength();
606 return attributes.getURI(index);
611 return processNamespaces ? attributes.getLocalName(index)
612 : attributes.getQName(index);
617 return attributes.getValue(index);
626 return attributes.getValue(namespace, name)
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/serializer/
ToUnknownStream.java 33 import org.xml.sax.Attributes;
460 Attributes atts) throws SAXException
479 * URI due to added attributes.
499 * add these attributes to m_attributes. So me must call super.
507 // if there are attributes, then lets make the flush()
509 // attributes on their way.
1055 // don't need the collected attributes of the first element anymore.
    [all...]
SerializerBase.java 33 import org.xml.sax.Attributes;
101 m_tracer.fireGenerateEvent(SerializerTrace.EVENTTYPE_ENDELEMENT,name, (Attributes)null);
132 * All the attributes of the current element, collected from
134 * from the SAX attributes in a startElement() call.
346 * Adds the given attribute to the set of collected attributes , but only if
380 * Adds the given attribute to the set of attributes, even if there is
438 * Adds the given attribute to the set of collected attributes,
457 * Adds the given xsl:attribute to the set of collected attributes,
476 * Add the given attributes to the currently collected ones. These
477 * attributes are always added, regardless of whether on not an elemen
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/xml/parsers/
SAXParserTestSupport.java 25 import org.xml.sax.Attributes;
309 Attributes attributes) {
316 for(int i = 0; i < attributes.getLength(); i ++)
318 SEPARATOR_STRING +attributes.getQName(i) +
319 SEPARATOR_STRING + attributes.getValue(i));
466 Attributes attributes) {
473 for(int i = 0; i < attributes.getLength(); i ++)
475 + attributes.getQName(i)
    [all...]
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
XMLFilterImplTest.java 23 import org.xml.sax.Attributes;
514 args = { String.class, String.class, String.class, Attributes.class }
517 Attributes atts = new AttributesImpl();
ParserAdapterTest.java 24 import org.xml.sax.Attributes;
393 assertEquals("john:doe", ((Attributes)logger.getArgs()[3]).getQName(0));
  /cts/tests/tests/util/src/android/util/cts/
XmlEncodingTest.java 27 import org.xml.sax.Attributes;
269 public void startElement(String uri, String localName, String name, Attributes atts)
  /external/webkit/WebKit/chromium/src/
GraphicsContext3D.cpp 101 GraphicsContext3DInternal(GraphicsContext3D::Attributes attrs);
127 GraphicsContext3D::Attributes getContextAttributes();
135 GraphicsContext3D::Attributes m_attrs;
355 GraphicsContext3DInternal::GraphicsContext3DInternal(GraphicsContext3D::Attributes attrs)
384 // context creation attributes, in particular stencil and
741 // creation attributes.
    [all...]
  /libcore/luni/src/main/java/org/apache/xalan/transformer/
TransformerHandlerImpl.java 37 import org.xml.sax.Attributes;
485 * @param atts The element's attributes.
491 String uri, String localName, String qName, Attributes atts)
TransformerIdentityImpl.java 59 import org.xml.sax.Attributes;
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/
IncrementalSAXSource_Filter.java 30 import org.xml.sax.Attributes;
324 java.lang.String qName, Attributes atts)
  /libcore/luni/src/main/java/org/xml/sax/helpers/
ParserAdapter.java 13 import org.xml.sax.Attributes;
520 // (and similarly named) attributes ... at most, warn
535 // attributes into the SAX2 AttributeList
552 // (and similarly named) attributes ... ignore
854 * Adapt a SAX1 AttributeList as a SAX2 Attributes object.
864 final class AttributeListAdapter implements Attributes
892 * @return The number of attributes in the list.
893 * @see org.xml.sax.Attributes#getLength
906 * @see org.xml.sax.Attributes#getURI
919 * @see org.xml.sax.Attributes#getLocalNam
    [all...]
  /libcore/xml/src/main/java/org/xmlpull/v1/sax2/
Driver.java 19 import org.xml.sax.Attributes;
44 public class Driver implements Locator, XMLReader, Attributes
89 // -- Attributes interface
459 * Calls {@link ContentHandler#startElement(String, String, String, Attributes) startElement}
461 * {@link Attributes} implementation. In default implementation
462 * {@link Attributes} object is valid only during this method call and may not
463 * be stored. Sub-classes can overwrite this method to cache attributes.
  /build/tools/apicheck/src/com/android/apicheck/
ApiCheck.java 145 Attributes attributes) {
147 mCurrentPackage = new PackageInfo(attributes.getValue("name"),
148 SourcePositionInfo.fromXml(attributes.getValue("source")));
154 mCurrentClass = new ClassInfo(attributes.getValue("name"),
156 attributes.getValue("extends") ,
159 attributes.getValue("abstract")),
161 attributes.getValue("static")),
163 attributes.getValue("final")),
164 attributes.getValue("deprecated")
    [all...]
  /external/quake/src/com/android/quake/
DownloaderActivity.java 45 import org.xml.sax.Attributes;
373 Attributes attributes) throws SAXException {
375 mConfig.version = getRequiredString(attributes, "version");
377 String src = attributes.getValue("", "src");
378 String dest = getRequiredString(attributes, "dest");
379 String md5 = attributes.getValue("", "md5");
380 long size = getLong(attributes, "size", -1);
383 String src = getRequiredString(attributes, "src");
384 String md5 = attributes.getValue("", "md5")
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
PYXWriter.java 177 Attributes atts) throws SAXException {
  /frameworks/base/tools/localize/
XMLHandler.h 90 inline const vector<XMLAttribute>& Attributes() const { return m_attrs; }
localize.cpp 461 source->Name(), source->Attributes(), source->Pretty());
464 source->Name(), source->Attributes(), source->Pretty());
  /libcore/luni/src/main/java/org/apache/xalan/processor/
StylesheetHandler.java 53 import org.xml.sax.Attributes;
567 * @param attributes The specified or defaulted attributes.
572 String uri, String localName, String rawName, Attributes attributes)
600 // checkForFragmentID(attributes);
611 checkForFragmentID(attributes);
618 pushSpaceHandling(attributes);
626 elemProcessor.startElement(this, uri, localName, rawName, attributes);
    [all...]
  /external/jdiff/src/jdiff/
XMLToAPI.java 7 import org.xml.sax.Attributes;
  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
JarFileTest.java 35 import java.util.jar.Attributes;
464 Attributes attributes = manifest.getMainAttributes(); local
465 attributes.put(new Attributes.Name("Manifest-Version"), "1.0");
589 * algorithm-Digest-Manifest-Main-Attributes entry in .SF file.
710 * In the Modified.jar, the main attributes of META-INF/MANIFEST.MF is
733 * It is all right in our original JarFile. If the Entry Attributes, for
    [all...]
  /external/webkit/WebCore/platform/graphics/mac/
GraphicsContext3DMac.cpp 78 PassOwnPtr<GraphicsContext3D> GraphicsContext3D::create(GraphicsContext3D::Attributes attrs)
84 GraphicsContext3D::GraphicsContext3D(GraphicsContext3D::Attributes attrs)
92 // context creation attributes, in particular stencil and
553 GraphicsContext3D::Attributes GraphicsContext3D::getContextAttributes()
    [all...]

Completed in 546 milliseconds

1 2 3 45 6