Lines Matching defs:ArgValue
529 // Parse input option \p ArgValue and load section data. This function
531 // ArgValue, loads data from the file, and stores section name and data
533 static Error loadNewSectionData(StringRef ArgValue, StringRef OptionName,
535 if (!ArgValue.contains('='))
539 std::pair<StringRef, StringRef> SecPair = ArgValue.split("=");
555 static Expected<int64_t> parseChangeSectionLMA(StringRef ArgValue,
558 if (ArgValue.starts_with("*+")) {
559 StringValue = ArgValue.slice(2, StringRef::npos);
560 } else if (ArgValue.starts_with("*-")) {
561 StringValue = ArgValue.slice(1, StringRef::npos);
562 } else if (ArgValue.contains("=")) {
567 } else if (ArgValue.contains("+") || ArgValue.contains("-")) {
582 ArgValue.slice(0, 2) + " is " + StringValue +