Lines Matching +defs:val +defs:prop
492 Property prop;
640 prop = new Property(key_index, key_length, value_length);
643 prop = new PatternProperty(key_index, key_length, value_length);
654 addProperty(prop, property_index, keys_map, key_name);
707 Property prop;
728 prop = new Property(key_index,
733 prop = new PatternProperty(key_index,
737 addProperty(prop, i, keys_map, key);
759 private void addProperty(Property prop, int index,
773 _kp_array[index] = prop;
774 keys_map.put(key_name, prop);
808 Property prop;
810 prop = _ca_array[i];
811 // length of prop including '=' char
812 prop_len = prop._key_length + prop._value_length + 1;
813 System.arraycopy(specified_chars, prop._key_index,
815 prop.setKeyIndex(prop_index);
995 private static boolean checkValue(String val)
998 if (val == null) throw new
1001 final int len = val.length();
1005 final char[] s = val.toCharArray();
1522 Property prop = _ca_array[i];
1523 String key = prop.getKeyString(_canonicalName);
1525 return (prop instanceof PatternProperty);
1600 Property prop;
1602 prop = _ca_array[i];
1603 _propertyList.put(prop.getKeyString(_canonicalName),
1604 prop.getValueString(_canonicalName));
1713 final Property prop = _kp_array[i];
1714 final int prop_len = prop._key_length + prop._value_length + 1;
1715 System.arraycopy(value, prop._key_index, dest_chars, index,