Home
last modified time | relevance | path

Searched refs:complexStyle (Results 1 – 6 of 6) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/text/
DMessagePatternUtil.java235 return complexStyle; in getComplexStyle()
251 sb.append(',').append(complexStyle.toString()); in toString()
269 private ComplexArgStyleNode complexStyle; field in MessagePatternUtil.ArgNode
474 node.complexStyle = buildChoiceStyleNode(pattern, start, limit); in buildArgNode()
478 node.complexStyle = buildPluralStyleNode(pattern, start, limit, argType); in buildArgNode()
482 node.complexStyle = buildSelectStyleNode(pattern, start, limit); in buildArgNode()
486 node.complexStyle = buildPluralStyleNode(pattern, start, limit, argType); in buildArgNode()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DMessagePatternUtil.java257 return complexStyle; in getComplexStyle()
274 sb.append(',').append(complexStyle.toString()); in toString()
292 private ComplexArgStyleNode complexStyle; field in MessagePatternUtil.ArgNode
510 node.complexStyle = buildChoiceStyleNode(pattern, start, limit); in buildArgNode()
514 node.complexStyle = buildPluralStyleNode(pattern, start, limit, argType); in buildArgNode()
518 node.complexStyle = buildSelectStyleNode(pattern, start, limit); in buildArgNode()
522 node.complexStyle = buildPluralStyleNode(pattern, start, limit, argType); in buildArgNode()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DMessagePatternUtilTest.java216 ComplexArgStyleNode complexStyle = arg.getComplexStyle(); in matches() local
217 ok &= assertNotNull("unexpected null complex style", complexStyle); in matches()
222 argType, complexStyle.getArgType()); in matches()
224 explicitOffset, complexStyle.hasExplicitOffset()); in matches()
226 offset, complexStyle.getOffset()); in matches()
227 List<VariantNode> complexVariants = complexStyle.getVariants(); in matches()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DMessagePatternUtilTest.java217 ComplexArgStyleNode complexStyle = arg.getComplexStyle(); in matches() local
218 ok &= assertNotNull("unexpected null complex style", complexStyle); in matches()
223 argType, complexStyle.getArgType()); in matches()
225 explicitOffset, complexStyle.hasExplicitOffset()); in matches()
227 offset, complexStyle.getOffset()); in matches()
228 List<VariantNode> complexVariants = complexStyle.getVariants(); in matches()
/external/icu/icu4j/samples/src/com/ibm/icu/samples/text/messagepattern/
DMessagePatternUtilDemo.java280 MessagePatternUtil.ComplexArgStyleNode complexStyle = arg.getComplexStyle(); in addArgs() local
281 if (complexStyle != null) { in addArgs()
282 for (MessagePatternUtil.VariantNode variant : complexStyle.getVariants()) { in addArgs()
/external/skia/src/gpu/
DGrRenderTargetContext.cpp1298 bool complexStyle = !style.isSimpleFill(); in drawRegion() local
1299 if (complexStyle || GrAA::kYes == aa) { in drawRegion()