HomeSort by relevance Sort by last modified time
    Searched full:attribute2 (Results 1 - 19 of 19) sorted by null

  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue50/
SnakeyamlTest.java 45 private String attribute2; field in class:SnakeyamlTest.SomeBeanImpl
47 public SomeBeanImpl(final String attribute1, final String attribute2) {
49 setAttribute2(attribute2);
53 return attribute2;
56 public void setAttribute2(String attribute2) {
57 this.attribute2 = attribute2;
72 "!!org.yaml.snakeyaml.issues.issue50.SnakeyamlTest$SomeBeanImpl {attribute1: value1,\n attribute2: value2}\n",
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
documentcreateattributeNS02.java 67 Attr attribute2; local
85 attribute2 = doc.createAttributeNS("http://www.w3.org/2000/xmlns/", "xmlns");
86 name = attribute2.getName();
87 nodeName = attribute2.getNodeName();
88 nodeValue = attribute2.getNodeValue();
89 prefix = attribute2.getPrefix();
90 namespaceURI = attribute2.getNamespaceURI();
elementsetattributenodens01.java 78 Attr attribute2; local
89 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/Test/att1", "p2:att");
90 attribute2.setValue("value2");
92 newAttribute = element.setAttributeNodeNS(attribute2);
elementgetattributenodens01.java 73 Attr attribute2; local
86 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/Level1", "att");
87 newAttribute2 = element.setAttributeNodeNS(attribute2);
elementsetattributenodens06.java 74 Attr attribute2; local
87 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/Test", "attr2");
92 newAttribute = element.setAttributeNodeNS(attribute2);
namednodemapremovenameditemns03.java 77 Attr attribute2; local
83 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/L2", "L2:att");
84 newAttribute = ((Element) /*Node */element).setAttributeNodeNS(attribute2);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ElementSetAttributeNodeNS.java 80 Attr attribute2; local
93 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/Test/att1",
95 attribute2.setValue("value2");
97 element.setAttributeNodeNS(attribute2);
208 Attr attribute2; local
220 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/Test",
226 element.setAttributeNodeNS(attribute2);
DocumentCreateAttributeNS.java 104 Attr attribute2; local
126 attribute2 = doc.createAttributeNS("http://www.w3.org/2000/xmlns/",
128 name = attribute2.getName();
129 nodeName = attribute2.getNodeName();
130 nodeValue = attribute2.getNodeValue();
131 prefix = attribute2.getPrefix();
132 namespaceURI = attribute2.getNamespaceURI();
ElementGetAttributeNodeNS.java 54 Attr attribute2; local
68 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/Level1",
70 element.setAttributeNodeNS(attribute2);
NamedNodeMapRemoveNamedItemNS.java 122 Attr attribute2; local
129 attribute2 = doc
131 ((Element) /* Node */element).setAttributeNodeNS(attribute2);
  /external/proguard/src/proguard/classfile/editor/
AttributeSorter.java 83 Attribute attribute2 = (Attribute)object2; local
85 return attribute1.u2attributeNameIndex < attribute2.u2attributeNameIndex ? -1 :
86 attribute1.u2attributeNameIndex > attribute2.u2attributeNameIndex ? 1 :
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documentcreateelementcasesensitive.java 69 String attribute2; local
76 attribute2 = newElement2.getAttribute("county");
78 assertEquals("attrib2", "Dallas", attribute2);
hc_documentcreateelementcasesensitive.java 71 String attribute2; local
80 attribute2 = newElement2.getAttribute("title");
82 assertEquals("attrib2", "Dallas", attribute2);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/
Attributes.java 97 public final void set (final Attribute attribute1, final Attribute attribute2) {
99 set(attribute2);
103 public final void set (final Attribute attribute1, final Attribute attribute2, final Attribute attribute3) {
105 set(attribute2);
110 public final void set (final Attribute attribute1, final Attribute attribute2, final Attribute attribute3,
113 set(attribute2);
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
attribute.swg 66 Use %attribute2 instead of %attribute to indicate that reference-pointer
67 translation is required. You use %attribute2 instead of %attribute in
70 %attribute2(MyClass, MyFoo, Foo, GetFoo, SetFoo);
87 an error from your C/C++ compiler. %attribute2 translates between a pointer
90 while compiling the wrapper, try %attribute2 instead.
204 %define %attribute2(Class, AttributeType, AttributeName, GetMethod, SetMethod...)
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DomUtilitiesTest.java 71 foo1.setAttribute("attribute2", "value2");
73 foo2.setAttribute("attribute2", "value2");
  /external/autotest/frontend/shared/
resource_test_utils.py 100 hierarchically, i.e. item[attribute1][attribute2]...
  /frameworks/base/core/java/android/util/
DebugUtils.java 39 * <p><code>ClassName@attribute1=value1@attribute2=value2...</code></p>
  /external/tinyxml/
xmltest.cpp 337 istringstream parse0( "<Element0 attribute0='foo0' attribute1= noquotes attribute2 = '&gt;' />" );
344 XmlTest ( "Read attribute with entity value '>'.", ">", element0.Attribute( "attribute2" ) );

Completed in 928 milliseconds