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

  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue50/
SnakeyamlTest.java 33 private String attribute1; field in class:SnakeyamlTest.BaseSomeBean
36 return attribute1;
39 public void setAttribute1(String attribute1) {
40 this.attribute1 = attribute1;
47 public SomeBeanImpl(final String attribute1, final String attribute2) {
48 setAttribute1(attribute1);
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 66 Attr attribute1; local
74 attribute1 = doc.createAttributeNS("http://www.w3.org/XML/1998/namespace", "xml:xml");
75 name = attribute1.getName();
76 nodeName = attribute1.getNodeName();
77 nodeValue = attribute1.getNodeValue();
78 prefix = attribute1.getPrefix();
79 namespaceURI = attribute1.getNamespaceURI();
elementgetattributenodens01.java 72 Attr attribute1; local
84 attribute1 = doc.createAttributeNS("http://www.w3.org/DOM/Level2", "l2:att");
85 newAttribute1 = element.setAttributeNodeNS(attribute1);
elementsetattributenodens01.java 77 Attr attribute1; local
88 attribute1 = doc.createAttributeNS("http://www.w3.org/DOM/Test/att1", "p1:att");
91 newAttribute = element.setAttributeNodeNS(attribute1);
namednodemapremovenameditemns03.java 76 Attr attribute1; local
81 attribute1 = doc.createAttributeNS("http://www.w3.org/DOM/L1", "L1:att");
82 newAttribute = ((Element) /*Node */element).setAttributeNodeNS(attribute1);
namednodemapsetnameditemns02.java 77 Attr attribute1; local
82 attribute1 = doc.createAttributeNS("http://www.w3.org/DOM/L1", "L1:att");
84 newNode = attributes.setNamedItemNS(attribute1);
  /external/proguard/src/proguard/classfile/editor/
AttributeSorter.java 82 Attribute attribute1 = (Attribute)object1; local
85 return attribute1.u2attributeNameIndex < attribute2.u2attributeNameIndex ? -1 :
86 attribute1.u2attributeNameIndex > attribute2.u2attributeNameIndex ? 1 :
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DocumentCreateAttributeNS.java 103 Attr attribute1; local
111 attribute1 = doc.createAttributeNS(
113 name = attribute1.getName();
114 nodeName = attribute1.getNodeName();
115 nodeValue = attribute1.getNodeValue();
116 prefix = attribute1.getPrefix();
117 namespaceURI = attribute1.getNamespaceURI();
ElementGetAttributeNodeNS.java 53 Attr attribute1; local
65 attribute1 = doc.createAttributeNS("http://www.w3.org/DOM/Level2",
67 element.setAttributeNodeNS(attribute1);
ElementSetAttributeNodeNS.java 79 Attr attribute1; local
91 attribute1 = doc.createAttributeNS("http://www.w3.org/DOM/Test/att1",
96 element.setAttributeNodeNS(attribute1);
NamedNodeMapRemoveNamedItemNS.java 121 Attr attribute1; local
126 attribute1 = doc
128 ((Element) /* Node */element).setAttributeNodeNS(attribute1);
NamedNodeMapSetNamedItemNS.java 109 Attr attribute1; local
114 attribute1 = doc
117 attributes.setNamedItemNS(attribute1);
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Diff.java 179 for (final WeightedString attribute1 : list1) {
180 if (attribute0.mWord.equals(attribute1.mWord)) {
183 + attribute1.getProbability());
184 list1.remove(attribute1);
201 for (final WeightedString attribute1 : list1) {
203 System.out.println(type + " added: " + word + " " + attribute1.mWord + " "
204 + attribute1.getProbability());
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documentcreateelementcasesensitive.java 68 String attribute1; local
75 attribute1 = newElement1.getAttribute("district");
77 assertEquals("attrib1", "Fort Worth", attribute1);
hc_documentcreateelementcasesensitive.java 70 String attribute1; local
79 attribute1 = newElement1.getAttribute("lang");
81 assertEquals("attrib1", "EN", attribute1);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/
Attributes.java 97 public final void set (final Attribute attribute1, final Attribute attribute2) {
98 set(attribute1);
103 public final void set (final Attribute attribute1, final Attribute attribute2, final Attribute attribute3) {
104 set(attribute1);
110 public final void set (final Attribute attribute1, final Attribute attribute2, final Attribute attribute3,
112 set(attribute1);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DomUtilitiesTest.java 70 foo1.setAttribute("attribute1", "value1");
74 foo2.setAttribute("attribute1", "valueWrong");
76 foo2.setAttribute("attribute1", "value1");
  /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;' />" );
343 XmlTest ( "Reads incorrectly formatted 'attribute1=noquotes'.", "noquotes", element0.Attribute( "attribute1" ) );
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
LocaleBuilderTest.java 108 {"B", "fr-u-attr1-cu-eur", "D", "attribute1", "X"},
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
LocaleBuilderTest.java 104 {"B", "fr-u-attr1-cu-eur", "D", "attribute1", "X"},

Completed in 939 milliseconds