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

  /external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
AnimatableLengthSize.cpp 38 const AnimatableLengthSize* lengthSize = toAnimatableLengthSize(value);
40 AnimatableValue::interpolate(this->width(), lengthSize->width(), fraction),
41 AnimatableValue::interpolate(this->height(), lengthSize->height(), fraction));
46 const AnimatableLengthSize* lengthSize = toAnimatableLengthSize(value);
47 return width()->equals(lengthSize->width()) && height()->equals(lengthSize->height());
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
ItemLocationBox.java 62 public int lengthSize = 8;
86 IsoTypeWriter.writeUInt8(byteBuffer, ((offsetSize << 4) | lengthSize));
103 lengthSize = tmp & 0xf;
126 return lengthSize;
129 public void setLengthSize(int lengthSize) {
130 this.lengthSize = lengthSize;
309 extentLength = IsoTypeReaderVariable.read(in, lengthSize);
317 IsoTypeWriterVariable.write(extentLength, os, lengthSize);
321 return (indexSize > 0 ? indexSize : 0) + offsetSize + lengthSize;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
LengthFunctions.cpp 28 #include "platform/LengthSize.h"
127 FloatSize floatSizeForLengthSize(const LengthSize& lengthSize, const FloatSize& boxSize)
129 return FloatSize(floatValueForLength(lengthSize.width(), boxSize.width()), floatValueForLength(lengthSize.height(), boxSize.height()));
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
BasicShapes.cpp 219 static FloatSize floatSizeForLengthSize(const LengthSize& lengthSize, const FloatRect& boundingBox)
221 return FloatSize(floatValueForLength(lengthSize.width(), boundingBox.width()),
222 floatValueForLength(lengthSize.height(), boundingBox.height()));
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSPrimitiveValue.cpp 298 CSSPrimitiveValue::CSSPrimitiveValue(const LengthSize& lengthSize, const RenderStyle& style)
301 init(lengthSize, style);
384 void CSSPrimitiveValue::init(const LengthSize& lengthSize, const RenderStyle& style)
388 m_value.pair = Pair::create(create(lengthSize.width(), style.effectiveZoom()), create(lengthSize.height(), style.effectiveZoom()), Pair::KeepIdenticalValues).leakRef();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimatableValueFactory.cpp 148 inline static PassRefPtrWillBeRawPtr<AnimatableValue> createFromLengthSize(const LengthSize& lengthSize, const RenderStyle& style)
151 createFromLength(lengthSize.width(), style),
152 createFromLength(lengthSize.height(), style));
  /frameworks/av/cmds/stagefright/
sf2.cpp 338 size_t lengthSize = 1 + (ptr[4] & 3);
  /frameworks/av/media/libstagefright/
Utils.cpp 191 size_t lengthSize = 1 + (ptr[4] & 3);
OMXCodec.cpp 454 size_t lengthSize = 1 + (ptr[4] & 3);
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/
libGLESv2.cpp     [all...]

Completed in 132 milliseconds