Home | History | Annotate | Download | only in common

Lines Matching refs:property

30  * Get the next non-ignorable ASCII character from a property name
53 * Get the next non-ignorable EBCDIC character from a property name
76 * Unicode property names and property value names are compared "loosely".
79 * For all property names, property value names, and for property values for
148 int32_t PropNameData::findProperty(int32_t property) {
155 if(property<start) {
158 if(property<limit) {
159 return i+(property-start)*2;
168 return 0; // The property does not have named values.
214 return NULL; // no name (Property[Value]Aliases.txt has "n/a")
239 const char *PropNameData::getPropertyName(int32_t property, int32_t nameChoice) {
240 int32_t valueMapIndex=findProperty(property);
242 return NULL; // Not a known property.
247 const char *PropNameData::getPropertyValueName(int32_t property, int32_t value, int32_t nameChoice) {
248 int32_t valueMapIndex=findProperty(property);
250 return NULL; // Not a known property.
272 int32_t PropNameData::getPropertyValueEnum(int32_t property, const char *alias) {
273 int32_t valueMapIndex=findProperty(property);
275 return UCHAR_INVALID_CODE; // Not a known property.
279 return UCHAR_INVALID_CODE; // The property does not have named values.
281 // valueMapIndex is the start of the property's valueMap,
291 u_getPropertyName(UProperty property,
294 return PropNameData::getPropertyName(property, nameChoice);
304 u_getPropertyValueName(UProperty property,
308 return PropNameData::getPropertyValueName(property, value, nameChoice);
312 u_getPropertyValueEnum(UProperty property,
315 return PropNameData::getPropertyValueEnum(property, alias);