OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:defaultAttributes
(Results
1 - 4
of
4
) sorted by null
/external/tagsoup/src/org/ccil/cowan/tagsoup/
Element.java
34
@param
defaultAttributes
True if default attributes are wanted
37
public Element(ElementType type, boolean
defaultAttributes
) {
39
if (
defaultAttributes
) theAtts = new AttributesImpl(type.atts());
Parser.java
62
private boolean
defaultAttributes
= DEFAULT_DEFAULT_ATTRIBUTES;
338
else if (name.equals(defaultAttributesFeature))
defaultAttributes
= value;
467
theStack = new Element(theSchema.getElementType("<root>"),
defaultAttributes
);
468
thePCDATA = new Element(theSchema.getElementType("<pcdata>"),
defaultAttributes
);
[
all
...]
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/
PrintJobConfigActivity.java
[
all
...]
/libcore/xml/src/main/java/org/kxml2/io/
KXmlParser.java
129
private Map<String, Map<String, String>>
defaultAttributes
;
872
if (
defaultAttributes
== null) {
873
defaultAttributes
= new HashMap<String, Map<String, String>>();
875
Map<String, String> elementAttributes =
defaultAttributes
.get(elementName);
878
defaultAttributes
.put(elementName, elementAttributes);
[
all
...]
Completed in 372 milliseconds