/external/icu/icu4c/source/tools/toolutil/ |
D | denseranges.cpp | 64 int32_t minValue=0; in firstAfter() local 67 if(value<gapStarts[i] && (minIndex<0 || gapStarts[i]<minValue)) { in firstAfter() 68 minValue=gapStarts[i]; in firstAfter() 105 int32_t minValue=values[0]; in uprv_makeDenseRanges() local 109 int64_t maxLength=(int64_t)maxValue-(int64_t)minValue+1; in uprv_makeDenseRanges() 112 ranges[0][0]=minValue; in uprv_makeDenseRanges() 123 int32_t expectedValue=minValue; in uprv_makeDenseRanges() 149 ranges[0][0]=minValue; in uprv_makeDenseRanges() 151 int32_t gapIndex=gaps.firstAfter(minValue); in uprv_makeDenseRanges() 154 ranges[i+1][0]=minValue=(int32_t)(gapStart+gaps.gapLength(gapIndex)); in uprv_makeDenseRanges()
|
/external/chromium_org/third_party/icu/source/tools/toolutil/ |
D | denseranges.cpp | 64 int32_t minValue=0; in firstAfter() local 67 if(value<gapStarts[i] && (minIndex<0 || gapStarts[i]<minValue)) { in firstAfter() 68 minValue=gapStarts[i]; in firstAfter() 105 int32_t minValue=values[0]; in uprv_makeDenseRanges() local 109 int64_t maxLength=(int64_t)maxValue-(int64_t)minValue+1; in uprv_makeDenseRanges() 112 ranges[0][0]=minValue; in uprv_makeDenseRanges() 123 int32_t expectedValue=minValue; in uprv_makeDenseRanges() 149 ranges[0][0]=minValue; in uprv_makeDenseRanges() 151 int32_t gapIndex=gaps.firstAfter(minValue); in uprv_makeDenseRanges() 154 ranges[i+1][0]=minValue=(int32_t)(gapStart+gaps.gapLength(gapIndex)); in uprv_makeDenseRanges()
|
/external/chromium_org/ui/android/java/src/org/chromium/ui/picker/ |
D | WeekPickerDialog.java | 22 double minValue, double maxValue) { in WeekPickerDialog() argument 23 this(context, 0, callBack, year, weekOfYear, minValue, maxValue); in WeekPickerDialog() 38 double minValue, double maxValue) { in WeekPickerDialog() argument 39 super(context, theme, callBack, year, weekOfYear, minValue, maxValue); in WeekPickerDialog() 44 protected TwoFieldDatePicker createPicker(Context context, double minValue, double maxValue) { in createPicker() argument 45 return new WeekPicker(context, minValue, maxValue); in createPicker()
|
D | TwoFieldDatePickerDialog.java | 46 double minValue, in TwoFieldDatePickerDialog() argument 48 this(context, 0, callBack, year, positionInYear, minValue, maxValue); in TwoFieldDatePickerDialog() 63 double minValue, in TwoFieldDatePickerDialog() argument 75 mPicker = createPicker(context, minValue, maxValue); in TwoFieldDatePickerDialog() 80 protected TwoFieldDatePicker createPicker(Context context, double minValue, double maxValue) { in createPicker() argument
|
D | MonthPickerDialog.java | 26 protected TwoFieldDatePicker createPicker(Context context, double minValue, double maxValue) { in createPicker() argument 27 return new MonthPicker(context, minValue, maxValue); in createPicker()
|
D | TwoFieldDatePicker.java | 55 public TwoFieldDatePicker(Context context, double minValue, double maxValue) { in TwoFieldDatePicker() argument 91 if (minValue >= maxValue) { in TwoFieldDatePicker() 97 mMinDate = getDateForValue(minValue); in TwoFieldDatePicker()
|
D | MonthPicker.java | 22 public MonthPicker(Context context, double minValue, double maxValue) { in MonthPicker() argument 23 super(context, minValue, maxValue); in MonthPicker()
|
D | WeekPicker.java | 17 public WeekPicker(Context context, double minValue, double maxValue) { in WeekPicker() argument 18 super(context, minValue, maxValue); in WeekPicker()
|
/external/icu/icu4c/source/common/unicode/ |
D | enumset.h | 30 template<typename T, uint32_t minValue, uint32_t limitValue> 34 inline EnumSet(const EnumSet<T,minValue,limitValue>& other) : fBools(other.fBools) {} in EnumSet() argument 43 inline UBool isValidEnum(T toCheck) const { return (toCheck>=minValue&&toCheck<limitValue); } in isValidEnum() 45 …inline const EnumSet<T,minValue,limitValue>& operator=(const EnumSet<T,minValue,limitValue>& other… 56 inline uint32_t flag(T toCheck) const { return (1<<(toCheck-minValue)); } in flag()
|
/external/chromium_org/third_party/icu/source/common/unicode/ |
D | enumset.h | 29 template<typename T, uint32_t minValue, uint32_t limitValue> 33 inline EnumSet(const EnumSet<T,minValue,limitValue>& other) : fBools(other.fBools) {} in EnumSet() argument 41 inline UBool isValidEnum(T toCheck) const { return (toCheck>=minValue&&toCheck<limitValue); } in isValidEnum() 43 …inline const EnumSet<T,minValue,limitValue>& operator=(const EnumSet<T,minValue,limitValue>& other… 53 inline uint32_t flag(T toCheck) const { return (1<<(toCheck-minValue)); } in flag()
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/ |
D | CountersGraph.js | 312 var minValue; 315 if (minValue === undefined || value < minValue) 316 minValue = value; 320 minValue = minValue || 0; 325 minValue = Math.min(minValue, this._limitValue); 327 return { min: minValue, max: maxValue }; 407 setRange: function(minValue, maxValue) argument 409 this._range.textContent = WebInspector.UIString("[%.0f:%.0f]", minValue, maxValue); 468 var minValue = bounds.min; 470 this.setRange(minValue, maxValue); [all …]
|
/external/chromium_org/third_party/WebKit/Source/platform/animation/ |
D | TimingFunction.cpp | 22 void LinearTimingFunction::range(double* minValue, double* maxValue) const in range() argument 58 void CubicBezierTimingFunction::range(double* minValue, double* maxValue) const in range() argument 106 double solutionMin = m_bezier->solve(*minValue, std::numeric_limits<double>::epsilon()); in range() 108 *minValue = std::min(std::min(solutionMin, solutionMax), 0.0); in range() 110 *minValue = std::min(std::min(*minValue, solution1), solution2); in range() 141 void StepsTimingFunction::range(double* minValue, double* maxValue) const in range() argument 143 *minValue = 0; in range()
|
D | TimingFunction.h | 60 virtual void range(double* minValue, double* maxValue) const = 0; 86 virtual void range(double* minValue, double* maxValue) const OVERRIDE; 143 virtual void range(double* minValue, double* maxValue) const OVERRIDE; 209 virtual void range(double* minValue, double* maxValue) const OVERRIDE;
|
/external/deqp/modules/gles31/functional/ |
D | es31fIntegerStateQueryTests.cpp | 161 static bool verifyMinValue (glu::CallLogWrapper& gl, glw::GLenum target, int minValue, VerifierType… in verifyMinValue() argument 177 else if (minValue > 0 && value == GL_FALSE) in verifyMinValue() 198 else if (value < minValue) in verifyMinValue() 200 …gl.getLog() << tcu::TestLog::Message << "Expected greater or equal to " << minValue << ", got " <<… in verifyMinValue() 219 else if (value < minValue) in verifyMinValue() 221 …gl.getLog() << tcu::TestLog::Message << "Expected greater or equal to " << minValue << ", got " <<… in verifyMinValue() 240 else if (value < minValue) in verifyMinValue() 242 …gl.getLog() << tcu::TestLog::Message << "Expected greater or equal to " << minValue << ", got " <<… in verifyMinValue() 441 …t& context, const char* name, const char* desc, glw::GLenum target, int minValue, VerifierType ver… 450 …t& context, const char* name, const char* desc, glw::GLenum target, int minValue, VerifierType ver… in MaxSamplesCase() argument [all …]
|
D | es31fShaderMultisampleInterpolationStateQueryTests.cpp | 51 static void verifyGreaterOrEqual (VerifierType verifier, glw::GLenum target, float minValue, Contex… in verifyGreaterOrEqual() argument 85 const glw::GLint refValue = (glw::GLint)deFloatFloor(minValue); in verifyGreaterOrEqual() 105 const float refValue = minValue; in verifyGreaterOrEqual() 125 const glw::GLint64 refValue = (glw::GLint64)deFloatFloor(minValue); in verifyGreaterOrEqual() 148 static void verifyLessOrEqual (VerifierType verifier, glw::GLenum target, float minValue, Context& … in verifyLessOrEqual() argument 182 const glw::GLint refValue = (glw::GLint)deFloatCeil(minValue); in verifyLessOrEqual() 202 const float refValue = minValue; in verifyLessOrEqual() 222 const glw::GLint64 refValue = (glw::GLint64)deFloatCeil(minValue); in verifyLessOrEqual()
|
D | es31fAtomicCounterTests.cpp | 673 deUint32 minValue = (deUint32)-1; in checkUniquenessAndLinearity() local 682 minValue = std::min(minValue, values[valueNdx]); in checkUniquenessAndLinearity() 687 counts.resize(maxValue - minValue + 1, 0); in checkUniquenessAndLinearity() 692 counts[values[valueNdx] - minValue]++; in checkUniquenessAndLinearity() 700 …log << TestLog::Message << "Value " << (minValue + countNdx) << " is not unique. Returned " << cou… in checkUniquenessAndLinearity() 720 deUint32 minValue = 0xFFFFFFFFu; in checkPath() local 727 minValue = std::min(minValue, increments[valueNdx]); in checkPath() 736 minValue = std::min(minValue, decrements[valueNdx]); in checkPath() 741 minValue = std::min(minValue, (deUint32)initialValue); in checkPath() 744 incrementCounts.resize(maxValue - minValue + 1, 0); in checkPath() [all …]
|
/external/chromium_org/content/browser/resources/media/ |
D | timeline_graph_view.js | 359 layoutLabels_: function(minValue, maxValue) { argument 360 if (maxValue - minValue < 1024) { 361 this.layoutLabelsBasic_(minValue, maxValue, MAX_DECIMAL_PRECISION); 370 minValue /= 1024; 372 while (units[unit + 1] && maxValue - minValue >= 1024) { 373 minValue /= 1024; 379 this.layoutLabelsBasic_(minValue, maxValue, MAX_DECIMAL_PRECISION); 395 layoutLabelsBasic_: function(minValue, maxValue, maxDecimalDigits) { argument 397 var range = maxValue - minValue; 452 this.min_ = Math.floor(minValue / stepSize) * stepSize;
|
/external/deqp/modules/glshared/ |
D | glsLongStressCase.hpp | 66 Value minValue; member 78 minValue.f[0] = minValue_; in set() 86 vecToArr(minValue_, minValue.f); in set() 94 matToArr(minValue_, minValue.f); in set() 101 minValue.i[0] = minValue_; in set() 109 vecToArr(minValue_, minValue.i); in set() 146 tcu::Vec4 minValue; member 175 , minValue (minValue_) in TextureSpec()
|
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/ |
D | copyvertex.inl | 120 const int32_t minValue = 0xFFFFFE01; // Inverse of maxValue local 122 // A 10-bit two's complement number has the possibility of being minValue - 1 but 123 … // OpenGL's normalization rules dictate that it should be clamped to minValue in this 125 if (finalValue < minValue) 127 finalValue = minValue; 130 const int32_t halfRange = (maxValue - minValue) >> 1; 131 *floatOutput = ((finalValue - minValue) / halfRange) - 1.0f;
|
/external/skia/src/effects/ |
D | SkColorFilterImageFilter.cpp | 41 SkScalar minValue = row[4] / 255; in component_needs_clamping() local 46 minValue += row[i]; in component_needs_clamping() 48 return (maxValue > 1) || (minValue < 0); in component_needs_clamping()
|
/external/chromium_org/third_party/skia/src/effects/ |
D | SkColorFilterImageFilter.cpp | 41 SkScalar minValue = row[4] / 255; in component_needs_clamping() local 46 minValue += row[i]; in component_needs_clamping() 48 return (maxValue > 1) || (minValue < 0); in component_needs_clamping()
|
/external/deqp/modules/gles3/functional/ |
D | es3fInteger64StateQueryTests.cpp | 199 …erifier* verifier, const char* name, const char* description, GLenum targetName, GLuint64 minValue) in ConstantMinimumValue64TestCase() argument 202 , m_minValue (minValue) in ConstantMinimumValue64TestCase() 294 GLuint64 minValue; in init() member 306 …].description, implementationLimits[testNdx].targetName, implementationLimits[testNdx].minValue))); in init()
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
D | image.c | 814 GLint minValue) in clip_left_or_bottom() argument 818 if (*dstX0 < minValue) { in clip_left_or_bottom() 820 ASSERT(*dstX1 > minValue); /* X1 should be inside left edge */ in clip_left_or_bottom() 821 t = (GLfloat) (minValue - *dstX0) / (GLfloat) (*dstX1 - *dstX0); in clip_left_or_bottom() 824 *dstX0 = minValue; in clip_left_or_bottom() 828 else if (*dstX1 < minValue) { in clip_left_or_bottom() 830 ASSERT(*dstX0 > minValue); /* X0 should be inside left edge */ in clip_left_or_bottom() 831 t = (GLfloat) (minValue - *dstX1) / (GLfloat) (*dstX0 - *dstX1); in clip_left_or_bottom() 834 *dstX1 = minValue; in clip_left_or_bottom()
|
/external/mesa3d/src/mesa/main/ |
D | image.c | 814 GLint minValue) in clip_left_or_bottom() argument 818 if (*dstX0 < minValue) { in clip_left_or_bottom() 820 ASSERT(*dstX1 > minValue); /* X1 should be inside left edge */ in clip_left_or_bottom() 821 t = (GLfloat) (minValue - *dstX0) / (GLfloat) (*dstX1 - *dstX0); in clip_left_or_bottom() 824 *dstX0 = minValue; in clip_left_or_bottom() 828 else if (*dstX1 < minValue) { in clip_left_or_bottom() 830 ASSERT(*dstX0 > minValue); /* X0 should be inside left edge */ in clip_left_or_bottom() 831 t = (GLfloat) (minValue - *dstX1) / (GLfloat) (*dstX0 - *dstX1); in clip_left_or_bottom() 834 *dstX1 = minValue; in clip_left_or_bottom()
|
/external/guava/guava/src/com/google/common/collect/ |
D | DiscreteDomains.java | 61 @Override public Integer minValue() { in minValue() method in DiscreteDomains.IntegerDomain 108 @Override public Long minValue() { in minValue() method in DiscreteDomains.LongDomain
|