Home
last modified time | relevance | path

Searched refs:FunctionSet (Results 1 – 10 of 10) sorted by relevance

/external/llvm-project/clang-tools-extra/clang-tidy/concurrency/
DMtUnsafeCheck.cpp264 template <> struct OptionEnumMapping<concurrency::MtUnsafeCheck::FunctionSet> {
266 std::pair<concurrency::MtUnsafeCheck::FunctionSet, StringRef>>
268 static constexpr std::pair<concurrency::MtUnsafeCheck::FunctionSet, in getEnumMapping()
270 Mapping[] = {{concurrency::MtUnsafeCheck::FunctionSet::Posix, "posix"}, in getEnumMapping()
271 {concurrency::MtUnsafeCheck::FunctionSet::Glibc, "glibc"}, in getEnumMapping()
272 {concurrency::MtUnsafeCheck::FunctionSet::Any, "any"}}; in getEnumMapping()
280 hasAnyMtUnsafeNames(MtUnsafeCheck::FunctionSet libc) { in hasAnyMtUnsafeNames()
282 case MtUnsafeCheck::FunctionSet::Posix: in hasAnyMtUnsafeNames()
284 case MtUnsafeCheck::FunctionSet::Glibc: in hasAnyMtUnsafeNames()
286 case MtUnsafeCheck::FunctionSet::Any: in hasAnyMtUnsafeNames()
[all …]
DMtUnsafeCheck.h29 enum class FunctionSet { enum
36 const FunctionSet FuncSet;
/external/swiftshader/src/OpenGL/compiler/
DAnalyzeCallDepth.h59 typedef std::set<FunctionNode*> FunctionSet; typedef
60 FunctionSet globalFunctionCalls;
DAnalyzeCallDepth.cpp234 …for(FunctionSet::iterator globalCall = globalFunctionCalls.begin(); globalCall != globalFunctionCa… in analyzeCallDepth()
/external/llvm-project/clang-tools-extra/unittests/clang-doc/
DSerializeTest.cpp387 FunctionInfo FunctionSet; in TEST() local
388 FunctionSet.Name = "set"; in TEST()
389 FunctionSet.ReturnType = TypeInfo(EmptySID, "void", InfoType::IT_default); in TEST()
390 FunctionSet.Loc.emplace_back(); in TEST()
391 FunctionSet.Params.emplace_back("int", "N"); in TEST()
392 FunctionSet.Namespace.emplace_back(EmptySID, "F", InfoType::IT_record); in TEST()
393 FunctionSet.Namespace.emplace_back(EmptySID, "GlobalNamespace", in TEST()
395 FunctionSet.Access = AccessSpecifier::AS_protected; in TEST()
396 FunctionSet.IsMethod = true; in TEST()
397 ExpectedE.Bases.back().ChildFunctions.emplace_back(std::move(FunctionSet)); in TEST()
/external/google-breakpad/src/common/
Dmodule.cc63 for (FunctionSet::iterator it = functions_.begin(); in ~Module()
119 std::pair<FunctionSet::iterator,bool> ret = functions_.insert(function); in AddFunction()
215 for (FunctionSet::const_iterator func_it = functions_.begin(); in AssignSourceIds()
289 for (FunctionSet::const_iterator func_it = functions_.begin(); in Write()
Dmodule.h340 typedef set<Function *, FunctionCompare> FunctionSet; typedef
349 FunctionSet functions_; // This module's functions.
/external/llvm-project/llvm/lib/Transforms/IPO/
DCalledValuePropagation.cpp60 enum CVPLatticeStateTy { Undefined, FunctionSet, Overdefined, Untracked }; enumerator
73 : LatticeState(FunctionSet), Functions(std::move(Functions)) { in CVPLatticeVal()
84 bool isFunctionSet() const { return LatticeState == FunctionSet; } in isFunctionSet()
231 return CVPLatticeVal(CVPLatticeVal::FunctionSet); in computeConstant()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DCalledValuePropagation.cpp61 enum CVPLatticeStateTy { Undefined, FunctionSet, Overdefined, Untracked }; enumerator
74 : LatticeState(FunctionSet), Functions(std::move(Functions)) { in CVPLatticeVal()
86 bool isFunctionSet() const { return LatticeState == FunctionSet; } in isFunctionSet()
234 return CVPLatticeVal(CVPLatticeVal::FunctionSet); in computeConstant()
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/
Dconcurrency-mt-unsafe.rst9 The set of functions to check is specified with the `FunctionSet` option.
35 .. option:: FunctionSet