• Home
  • Raw
  • Download

Lines Matching refs:text

274 void PGOMethodInfo::ProcessToText(std::string &text) const  in ProcessToText()
276 text += std::to_string(GetMethodId().GetOffset()); in ProcessToText()
277 text += ELEMENT_SEPARATOR; in ProcessToText()
278 text += std::to_string(GetCount()); in ProcessToText()
279 text += ELEMENT_SEPARATOR; in ProcessToText()
280 text += GetSampleModeToString(); in ProcessToText()
281 text += ELEMENT_SEPARATOR; in ProcessToText()
282 text += GetMethodName(); in ProcessToText()
418 void PGOMethodTypeSet::ProcessToText(std::string &text) const in ProcessToText()
426 text += ARRAY_START + SPACE; in ProcessToText()
429 text += TYPE_SEPARATOR + SPACE; in ProcessToText()
431 text += std::to_string(typeInfoIter.GetOffset()); in ProcessToText()
432 text += BLOCK_START; in ProcessToText()
433 text += typeInfoIter.GetType().GetTypeString(); in ProcessToText()
440 text += ARRAY_START + SPACE; in ProcessToText()
443 text += TYPE_SEPARATOR + SPACE; in ProcessToText()
445 rwScalarOpTypeInfoIter.ProcessToText(text); in ProcessToText()
449 text += ARRAY_START + SPACE; in ProcessToText()
452 text += TYPE_SEPARATOR + SPACE; in ProcessToText()
454 defTypeInfoIter.ProcessToText(text); in ProcessToText()
457 text += (SPACE + ARRAY_END); in ProcessToText()
491 std::string text; in GetTypeString() local
492 text += desc.GetClassType().GetTypeString(); in GetTypeString()
494 text += TYPE_SEPARATOR + SPACE; in GetTypeString()
495 text += desc.GetSuperClassType().GetTypeString(); in GetTypeString()
498 text += TYPE_SEPARATOR + SPACE; in GetTypeString()
499 text += Elements::GetString(desc.GetElementsKind()); in GetTypeString()
501 text += BLOCK_AND_ARRAY_START; in GetTypeString()
505 text += TYPE_SEPARATOR + SPACE; in GetTypeString()
507 text += ARRAY_START; in GetTypeString()
510 text += layoutDesc.first; in GetTypeString()
511 text += BLOCK_START; in GetTypeString()
512 text += std::to_string(layoutDesc.second.GetValue()); in GetTypeString()
515 text += ARRAY_END; in GetTypeString()
520 text += TYPE_SEPARATOR + SPACE; in GetTypeString()
523 text += TYPE_SEPARATOR + SPACE; in GetTypeString()
525 text += ARRAY_START; in GetTypeString()
528 text += layoutDesc.first; in GetTypeString()
529 text += BLOCK_START; in GetTypeString()
530 text += std::to_string(layoutDesc.second.GetValue()); in GetTypeString()
533 text += ARRAY_END; in GetTypeString()
538 text += TYPE_SEPARATOR + SPACE; in GetTypeString()
541 text += TYPE_SEPARATOR + SPACE; in GetTypeString()
543 text += ARRAY_START; in GetTypeString()
546 text += layoutDesc.first; in GetTypeString()
547 text += BLOCK_START; in GetTypeString()
548 text += std::to_string(layoutDesc.second.GetValue()); in GetTypeString()
551 text += ARRAY_END; in GetTypeString()
553 text += (SPACE + ARRAY_END); in GetTypeString()
554 return text; in GetTypeString()
589 void PGOMethodTypeSet::RWScalarOpTypeInfo::ProcessToText(std::string &text) const in ProcessToText()
591 text += std::to_string(GetOffset()); in ProcessToText()
592 text += BLOCK_START; in ProcessToText()
593 text += ARRAY_START + SPACE; in ProcessToText()
597 text += TYPE_SEPARATOR + SPACE; in ProcessToText()
600 text += type_.GetObjectInfo(i).GetInfoString(); in ProcessToText()
602 text += (SPACE + ARRAY_END); in ProcessToText()
605 void PGOMethodTypeSet::ObjDefOpTypeInfo::ProcessToText(std::string &text) const in ProcessToText()
607 text += std::to_string(GetOffset()); in ProcessToText()
608 text += BLOCK_START; in ProcessToText()
609 text += ARRAY_START + SPACE; in ProcessToText()
610 text += GetType().GetTypeString(); in ProcessToText()
611 text += TYPE_SEPARATOR; in ProcessToText()
612 text += GetSuperType().GetTypeString(); in ProcessToText()
613 text += (SPACE + ARRAY_END); in ProcessToText()