Lines Matching defs:mp
104 MetaSequenceable* mp = metaComponent_->sequenceables_[mn->sequenceableIndexes_[i]];
105 sb.Append(prefix + tab + tab).AppendFormat("{ \"name\" : \"%s\" }", mp->name_);
144 void MetadataDumper::DumpMetaSequenceable(StringBuilder& sb, MetaSequenceable* mp, const String& prefix)
147 sb.Append(prefix + tab).AppendFormat("\"name_\" : \"%s\",\n", mp->name_);
148 sb.Append(prefix + tab).AppendFormat("\"namespace_\" : \"%s\"\n", mp->namespace_);
205 void MetadataDumper::DumpMetaParameter(StringBuilder& sb, MetaParameter* mp, const String& prefix)
208 sb.Append(prefix + tab).AppendFormat("\"name_\" : \"%s\",\n", mp->name_);
211 if ((mp->attributes_ & ATTR_IN) == ATTR_IN) {
215 if ((mp->attributes_ & ATTR_OUT) == ATTR_OUT) {
219 MetaType* type = metaComponent_->types_[mp->typeIndex_];
249 MetaSequenceable* mp = metaComponent_->sequenceables_[mt->index_];
250 return mp->name_;