Lines Matching refs:FlagValue
194 static Expected<SectionRename> parseRenameSectionValue(StringRef FlagValue) { in parseRenameSectionValue() argument
195 if (!FlagValue.contains('=')) in parseRenameSectionValue()
200 auto Old2New = FlagValue.split('='); in parseRenameSectionValue()
221 parseSetSectionAttribute(StringRef Option, StringRef FlagValue) { in parseSetSectionAttribute() argument
222 if (!FlagValue.contains('=')) in parseSetSectionAttribute()
225 auto Split = StringRef(FlagValue).split('='); in parseSetSectionAttribute()
239 parseSetSectionFlagValue(StringRef FlagValue) { in parseSetSectionFlagValue() argument
240 if (!StringRef(FlagValue).contains('=')) in parseSetSectionFlagValue()
245 auto Section2Flags = StringRef(FlagValue).split('='); in parseSetSectionFlagValue()
440 static Expected<NewSymbolInfo> parseNewSymbolInfo(StringRef FlagValue) { in parseNewSymbolInfo() argument
454 std::tie(SI.SymbolName, Value) = FlagValue.split('='); in parseNewSymbolInfo()