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

  /external/chromium_org/ui/gfx/
insets_f.cc 11 template class InsetsBase<InsetsF, float>;
13 InsetsF::InsetsF() : InsetsBase<InsetsF, float>(0, 0, 0, 0) {}
15 InsetsF::InsetsF(float top, float left, float bottom, float right)
16 : InsetsBase<InsetsF, float>(top, left, bottom, right) {}
18 InsetsF::~InsetsF() {}
20 std::string InsetsF::ToString() const
    [all...]
insets_f.h 17 class UI_EXPORT InsetsF : public InsetsBase<InsetsF, float> {
19 InsetsF();
20 InsetsF(float top, float left, float bottom, float right);
21 ~InsetsF();
28 extern template class InsetsBase<InsetsF, float>;

Completed in 307 milliseconds