Lines Matching refs:props
205 UniProps *props; in getProps() local
222 props=&defaultProps; in getProps()
227 props=&blockProps; in getProps()
246 props=&cpProps; in getProps()
253 props->start=start; in getProps()
254 props->end=end; in getProps()
256 if(!parseProperty(*props, field, newValues, errorCode)) { return NULL; } in getProps()
258 return props; in getProps()
272 PreparsedUCD::parseProperty(UniProps &props, const char *field, UnicodeSet &newValues, in parseProperty() argument
314 props.binProps[prop]=(UBool)binaryValue; in parseProperty()
351 props.intProps[prop-UCHAR_INT_START]=value; in parseProperty()
357 props.bmg=U_SENTINEL; in parseProperty()
360 props.bpb=U_SENTINEL; in parseProperty()
363 props.scf=U_SENTINEL; in parseProperty()
366 props.slc=U_SENTINEL; in parseProperty()
369 props.stc=U_SENTINEL; in parseProperty()
372 props.suc=U_SENTINEL; in parseProperty()
375 props.cf.remove(); in parseProperty()
378 props.lc.remove(); in parseProperty()
381 props.tc.remove(); in parseProperty()
384 props.uc.remove(); in parseProperty()
387 props.scx.clear(); in parseProperty()
399 props.numericValue=v; in parseProperty()
402 props.digitValue=c-'0'; in parseProperty()
404 props.digitValue=-1; in parseProperty()
408 props.name=v; in parseProperty()
411 u_versionFromString(props.age, v); // Writes 0.0.0.0 if v is not numeric. in parseProperty()
414 props.bmg=parseCodePoint(v, errorCode); in parseProperty()
417 props.bpb=parseCodePoint(v, errorCode); in parseProperty()
420 props.scf=parseCodePoint(v, errorCode); in parseProperty()
423 props.slc=parseCodePoint(v, errorCode); in parseProperty()
426 props.stc=parseCodePoint(v, errorCode); in parseProperty()
429 props.suc=parseCodePoint(v, errorCode); in parseProperty()
432 parseString(v, props.cf, errorCode); in parseProperty()
435 parseString(v, props.lc, errorCode); in parseProperty()
438 parseString(v, props.tc, errorCode); in parseProperty()
441 parseString(v, props.uc, errorCode); in parseProperty()
444 props.nameAlias=v; in parseProperty()
451 parseScriptExtensions(v, props.scx, errorCode); in parseProperty()