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

  /external/webkit/Source/WebCore/platform/graphics/android/layers/
FixedPositioning.h 38 struct SkLength {
43 SkLength()
75 static SkLength convertLength(Length len)
77 SkLength length;
78 length.type = SkLength::Undefined;
81 length.type = SkLength::Percent;
85 length.type = SkLength::Fixed;
105 void setFixedPosition(SkLength left, // CSS left property
106 SkLength top, // CSS top property
107 SkLength right, // CSS right propert
    [all...]
DumpLayer.h 81 void writeLength(const char* label, SkLength value);
DumpLayer.cpp 56 void LayerDumper::writeLength(const char* label, SkLength value)
BaseLayerAndroid.cpp 135 SkLength left, top;
136 left = SkLength::convertLength(style->backgroundXPosition());
137 top = SkLength::convertLength(style->backgroundYPosition());
  /external/webkit/Source/WebCore/platform/graphics/android/
GraphicsLayerAndroid.cpp 251 SkLength left, top, right, bottom;
252 left = SkLength::convertLength(view->style()->left());
253 top = SkLength::convertLength(view->style()->top());
254 right = SkLength::convertLength(view->style()->right());
255 bottom = SkLength::convertLength(view->style()->bottom());
258 SkLength marginLeft, marginTop, marginRight, marginBottom;
259 marginLeft = SkLength::convertLength(view->style()->marginLeft());
260 marginTop = SkLength::convertLength(view->style()->marginTop());
261 marginRight = SkLength::convertLength(view->style()->marginRight());
262 marginBottom = SkLength::convertLength(view->style()->marginBottom())
    [all...]
  /external/webkit/Source/WebKit/android/jni/
ViewStateSerializer.cpp 197 void writeSkLength(SkWStream *stream, SkLength length)
203 SkLength readSkLength(SkStream *stream)
205 SkLength len;
206 len.type = (SkLength::SkLengthType) stream->readU32();
360 SkLength length;

Completed in 88 milliseconds