HomeSort by relevance Sort by last modified time
    Searched refs:Percent (Results 1 - 25 of 28) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/
Length.h 37 enum LengthType { Auto, Relative, Percent, Fixed, Intrinsic, MinIntrinsic };
85 float percent() const function in struct:WebCore::Length
87 ASSERT(type() == Percent);
123 case Percent:
137 case Percent:
139 return static_cast<int>(round(maxValue * percent() / 100.0f));
141 return static_cast<int>(static_cast<float>(maxValue * percent() / 100.0f));
153 case Percent:
154 return static_cast<float>(maxValue * percent() / 100.0f);
173 bool isPercent() const { return type() == Percent; }
    [all...]
Length.cpp 65 return Length(r, Percent);
  /external/webkit/Source/WebCore/rendering/
RenderFullScreen.cpp 60 fullscreenStyle->setWidth(Length(100.0, Percent));
61 fullscreenStyle->setHeight(Length(100.0, Percent));
AutoTableLayout.cpp 91 if (cellLogicalWidth.value() > 0 && columnLayout.logicalWidth.type() != Percent) {
106 case Percent:
233 // We substitute 0 percent by (epsilon / percentScaleFactor) percent in two places below to avoid division by zero.
243 float percent = min(static_cast<float>(m_layoutStruct[i].effectiveLogicalWidth.percent()), remainingPercent); local
244 float logicalWidth = static_cast<float>(m_layoutStruct[i].effectiveMaxLogicalWidth) * 100 / max(percent, epsilon);
246 remainingPercent -= percent;
269 // if there was no remaining percent, maxWidth is invalid.
317 case Percent
376 float percent = percentMissing * static_cast<float>(m_layoutStruct[pos].effectiveMaxLogicalWidth) \/ totalWidth; local
    [all...]
RenderImage.cpp 453 case Percent:
469 case Percent:
RenderReplaced.cpp 196 return lengthType == Fixed || lengthType == Percent;
RenderTableSection.cpp 205 case Percent:
207 (cRowLogicalHeight.isPercent() && cRowLogicalHeight.percent() < logicalHeight.percent()))
211 if (cRowLogicalHeight.type() < Percent ||
525 totalPercent += m_grid[r].logicalHeight.percent();
528 // try to satisfy percent
534 int toAdd = min(dh, static_cast<int>((totalHeight * m_grid[r].logicalHeight.percent() / 100) - rh));
540 totalPercent -= m_grid[r].logicalHeight.percent();
599 // Force percent height children to lay themselves out again.
    [all...]
RenderLayer.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/transforms/
TranslateTransformOperation.h 70 return m_x.type() == Percent || m_y.type() == Percent;
  /external/llvm/include/llvm/MC/MCParser/
MCAsmLexer.h 51 Amp, AmpAmp, Exclaim, ExclaimEqual, Percent, Hash,
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmLexer.cpp 83 case AsmToken::Percent: {
X86AsmParser.cpp 402 assert(TokPercent.is(AsmToken::Percent) && "Invalid token kind!");
404 Parser.Lex(); // Eat percent token.
503 case AsmToken::Percent: {
565 if (getLexer().is(AsmToken::Percent) || getLexer().is(AsmToken::Comma)) {
593 if (getLexer().is(AsmToken::Percent)) {
612 if (getLexer().is(AsmToken::Percent)) {
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
LayerAndroid.h 64 enum SkLengthType { Undefined, Auto, Relative, Percent, Fixed, Static, Intrinsic, MinIntrinsic };
81 case Percent:
GraphicsLayerAndroid.cpp 99 if (len.type() == WebCore::Percent) {
100 length.type = SkLength::Percent;
101 length.value = len.percent();
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
FillLayer.h 161 static Length initialFillXPosition(EFillLayerType) { return Length(0.0, Percent); }
162 static Length initialFillYPosition(EFillLayerType) { return Length(0.0, Percent); }
RenderStyle.h     [all...]
  /external/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 372 if (getLexer().isNot(AsmToken::Percent) && getLexer().isNot(AsmToken::At))
461 if (getLexer().isNot(AsmToken::Percent) && getLexer().isNot(AsmToken::At))
AsmLexer.cpp 437 case '%': return AsmToken(AsmToken::Percent, StringRef(TokStart, 1));
COFFAsmParser.cpp 437 if (getLexer().is(AsmToken::Percent)) {
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLRoot.cpp 87 baseStyle->setPaddingLeft(Length(5 * gRadicalWidth , Percent));
  /external/webkit/Source/WebCore/css/
CSSStyleSelector.cpp     [all...]
CSSPrimitiveValue.cpp 171 case Percent:
173 m_value.num = length.percent();
439 return CSS_UNKNOWN; // Cannot convert between numbers and percent.
CSSComputedStyleDeclaration.cpp 394 offset = primitiveValueCache->createValue(reflection->offset().percent(), CSSPrimitiveValue::CSS_PERCENTAGE);
452 if (radius.width().type() == Percent)
453 return primitiveValueCache->createValue(radius.width().percent(), CSSPrimitiveValue::CSS_PERCENTAGE);
456 if (radius.width().type() == Percent)
457 list->append(primitiveValueCache->createValue(radius.width().percent(), CSSPrimitiveValue::CSS_PERCENTAGE));
460 if (radius.height().type() == Percent)
461 list->append(primitiveValueCache->createValue(radius.height().percent(), CSSPrimitiveValue::CSS_PERCENTAGE));
    [all...]
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 319 case AsmToken::Percent: Out->os() << "Percent"; break;
  /external/ppp/pppd/plugins/radius/etc/
dictionary.ascend 146 ATTRIBUTE Ascend-MPP-Idle-Percent 254 integer

Completed in 555 milliseconds

1 2