Lines Matching full:props
206 UniProps *props; in getProps() local
232 props=&defaultProps; in getProps()
237 props=&blockProps; in getProps()
269 props=&cpProps; in getProps()
276 props->start=start; in getProps()
277 props->end=end; in getProps()
279 if(!parseProperty(*props, field, newValues, errorCode)) { return NULL; } in getProps()
297 return props; in getProps()
311 PreparsedUCD::parseProperty(UniProps &props, const char *field, UnicodeSet &newValues, in parseProperty() argument
353 props.binProps[prop]=(UBool)binaryValue; in parseProperty()
390 props.intProps[prop-UCHAR_INT_START]=value; in parseProperty()
396 props.bmg=U_SENTINEL; in parseProperty()
399 props.bpb=U_SENTINEL; in parseProperty()
402 props.scf=U_SENTINEL; in parseProperty()
405 props.slc=U_SENTINEL; in parseProperty()
408 props.stc=U_SENTINEL; in parseProperty()
411 props.suc=U_SENTINEL; in parseProperty()
414 props.cf.remove(); in parseProperty()
417 props.lc.remove(); in parseProperty()
420 props.tc.remove(); in parseProperty()
423 props.uc.remove(); in parseProperty()
426 props.scx.clear(); in parseProperty()
438 props.numericValue=v; in parseProperty()
441 props.digitValue=c-'0'; in parseProperty()
443 props.digitValue=-1; in parseProperty()
447 props.name=v; in parseProperty()
450 u_versionFromString(props.age, v); // Writes 0.0.0.0 if v is not numeric. in parseProperty()
453 props.bmg=parseCodePoint(v, errorCode); in parseProperty()
456 props.bpb=parseCodePoint(v, errorCode); in parseProperty()
459 props.scf=parseCodePoint(v, errorCode); in parseProperty()
462 props.slc=parseCodePoint(v, errorCode); in parseProperty()
465 props.stc=parseCodePoint(v, errorCode); in parseProperty()
468 props.suc=parseCodePoint(v, errorCode); in parseProperty()
471 parseString(v, props.cf, errorCode); in parseProperty()
474 parseString(v, props.lc, errorCode); in parseProperty()
477 parseString(v, props.tc, errorCode); in parseProperty()
480 parseString(v, props.uc, errorCode); in parseProperty()
483 props.nameAlias=v; in parseProperty()
490 parseScriptExtensions(v, props.scx, errorCode); in parseProperty()