HomeSort by relevance Sort by last modified time
    Searched refs:Attributes (Results 51 - 75 of 278) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorKey.java 29 import org.xml.sax.Attributes;
60 * @param attributes The attributes attached to the element. If
61 * there are no attributes, it shall be an empty
62 * Attributes object.
65 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
73 setPropertiesFromAttributes(handler, rawName, attributes, kd);
83 * @param attributes The list of attributes
    [all...]
ProcessorStylesheetElement.java 30 import org.xml.sax.Attributes;
55 * @param attributes The attributes attached to the element. If
56 * there are no attributes, it shall be an empty
57 * Attributes object.
60 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
64 super.startElement(handler, uri, localName, rawName, attributes);
106 setPropertiesFromAttributes(handler, rawName, attributes,
ProcessorTemplateElem.java 28 import org.xml.sax.Attributes;
46 * @param attributes The specified or defaulted attributes.
49 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
53 super.startElement(handler, uri, localName, rawName, attributes);
78 setPropertiesFromAttributes(handler, rawName, attributes, elem);
XSLTElementProcessor.java 33 import org.xml.sax.Attributes;
155 * @param attributes The specified or defaulted attributes.
158 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
260 * @param attributes The list of attributes.
264 StylesheetHandler handler, String rawName, Attributes attributes,
268 setPropertiesFromAttributes(handler, rawName, attributes, target, true)
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/
ContentHandler.java 228 * attributes with explicit values (specified or defaulted):
229 * #IMPLIED attributes will be omitted. The attribute list
230 * will contain attributes used for Namespace declarations
231 * (xmlns* attributes) only if the
247 * @param atts the attributes attached to the element. If
248 * there are no attributes, it shall be an empty
249 * Attributes object. The value of this object after
254 * @see org.xml.sax.Attributes
258 String qName, Attributes atts)
  /libcore/luni/src/main/java/org/xml/sax/helpers/
XMLReaderAdapter.java 12 import org.xml.sax.Attributes;
324 * @param atts The SAX2 attributes.
330 String qName, Attributes atts)
444 * Internal class to wrap a SAX2 Attributes object for SAX1.
454 * Set the embedded Attributes object.
456 * @param The embedded SAX2 Attributes.
458 void setAttributes (Attributes attributes)
460 this.attributes = attributes;
531 private Attributes attributes; field in class:XMLReaderAdapter.AttributesAdapter
    [all...]
DefaultHandler.java 10 import org.xml.sax.Attributes;
266 * @param attributes The attributes attached to the element. If
267 * there are no attributes, it shall be an empty
268 * Attributes object.
274 String qName, Attributes attributes)
  /frameworks/base/sax/tests/saxtests/src/android/sax/
SafeSaxTest.java 33 import org.xml.sax.Attributes;
58 public void start(Attributes attributes) {
71 public void start(Attributes attributes) {
245 public void start(Attributes attributes) {
246 String url = attributes.getValue("", "url");
255 public void start(Attributes attributes) {
    [all...]
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
DexDepsXmlHandler.java 19 import org.xml.sax.Attributes;
49 public void startElement(String uri, String localName, String name, Attributes attributes)
51 super.startElement(uri, localName, name, attributes);
53 mCurrentPackageName = CurrentXmlHandler.getValue(attributes, "name");
56 mCurrentClassName = CurrentXmlHandler.getValue(attributes, "name");
60 mCurrentMethodName = CurrentXmlHandler.getValue(attributes, "name");
61 mCurrentMethodReturnType = CurrentXmlHandler.getValue(attributes, "return");
64 mCurrentParameterTypes.add(CurrentXmlHandler.getValue(attributes, "type"));
  /external/chromium_org/third_party/WebKit/Source/core/dom/
MutationObserverRegistration.cpp 108 ASSERT((type == MutationObserver::Attributes && attributeName) || !attributeName);
115 if (type != MutationObserver::Attributes || !(m_options & MutationObserver::AttributeFilter))
  /packages/apps/Mms/src/com/android/mms/dom/smil/parser/
SmilContentHandler.java 23 import org.xml.sax.Attributes;
56 public void startElement(String uri, String localName, String qName, Attributes attributes) {
61 if (attributes != null) {
62 for (int i = 0; i < attributes.getLength(); i++) {
65 " lname = " + attributes.getLocalName(i) +
66 " value = " + attributes.getValue(i));
68 element.setAttribute(attributes.getLocalName(i),
69 attributes.getValue(i));
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
GraphReader.java 30 import org.xml.sax.Attributes;
245 public void startElement(String uri, String localName, String qName, Attributes attr)
278 private void addImportCommand(Attributes attributes) throws SAXException {
279 String packageName = getRequiredAttribute(attributes, "package");
283 private void addLibraryCommand(Attributes attributes) throws SAXException {
284 String libraryName = getRequiredAttribute(attributes, "name");
288 private void addConnectCommand(Attributes attributes) {
    [all...]
  /libcore/luni/src/main/java/java/net/
URLClassLoader.java 41 import java.util.jar.Attributes;
882 Attributes.Name.CLASS_PATH);
965 Attributes attributes = manifest.getAttributes(dirName); local
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
TestPackageXmlParser.java 22 import org.xml.sax.Attributes;
66 public void startElement(String uri, String localName, String name, Attributes attributes) {
69 final String entryUriValue = attributes.getValue("appPackageName");
70 final String testPackageNameSpace = attributes.getValue("appNameSpace");
71 final String packageName = attributes.getValue("name");
72 final String runnerName = attributes.getValue("runner");
73 final String jarPath = attributes.getValue("jarPath");
74 final String signatureCheck = attributes.getValue("signatureCheck");
75 final String javaPackageFilter = attributes.getValue("javaPackageFilter")
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
AttributeTable.java 16 private Hashtable attributes = new Hashtable(); field in class:AttributeTable
21 attributes = copyTable(attrs);
53 Attributes attrs)
62 Object value = attributes.get(oid);
66 attributes.put(oid, a);
86 attributes.put(oid, v);
107 Object value = attributes.get(oid);
126 * Return all the attributes matching the OBJECT IDENTIFIER oid. The vector will be
127 * empty if there are no attributes of the required type present.
130 * @return a vector of all the attributes found of type oid
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
VersionTrackerTask.java 19 import org.xml.sax.Attributes;
104 Attributes atts) {
127 Attributes atts) {
  /external/jdiff/src/jdiff/
CommentsHandler.java 7 import org.xml.sax.Attributes;
58 java.lang.String qName, Attributes attributes) {
63 String commentsName = attributes.getValue("name");
64 String version = attributes.getValue("jdversion"); // Not used yet
81 String id = attributes.getValue("id");
91 addStartTagToText(localName, attributes);
152 public void addStartTagToText(String localName, Attributes attributes) {
158 // Now add all the attributes into the current tex
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
SAX1ParserAdapter.java 169 Attributes attrs)
175 // Also, need to wrap Attributes to look like AttributeLost
193 Attributes attrs;
197 public void setAttributes(Attributes a) {
  /frameworks/base/core/java/android/content/
DefaultDataHandler.java 22 import org.xml.sax.Attributes;
61 * Insert multiple rows in to same table and same attributes:
99 private void parseRow(Attributes atts) throws SAXException {
134 Attributes atts) throws SAXException {
163 throw new SAXException("illegal attributes number " + attrLen);
173 throw new SAXException("illegal attributes value");
  /libcore/luni/src/main/java/java/util/jar/
JarEntry.java 34 * attributes and digital signatures associated with it.
40 private Attributes attributes; field in class:JarEntry
72 * Returns the {@code Attributes} object associated with this entry or
75 * @return the {@code Attributes} for this entry.
77 * If an error occurs obtaining the {@code Attributes}.
78 * @see Attributes
80 public Attributes getAttributes() throws IOException {
81 if (attributes != null || parentJar == null) {
82 return attributes;
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/ext/
Attributes2Impl.java 9 import org.xml.sax.Attributes;
13 * SAX2 extension helper for additional Attributes information,
27 * always be false, except for defaulted attributes (<em>specified</em>
28 * is false), non-CDATA attributes, or when it is set to true using
54 * Copy an existing Attributes or Attributes2 object.
59 * unless there is evidence to the contrary (such as attributes with
65 * @param atts The existing Attributes object.
67 public Attributes2Impl (Attributes atts)
186 * Copy an entire Attributes object. The "specified" flags are
192 * @param atts The attributes to copy
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
AttributesImplSerializer.java 26 import org.xml.sax.Attributes;
31 * xml.sax.Attributes. But for optimization this class adds a Hashtable for
35 * @see org.xml.sax.Attributes
43 * of an attributes qName. qNames are in uppercase in the hash table
54 * This is the number of attributes before switching to the hash table,
60 * One less than the number of attributes before switching to
69 * @see org.xml.sax.Attributes#getIndex(String)
77 // if we haven't got too many attributes let the
82 // we have too many attributes and the super class is slow
112 // (index + 1) is now the number of attributes
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
AttList.java 27 import org.xml.sax.Attributes;
30 * Wraps a DOM attribute list in a SAX Attributes.
42 public final class AttList implements Attributes
61 // * @param attrs List of attributes this will contain
75 * @param attrs List of attributes this will contain
  /external/apache-xml/src/main/java/org/apache/xml/utils/
AttList.java 27 import org.xml.sax.Attributes;
30 * Wraps a DOM attribute list in a SAX Attributes.
33 public class AttList implements Attributes
52 // * @param attrs List of attributes this will contain
66 * @param attrs List of attributes this will contain
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/tests/tools/
TestVersionTracker.java 16 import org.xml.sax.Attributes;
75 Attributes atts) {

Completed in 395 milliseconds

1 23 4 5 6 7 8 91011>>