Home
last modified time | relevance | path

Searched refs:countType (Results 1 – 7 of 7) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/tool/
DConvertXTB.java233 String countType = null; in addPluralValue() local
241 countType = buffer.substring(startIndex); in addPluralValue()
254 if (countType.length() == 1) { in addPluralValue()
255 countType = countType.charAt(0) == '1' ? "one" : "zero"; in addPluralValue()
256 } else if (countType.equals("one")) { in addPluralValue()
259 countType = null; in addPluralValue()
264 String pluralXPath = xpath + "[@count=\"" + countType + "\"]"; in addPluralValue()
270 if (countType.matches("[01]")) { in addPluralValue()
271 pluralValue = pluralValue.replaceAll(countType + "(?!})", "{0}"); in addPluralValue()
278 countType = null; in addPluralValue()
/external/antlr/runtime/ObjC/Framework/ANTLR.xcodeproj/
Dacondit.pbxuser1313 countType = 0;
1331 countType = 0;
1349 countType = 0;
1367 countType = 0;
1409 countType = 0;
1426 countType = 0;
1443 countType = 0;
1460 countType = 0;
1477 countType = 0;
1494 countType = 0;
[all …]
/external/deqp/external/openglcts/modules/common/
DglcShaderLoopTests.cpp132 static const char* getLoopCountTypeName(LoopCountType countType) in getLoopCountTypeName() argument
137 DE_ASSERT(deInBounds32((int)countType, 0, LOOPCOUNT_LAST)); in getLoopCountTypeName()
138 return s_names[(int)countType]; in getLoopCountTypeName()
/external/deqp/modules/gles3/functional/
Des3fShaderLoopTests.cpp171 static const char* getLoopCountTypeName (LoopCountType countType) in getLoopCountTypeName() argument
181 DE_ASSERT(deInBounds32((int)countType, 0, LOOPCOUNT_LAST)); in getLoopCountTypeName()
182 return s_names[(int)countType]; in getLoopCountTypeName()
/external/deqp/modules/gles2/functional/
Des2fShaderLoopTests.cpp174 static const char* getLoopCountTypeName (LoopCountType countType) in getLoopCountTypeName() argument
184 DE_ASSERT(deInBounds32((int)countType, 0, LOOPCOUNT_LAST)); in getLoopCountTypeName()
185 return s_names[(int)countType]; in getLoopCountTypeName()
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRenderLoopTests.cpp230 static const char* getLoopCountTypeName (LoopCountType countType) in getLoopCountTypeName() argument
240 DE_ASSERT(deInBounds32((int)countType, 0, LOOPCOUNT_LAST)); in getLoopCountTypeName()
241 return s_names[(int)countType]; in getLoopCountTypeName()
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmTypeTests.cpp642 const string countType = ((isSigned) ? "i" : "u") + de::toString(countWidth); in getFullOperationWithDifferentInputWidthStr() local
653 …str += "%input" + countNdx + "_val_" + de::toString(countWidth) + " = OpSConvert %" + countType + … in getFullOperationWithDifferentInputWidthStr()