Lines Matching refs:String8
50 void PropertyMap::addProperty(const String8& key, const String8& value) { in addProperty()
54 bool PropertyMap::hasProperty(const String8& key) const { in hasProperty()
58 bool PropertyMap::tryGetProperty(const String8& key, String8& outValue) const { in tryGetProperty()
68 bool PropertyMap::tryGetProperty(const String8& key, bool& outValue) const { in tryGetProperty()
78 bool PropertyMap::tryGetProperty(const String8& key, int32_t& outValue) const { in tryGetProperty()
79 String8 stringValue; in tryGetProperty()
95 bool PropertyMap::tryGetProperty(const String8& key, float& outValue) const { in tryGetProperty()
96 String8 stringValue; in tryGetProperty()
118 status_t PropertyMap::load(const String8& filename, PropertyMap** outMap) { in load()
173 String8 keyToken = mTokenizer->nextToken(WHITESPACE_OR_PROPERTY_DELIMITER); in parse()
189 String8 valueToken = mTokenizer->nextToken(WHITESPACE); in parse()