/external/icu/icu4c/source/i18n/ |
D | quant.cpp | 28 this->minCount = _minCount; in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() 36 minCount(o.minCount), in Quantifier() 88 if (count >= minCount) { in matches() 102 if (minCount == 0) { in toPattern() 109 } else if (minCount == 1 && maxCount == MAX) { in toPattern() 113 ICU_Utility::appendNumber(result, minCount); in toPattern() 126 return (minCount == 0) || matcher->toMatcher()->matchesIndexValue(v); in matchesIndexValue()
|
D | quant.h | 29 uint32_t minCount, uint32_t maxCount); 115 uint32_t minCount; variable
|
D | rematch.cpp | 3448 int32_t minCount = (int32_t)pat[instrOperandLoc+1]; in MatchAt() local 3450 U_ASSERT(minCount>=0); in MatchAt() 3451 U_ASSERT(maxCount>=minCount || maxCount==-1); in MatchAt() 3454 if (minCount == 0) { in MatchAt() 3471 int32_t minCount = (int32_t)pat[opValue+2]; in MatchAt() local 3478 if (*pCounter >= minCount) { in MatchAt() 3506 int32_t minCount = (int32_t)pat[instrOperandLoc+1]; in MatchAt() local 3508 U_ASSERT(minCount>=0); in MatchAt() 3509 U_ASSERT(maxCount>=minCount || maxCount==-1); in MatchAt() 3515 if (minCount == 0) { in MatchAt() [all …]
|
/external/chromium_org/third_party/icu/source/i18n/ |
D | quant.cpp | 28 this->minCount = _minCount; in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() 36 minCount(o.minCount), in Quantifier() 88 if (count >= minCount) { in matches() 102 if (minCount == 0) { in toPattern() 109 } else if (minCount == 1 && maxCount == MAX) { in toPattern() 113 ICU_Utility::appendNumber(result, minCount); in toPattern() 126 return (minCount == 0) || matcher->toMatcher()->matchesIndexValue(v); in matchesIndexValue()
|
D | quant.h | 29 uint32_t minCount, uint32_t maxCount); 115 uint32_t minCount; variable
|
D | rematch.cpp | 3491 int32_t minCount = (int32_t)pat[instrOperandLoc+1]; in MatchAt() local 3493 U_ASSERT(minCount>=0); in MatchAt() 3494 U_ASSERT(maxCount>=minCount || maxCount==-1); in MatchAt() 3497 if (minCount == 0) { in MatchAt() 3514 int32_t minCount = (int32_t)pat[opValue+2]; in MatchAt() local 3521 if (*pCounter >= minCount) { in MatchAt() 3549 int32_t minCount = (int32_t)pat[instrOperandLoc+1]; in MatchAt() local 3551 U_ASSERT(minCount>=0); in MatchAt() 3552 U_ASSERT(maxCount>=minCount || maxCount==-1); in MatchAt() 3558 if (minCount == 0) { in MatchAt() [all …]
|
/external/easymock/src/org/easymock/ |
D | MockControl.java | 345 public void setVoidCallable(int minCount, int maxCount) { in setVoidCallable() argument 348 .times(minCount, maxCount); in setVoidCallable() 376 public void setThrowable(Throwable throwable, int minCount, int maxCount) { in setThrowable() argument 379 .andThrow(throwable).times(minCount, maxCount); in setThrowable() 405 public void setReturnValue(Object value, int minCount, int maxCount) { in setReturnValue() argument 408 .andReturn(value).times(minCount, maxCount); in setReturnValue()
|
/external/srec/tools/grxmlcompile/ |
D | gr_iface.cpp | 113 void Graph::BeginItemRepeat (SubGraph *subg, int minCount, int maxCount) in BeginItemRepeat() argument 115 subg->BeginScope (SCOPE_REPEAT, minCount, maxCount); in BeginItemRepeat() 177 void Graph::BeginCount (SubGraph *subg, int minCount, int maxCount) in BeginCount() argument 179 subg->BeginScope (SCOPE_COUNT, minCount, maxCount); in BeginCount()
|
D | grph.h | 56 void BeginCount (SubGraph *subg, int minCount, int maxCount);
|
/external/chromium_org/third_party/polymer/components-chromium/core-layout-grid/ |
D | core-layout-grid-extracted.js | 95 var minCount = majCount && matrix[0].length || 0; 98 for (var i=0; i<minCount; i++) { 112 owns = (i === minCount-1) || (nodei !== vector[i+1]); 113 } else if (i === minCount - 1) {
|
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/ |
D | Renderer11.cpp | 773 GLsizei minCount = 0; in applyPrimitiveType() local 777 …case GL_POINTS: primitiveTopology = D3D11_PRIMITIVE_TOPOLOGY_POINTLIST; minCount = 1; br… in applyPrimitiveType() 778 …case GL_LINES: primitiveTopology = D3D_PRIMITIVE_TOPOLOGY_LINELIST; minCount = 2; br… in applyPrimitiveType() 779 …case GL_LINE_LOOP: primitiveTopology = D3D_PRIMITIVE_TOPOLOGY_LINESTRIP; minCount = 2; br… in applyPrimitiveType() 780 …case GL_LINE_STRIP: primitiveTopology = D3D_PRIMITIVE_TOPOLOGY_LINESTRIP; minCount = 2; br… in applyPrimitiveType() 781 …case GL_TRIANGLES: primitiveTopology = D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST; minCount = 3; br… in applyPrimitiveType() 782 …case GL_TRIANGLE_STRIP: primitiveTopology = D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP; minCount = 3; br… in applyPrimitiveType() 784 …case GL_TRIANGLE_FAN: primitiveTopology = D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST; minCount = 3; br… in applyPrimitiveType() 796 return count >= minCount; in applyPrimitiveType()
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
D | wbnf.cpp | 738 Repeat(Pick * base, int minCount =0, int maxCount = 1, Buffer_int * weights = NULL): in Repeat() argument 739 wr(weights, maxCount-minCount +1) { in Repeat() 741 this->min = minCount; in Repeat()
|
/external/icu/icu4c/source/test/intltest/ |
D | collationtest.cpp | 88 int32_t someLength, int32_t minCount); 499 int32_t someLength, int32_t minCount) { in checkAllocWeights() argument 524 if(count < minCount) { in checkAllocWeights() 528 (long)count, (long)minCount, (int)someLength); in checkAllocWeights()
|