Lines Matching refs:getValue
22 auto &OptInfo = OptMap.find(Ext)->getValue(); in isAvailableOption()
31 return I != OptMap.end() && I->getValue().Enabled; in isEnabled()
42 return I != OptMap.end() && I->getValue().Supported && in isSupported()
43 I->getValue().isAvailableIn(LO); in isSupported()
49 return I != OptMap.end() && I->getValue().Supported && in isSupportedCore()
50 I->getValue().isCoreIn(LO); in isSupportedCore()
56 return I != OptMap.end() && I->getValue().Supported && in isSupportedOptionalCore()
57 I->getValue().isOptionalCoreIn(LO); in isSupportedOptionalCore()
68 return I != OptMap.end() && I->getValue().Supported && in isSupportedExtension()
69 I->getValue().isAvailableIn(LO) && in isSupportedExtension()
97 if (F.getValue() && isKnown(Name) && OptMap[Name].isAvailableIn(Opts)) in addSupport()
104 Opt.getValue().Enabled = false; in disableAll()