Home | History | Annotate | Download | only in aapt

Lines Matching refs:entry

41     struct entry {
42 entry() : offset(0) { }
43 entry(const String16& _value) : value(_value), offset(0), hasStyles(false) { }
44 entry(const entry& o) : value(o.value), offset(o.offset),
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; }
89 * the string already exists the existing entry for it will be used;
90 * otherwise, or if the value doesn't already exist, a new entry is
93 * Returns the index in the entry array of the new string entry.
151 Vector<entry> mEntries;
174 // The entry types are trivially movable because all fields they contain, including
177 ANDROID_TRIVIAL_MOVE_TRAIT(StringPool::entry);