Searched refs:paramValue (Results 1 – 4 of 4) sorted by relevance
/frameworks/opt/vcard/java/com/android/vcard/ |
D | VCardParserImpl_V30.java | 163 VCardProperty propertyData, final String paramName, final String paramValue) { in handleAnyParam() argument 164 splitAndPutParam(propertyData, paramName, paramValue); in handleAnyParam() 168 protected void handleParamWithoutName(VCardProperty property, final String paramValue) { in handleParamWithoutName() argument 169 handleType(property, paramValue); in handleParamWithoutName() 185 protected void handleType(VCardProperty property, final String paramValue) { in handleType() argument 186 splitAndPutParam(property, VCardConstants.PARAM_TYPE, paramValue); in handleType() 201 private void splitAndPutParam(VCardProperty property, String paramName, String paramValue) { in splitAndPutParam() argument 212 final int length = paramValue.length(); in splitAndPutParam() 214 final char ch = paramValue.charAt(i); in splitAndPutParam() 239 paramValue + ")"); in splitAndPutParam() [all …]
|
D | VCardProperty.java | 87 public void setParameter(final String paramName, final String paramValue) { in setParameter() argument 89 addParameter(paramName, paramValue); in setParameter() 92 public void addParameter(final String paramName, final String paramValue) { in addParameter() argument 104 values.add(paramValue); in addParameter()
|
D | VCardParserImpl_V21.java | 448 String paramValue = strArray[1].trim(); 450 handleType(propertyData, paramValue); 452 handleValue(propertyData, paramValue); 454 handleEncoding(propertyData, paramValue.toUpperCase()); 456 handleCharset(propertyData, paramValue); 458 handleLanguage(propertyData, paramValue); 460 handleAnyParam(propertyData, paramName, paramValue); 472 protected void handleParamWithoutName(VCardProperty propertyData, final String paramValue) { 473 handleType(propertyData, paramValue); 567 VCardProperty propertyData, String paramName, String paramValue) { [all …]
|
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/ |
D | VNodeBuilder.java | 113 for (String paramValue : paramValueList) { in onPropertyCreated() 114 propNode.paramMap.put(paramType, paramValue); in onPropertyCreated()
|