OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AttributesImpl
(Results
1 - 25
of
33
) sorted by null
1
2
/external/tagsoup/src/org/ccil/cowan/tagsoup/
Element.java
21
@see
AttributesImpl
27
private
AttributesImpl
theAtts; // attributes of element
39
if (defaultAttributes) theAtts = new
AttributesImpl
(type.atts());
40
else theAtts = new
AttributesImpl
();
53
Return the attributes as an
AttributesImpl
object.
54
Returning an
AttributesImpl
makes the attributes mutable.
56
@see
AttributesImpl
58
public
AttributesImpl
atts() { return theAtts; }
ElementType.java
31
private
AttributesImpl
theAtts; // default attributes
55
theAtts = new
AttributesImpl
();
146
The return value is an
AttributesImpl
to allow the caller to mutate
150
public
AttributesImpl
atts() {return theAtts;}
181
Sets an attribute and its value into an
AttributesImpl
object.
183
@param atts The
AttributesImpl
object
189
public void setAttribute(
AttributesImpl
atts, String name, String type, String value) {
AttributesImpl.java
54
public class
AttributesImpl
implements Attributes
65
* Construct a new, empty
AttributesImpl
object.
67
public
AttributesImpl
()
82
public
AttributesImpl
(Attributes atts)
630
// end of
AttributesImpl
.java
XMLWriter.java
28
import org.xml.sax.helpers.
AttributesImpl
;
61
* w.startElement("", "foo", "", new
AttributesImpl
());
[
all
...]
/libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
AttributesImplTest.java
22
import org.xml.sax.helpers.
AttributesImpl
;
26
private
AttributesImpl
empty = new
AttributesImpl
();
28
private
AttributesImpl
multi = new
AttributesImpl
();
50
AttributesImpl
ai = new
AttributesImpl
(empty);
54
ai = new
AttributesImpl
(multi);
59
ai = new
AttributesImpl
(null);
68
AttributesImpl
ai = new AttributesImpl(empty)
[
all
...]
DefaultHandlerTest.java
24
import org.xml.sax.helpers.
AttributesImpl
;
104
h.startElement("uri", "name", "qname", new
AttributesImpl
());
XMLReaderAdapterTest.java
34
import org.xml.sax.helpers.
AttributesImpl
;
235
AttributesImpl
atts = new
AttributesImpl
();
XMLFilterImplTest.java
35
import org.xml.sax.helpers.
AttributesImpl
;
363
Attributes atts = new
AttributesImpl
();
/external/apache-xml/src/main/java/org/apache/xml/serializer/
AttributesImplSerializer.java
27
import org.xml.sax.helpers.
AttributesImpl
;
30
* This class extends org.xml.sax.helpers.
AttributesImpl
which implements org.
39
public final class AttributesImplSerializer extends
AttributesImpl
100
* @see org.xml.sax.helpers.
AttributesImpl
#addAttribute(String, String, String, String, String)
168
* @see org.xml.sax.helpers.
AttributesImpl
#clear()
189
* @see org.xml.sax.helpers.
AttributesImpl
#setAttributes(Attributes)
/external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorLRE.java
43
import org.xml.sax.helpers.
AttributesImpl
;
117
AttributesImpl
stylesheetAttrs = new
AttributesImpl
();
118
AttributesImpl
lreAttrs = new
AttributesImpl
();
XSLTElementProcessor.java
35
import org.xml.sax.helpers.
AttributesImpl
;
292
AttributesImpl
undefines = null;
297
undefines = new
AttributesImpl
();
/libcore/luni/src/test/java/tests/api/org/xml/sax/ext/
Attributes2ImplTest.java
23
import org.xml.sax.helpers.
AttributesImpl
;
86
// Ordinary case with
AttributesImpl
87
attrs.setAttributes(new
AttributesImpl
(multi));
101
attrs.setAttributes(new
AttributesImpl
(cdata));
211
// Ordinary case with
AttributesImpl
212
attrs = new Attributes2Impl(new
AttributesImpl
(multi));
226
attrs = new Attributes2Impl(new
AttributesImpl
(cdata));
/libcore/luni/src/main/java/org/xml/sax/ext/
Attributes2Impl.java
1
// Attributes2Impl.java - extended
AttributesImpl
10
import org.xml.sax.helpers.
AttributesImpl
;
38
public class Attributes2Impl extends
AttributesImpl
implements Attributes2
194
* @see
AttributesImpl
#setAttributes
238
* @see
AttributesImpl
#addAttribute
/libcore/luni/src/main/java/org/xml/sax/helpers/
AttributesImpl.java
0
//
AttributesImpl
.java - default implementation of Attributes.
5
// $Id:
AttributesImpl
.java,v 1.9 2002/01/30 20:52:24 dbrownell Exp $
46
public class
AttributesImpl
implements Attributes
57
* Construct a new, empty
AttributesImpl
object.
59
public
AttributesImpl
()
74
public
AttributesImpl
(Attributes atts)
622
// end of
AttributesImpl
.java
ParserAdapter.java
140
atts = new
AttributesImpl
();
825
private
AttributesImpl
atts = null;
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMTreeWalker.java
264
org.xml.sax.helpers.
AttributesImpl
attrs =
265
new org.xml.sax.helpers.
AttributesImpl
();
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
xmlreader.py
274
# =====
ATTRIBUTESIMPL
=====
276
class
AttributesImpl
:
341
class AttributesNSImpl(
AttributesImpl
):
expatreader.py
30
AttributesImpl
= xmlreader.
AttributesImpl
304
self._cont_handler.startElement(name,
AttributesImpl
(attrs))
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
xmlreader.py
274
# =====
ATTRIBUTESIMPL
=====
276
class
AttributesImpl
:
341
class AttributesNSImpl(
AttributesImpl
):
expatreader.py
30
AttributesImpl
= xmlreader.
AttributesImpl
304
self._cont_handler.startElement(name,
AttributesImpl
(attrs))
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sax.py
15
from xml.sax.xmlreader import InputSource,
AttributesImpl
, AttributesNSImpl
800
# =====
AttributesImpl
802
self.verify_empty_attrs(
AttributesImpl
({}))
805
self.verify_attrs_wattr(
AttributesImpl
({"attr" : "val"}))
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sax.py
15
from xml.sax.xmlreader import InputSource,
AttributesImpl
, AttributesNSImpl
800
# =====
AttributesImpl
802
self.verify_empty_attrs(
AttributesImpl
({}))
805
self.verify_attrs_wattr(
AttributesImpl
({"attr" : "val"}))
/prebuilts/tools/common/m2/internal/xerces/xmlParserAPIs/2.6.2/
xmlParserAPIs-2.6.2.jar
/prebuilts/tools/common/m2/internal/xml-apis/xml-apis/1.0.b2/
xml-apis-1.0.b2.jar
/prebuilts/sdk/10/
android.jar
Completed in 109 milliseconds
1
2