Home
last modified time | relevance | path

Searched refs:OptMap (Results 1 – 5 of 5) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/Basic/
H A DOpenCLOptions.cpp29 return OptMap.find(Ext) != OptMap.end(); in isKnown()
37 auto &OptInfo = OptMap.find(Ext)->getValue(); in isAvailableOption()
45 auto I = OptMap.find(Ext); in isEnabled()
46 return I != OptMap.end() && I->getValue().Enabled; in isEnabled()
50 auto E = OptMap.find(Ext); in isWithPragma()
51 return E != OptMap.end() && E->second.WithPragma; in isWithPragma()
56 auto I = OptMap.find(Ext); in isSupported()
57 return I != OptMap.end() && I->getValue().Supported && in isSupported()
63 auto I = OptMap.find(Ext); in isSupportedCore()
64 return I != OptMap.end() && I->getValue().Supported && in isSupportedCore()
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DOpenCLOptions.h214 OpenCLOptionInfoMap OptMap; variable
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DCommandLine.cpp2274 static void sortOpts(StringMap<Option *> &OptMap, in sortOpts() argument
2279 for (StringMap<Option *>::iterator I = OptMap.begin(), E = OptMap.end(); in sortOpts()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTWriter.cpp4172 for (const auto &I:Opts.OptMap) { in WriteOpenCLExtensions()
H A DASTReader.cpp3664 auto &OptInfo = OpenCLExtensions.OptMap[Name]; in ReadASTBlock()