OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:optimum
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMeterElement.idl
30
attribute double
optimum
;
HTMLMeterElement.cpp
127
double HTMLMeterElement::
optimum
() const
function in class:blink::HTMLMeterElement
129
double
optimum
= getFloatingPointAttribute(optimumAttr, (max() + min()) / 2);
local
130
return std::min(std::max(
optimum
, min()), max());
133
void HTMLMeterElement::setOptimum(double
optimum
)
135
setFloatingPointAttribute(optimumAttr,
optimum
);
143
double optimumValue =
optimum
();
146
// The
optimum
range stays under low
155
// The
optimum
range stays over high
163
// The
optimum
range stays between high and low.
HTMLMeterElement.h
58
double
optimum
() const;
/external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java
654
Optimal
optimum
= _optimum[repLen];
local
655
if (curAndLenPrice <
optimum
.Price)
657
optimum
.Price = curAndLenPrice;
658
optimum
.PosPrev = 0;
659
optimum
.BackPrev = i;
660
optimum
.Prev1IsChar = false;
678
Optimal
optimum
= _optimum[len];
local
679
if (curAndLenPrice <
optimum
.Price)
681
optimum
.Price = curAndLenPrice;
682
optimum
.PosPrev = 0;
866
Optimal
optimum
= _
optimum
[offset];
local
892
Optimal
optimum
= _
optimum
[cur + lenTest];
local
935
Optimal
optimum
= _
optimum
[cur + offset];
local
972
Optimal
optimum
= _
optimum
[cur + lenTest];
local
[
all
...]
/external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs
654
Optimal
optimum
= _optimum[repLen];
655
if (curAndLenPrice <
optimum
.Price)
657
optimum
.Price = curAndLenPrice;
658
optimum
.PosPrev = 0;
659
optimum
.BackPrev = i;
660
optimum
.Prev1IsChar = false;
678
Optimal
optimum
= _optimum[len];
679
if (curAndLenPrice <
optimum
.Price)
681
optimum
.Price = curAndLenPrice;
682
optimum
.PosPrev = 0;
[
all
...]
/external/chromium_org/chrome/browser/web_dev_style/
css_checker.py
186
'meter-
optimum
-value',
/external/chromium_org/ui/keyboard/resources/
touch_fuzzing.js
324
* Calculates the
optimum
split points on the specified axis.
327
* @return {Array.<Line>} The
optimum
split points.
/external/chromium_org/third_party/WebKit/Source/core/css/
html.css
842
meter::-webkit-meter-
optimum
-value {
Completed in 329 milliseconds