Home | History | Annotate | Download | only in aapt

Lines Matching defs:Symbol

27  * A resource symbol, not attached to any configuration or context.
29 struct Symbol {
30 inline Symbol();
31 inline Symbol(const android::String16& p, const android::String16& t, const android::String16& n, uint32_t i);
33 inline bool operator<(const Symbol& rhs) const;
43 * A specific defintion of a symbol, defined with a configuration and a definition site.
47 inline SymbolDefinition(const Symbol& s, const ConfigDescription& c, const SourcePos& src);
50 Symbol symbol;
59 Symbol::Symbol() {
62 Symbol::Symbol(const android::String16& p, const android::String16& t, const android::String16& n, uint32_t i)
69 android::String8 Symbol::toString() const {
77 bool Symbol::operator<(const Symbol& rhs) const {
84 SymbolDefinition::SymbolDefinition(const Symbol& s, const ConfigDescription& c, const SourcePos& src)
85 : symbol(s)
91 return (symbol < rhs.symbol) || (config < rhs.config) || (source < rhs.source);