HomeSort by relevance Sort by last modified time
    Searched refs:baseDecimalPlaces (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/html/parser/
HTMLParserIdioms.cpp 116 unsigned baseDecimalPlaces = 0;
119 baseDecimalPlaces = string.length() - dotIndex - 1;
121 baseDecimalPlaces = eIndex - dotIndex - 1;
161 int intDecimalPlaces = baseDecimalPlaces - exponent;
  /external/webkit/Source/WebCore/html/
HTMLInputElement.cpp 354 unsigned baseDecimalPlaces;
355 double base = m_inputType->stepBaseWithDecimalPlaces(&baseDecimalPlaces);
356 baseDecimalPlaces = min(baseDecimalPlaces, 16u);
362 double scale = pow(10.0, static_cast<double>(max(stepDecimalPlaces, baseDecimalPlaces)));
    [all...]

Completed in 209 milliseconds