Home | History | Annotate | Download | only in aapt2

Lines Matching refs:Value

36  * A resource value. This is an all-encompassing representation
38 * type specific operations is to check the Value's type() and
42 struct Value {
43 virtual ~Value() = default;
46 * Whether this value is weak and can be overridden without
58 * Returns the source where this value was defined.
93 * Clone the value.
95 virtual Value* clone(StringPool* newPool) const = 0;
98 * Human readable printout of this value.
112 struct BaseValue : public Value {
117 * A resource item with a single value. This maps to android::ResTable_entry.
119 struct Item : public Value {
167 * An ID resource. Has no real value, just a place holder.
182 StringPool::Ref value;
192 StringPool::Ref value;
210 StringPool::StyleRef value;
247 android::Res_value value;
261 uint32_t value;
280 std::unique_ptr<Item> value;
329 * Stream operator for printing Value objects.
331 inline ::std::ostream& operator<<(::std::ostream& out, const Value& value) {
332 value.print(&out);
338 out << s.symbol.name.value().entry;
342 return out << "=" << s.value;