Lines Matching refs:ArgValue
533 static Error loadNewSectionData(StringRef ArgValue, StringRef OptionName, in loadNewSectionData() argument
535 if (!ArgValue.contains('=')) in loadNewSectionData()
539 std::pair<StringRef, StringRef> SecPair = ArgValue.split("="); in loadNewSectionData()
555 static Expected<int64_t> parseChangeSectionLMA(StringRef ArgValue, in parseChangeSectionLMA() argument
558 if (ArgValue.starts_with("*+")) { in parseChangeSectionLMA()
559 StringValue = ArgValue.slice(2, StringRef::npos); in parseChangeSectionLMA()
560 } else if (ArgValue.starts_with("*-")) { in parseChangeSectionLMA()
561 StringValue = ArgValue.slice(1, StringRef::npos); in parseChangeSectionLMA()
562 } else if (ArgValue.contains("=")) { in parseChangeSectionLMA()
567 } else if (ArgValue.contains("+") || ArgValue.contains("-")) { in parseChangeSectionLMA()
582 ArgValue.slice(0, 2) + " is " + StringValue + in parseChangeSectionLMA()