Home | History | Annotate | Download | only in simple

Lines Matching defs:Part

279      * @param partIndex the index of the first PluralFormat argument style part.
284 * @return the sub-message start part index.
291 MessagePattern.Part part=pattern.getPart(partIndex);
292 if(part.getType().hasNumericValue()) {
293 offset=pattern.getNumericValue(part);
321 part=pattern.getPart(partIndex++);
322 MessagePattern.Part.Type type=part.getType();
323 if(type==MessagePattern.Part.Type.ARG_LIMIT) {
326 assert type==MessagePattern.Part.Type.ARG_SELECTOR;
327 // part is an ARG_SELECTOR followed by an optional explicit value, and then a message
330 part=pattern.getPart(partIndex++);
331 if(number==pattern.getNumericValue(part)) {
338 if(pattern.partSubstringMatches(part, "other")) {
358 if(!haveKeywordMatch && pattern.partSubstringMatches(part, keyword)) {