Home
last modified time | relevance | path

Searched refs:paramValue (Results 1 – 5 of 5) sorted by relevance

/frameworks/opt/vcard/java/com/android/vcard/
DVCardParserImpl_V30.java153 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 …]
DVCardProperty.java87 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()
DVCardParserImpl_V21.java447 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/
DVNodeBuilder.java113 for (String paramValue : paramValueList) { in onPropertyCreated()
114 propNode.paramMap.put(paramType, paramValue); in onPropertyCreated()
/frameworks/ml/bordeaux/learning/stochastic_linear_ranker/jni/
Djni_stochastic_linear_ranker.cpp43 const char * name , const char * paramValue, int index) { in ConvertParameter2Object() argument
46 jstring jstrV = env->NewStringUTF(paramValue); in ConvertParameter2Object()