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);
587 handleAdrOrgN(property, propertyRawValue, sourceCharset, targetCharset);
596 property.getParameters(VCardConstants.PARAM_ENCODING) == null &&
603 property.setRawValue(quotedPrintablePart);
604 property.setValues(propertyEncodedValue);
606 interpreter.onPropertyCreated(property);
615 property.setByteValue(Base64.decode(base64Property, Base64.DEFAULT));
620 interpreter.onPropertyCreated(property);
625 interpreter.onPropertyCreated(property);
691 property.setValues(propertyValueList);
693 interpreter.onPropertyCreated(property);
698 private void handleAdrOrgN(VCardProperty property, String propertyRawValue,
711 property.setRawValue(quotedPrintablePart);
732 property.setValues(encodedValueList);
734 interpreter.onPropertyCreated(property);
799 * Given the first line of a property, checks consecutive lines after it and builds a new
802 * @param firstString The first line of the property.
803 * @return A new property, potentially built from multiple lines.
823 // contain a property name (i.e. a colon or semi-colon).
852 Log.w(LOG_TAG, "Found a next property during parsing a BASE64 string, " +
854 + "property.");
875 * Extracts the property name portion of a given vCard line.
885 * @return The property name portion. {@literal null} if no property name found.
908 * error toward the AGENT property.
909 * // TODO: Support AGENT property.
914 protected void handleAgent(final VCardProperty property) throws VCardException {
915 if (!property.getRawValue().toUpperCase().contains("BEGIN:VCARD")) {
918 interpreter.onPropertyCreated(property);