Lines Matching refs:o
44 entry(const entry& o) : value(o.value), offset(o.offset), in entry()
45 hasStyles(o.hasStyles), indices(o.indices), in entry()
46 configTypeName(o.configTypeName), configs(o.configs) { } in entry()
57 int compare(const entry& o) const;
59 inline bool operator<(const entry& o) const { return compare(o) < 0; }
60 inline bool operator<=(const entry& o) const { return compare(o) <= 0; }
61 inline bool operator==(const entry& o) const { return compare(o) == 0; }
62 inline bool operator!=(const entry& o) const { return compare(o) != 0; }
63 inline bool operator>=(const entry& o) const { return compare(o) >= 0; }
64 inline bool operator>(const entry& o) const { return compare(o) > 0; }
75 entry_style(const entry_style& o) : offset(o.offset), spans(o.spans) { } in entry_style()