HomeSort by relevance Sort by last modified time
    Searched defs:propValue_vector (Results 1 - 2 of 2) sorted by null

  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
PropertyNode.java 45 public List<String> propValue_vector;
70 propValue_vector = new ArrayList<String>();
77 String propName, String propValue, List<String> propValue_vector,
90 if (propValue_vector != null) {
91 this.propValue_vector = propValue_vector;
93 this.propValue_vector = new ArrayList<String>();
147 // The value in propValue_vector is not decoded even if it should be
148 // decoded by BASE64 or QUOTED-PRINTABLE. When the size of propValue_vector
151 return (propValue_vector.equals(node.propValue_vector) |
    [all...]
VNodeBuilder.java 124 propNode.propValue_vector.clear();
125 propNode.propValue_vector.add("");
132 propNode.propValue_vector.clear();
133 propNode.propValue_vector.add("");
136 propNode.propValue_vector.addAll(values);
137 propNode.propValue = listToString(propNode.propValue_vector);

Completed in 209 milliseconds