Searched refs:attribute_ (Results 1 – 3 of 3) sorted by relevance
218 return TokenToString(t) + (t == kTokenIdentifier ? ": " + attribute_ : ""); in TokenToStringId()250 attribute_.clear(); in Next()278 case 'n': attribute_ += '\n'; cursor_++; break; in Next()279 case 't': attribute_ += '\t'; cursor_++; break; in Next()280 case 'r': attribute_ += '\r'; cursor_++; break; in Next()281 case 'b': attribute_ += '\b'; cursor_++; break; in Next()282 case 'f': attribute_ += '\f'; cursor_++; break; in Next()283 case '\"': attribute_ += '\"'; cursor_++; break; in Next()284 case '\'': attribute_ += '\''; cursor_++; break; in Next()285 case '\\': attribute_ += '\\'; cursor_++; break; in Next()[all …]
36 ConfigAttribValueFmt (deUint32 attribute_, int value_) : attribute(attribute_), value(value_) {} in ConfigAttribValueFmt()43 SurfaceAttribValueFmt (deUint32 attribute_, int value_) : attribute(attribute_), value(value_) {} in SurfaceAttribValueFmt()50 ContextAttribValueFmt (deUint32 attribute_, int value_) : attribute(attribute_), value(value_) {} in ContextAttribValueFmt()
414 std::string attribute_; member