Searched refs:paramValue (Results 1 – 5 of 5) sorted by relevance
/frameworks/opt/vcard/java/com/android/vcard/ |
D | VCardParserImpl_V30.java | 153 VCardProperty propertyData, final String paramName, final String paramValue) { in handleAnyParam() argument 154 splitAndPutParam(propertyData, paramName, paramValue); in handleAnyParam() 158 protected void handleParamWithoutName(VCardProperty property, final String paramValue) { in handleParamWithoutName() argument 159 handleType(property, paramValue); in handleParamWithoutName() 175 protected void handleType(VCardProperty property, final String paramValue) { in handleType() argument 176 splitAndPutParam(property, VCardConstants.PARAM_TYPE, paramValue); in handleType() 191 private void splitAndPutParam(VCardProperty property, String paramName, String paramValue) { in splitAndPutParam() argument 202 final int length = paramValue.length(); in splitAndPutParam() 204 final char ch = paramValue.charAt(i); in splitAndPutParam() 229 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 | 447 String paramValue = strArray[1].trim(); 449 handleType(propertyData, paramValue); 451 handleValue(propertyData, paramValue); 453 handleEncoding(propertyData, paramValue.toUpperCase()); 455 handleCharset(propertyData, paramValue); 457 handleLanguage(propertyData, paramValue); 459 handleAnyParam(propertyData, paramName, paramValue); 471 protected void handleParamWithoutName(VCardProperty propertyData, final String paramValue) { 472 handleType(propertyData, paramValue); 566 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()
|
/frameworks/ml/bordeaux/learning/stochastic_linear_ranker/jni/ |
D | jni_stochastic_linear_ranker.cpp | 43 const char * name , const char * paramValue, int index) { in ConvertParameter2Object() argument 46 jstring jstrV = env->NewStringUTF(paramValue); in ConvertParameter2Object()
|