Lines Matching defs:property

165      * @return true when a given property name is a valid property name.
330 private void parseItemInter(VCardProperty property, String propertyNameUpper)
332 String propertyRawValue = property.getRawValue();
334 handleAgent(property);
341 handlePropertyValue(property, propertyNameUpper);
343 throw new VCardException("Unknown property name: \"" + propertyNameUpper + "\"");
357 // For performance reason, the states for group and property name are merged into one.
380 if (ch == ':') { // End of a property name.
392 nameIndex = i + 1; // Next should be another group or a property name.
393 } else if (ch == ';') { // End of property name and beginneng of parameters.
570 protected void handlePropertyValue(VCardProperty property, String propertyName)
572 final String propertyNameUpper = property.getName().toUpperCase();
573 String propertyRawValue = property.getRawValue();
576 property.getParameters(VCardConstants.PARAM_CHARSET);
598 property.setRawValue(quotedPrintablePart);
618 property.setValues(encodedValueList);
620 interpreter.onPropertyCreated(property);
631 property.setRawValue(quotedPrintablePart);
632 property.setValues(propertyEncodedValue);
634 interpreter.onPropertyCreated(property);
641 property.setByteValue(Base64.decode(getBase64(propertyRawValue), Base64.DEFAULT));
643 interpreter.onPropertyCreated(property);
648 interpreter.onPropertyCreated(property);
714 property.setValues(propertyValueList);
716 interpreter.onPropertyCreated(property);
798 Log.w(LOG_TAG, "Found a next property during parsing a BASE64 string, " +
799 "which must not contain semi-colon. Treat the line as next property.");
819 * error toward the AGENT property.
820 * // TODO: Support AGENT property.
825 protected void handleAgent(final VCardProperty property) throws VCardException {
826 if (!property.getRawValue().toUpperCase().contains("BEGIN:VCARD")) {
829 interpreter.onPropertyCreated(property);