Searched refs:Description (Results 1 - 25 of 93) sorted by relevance

1234

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_profiling_flags.cpp26 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
33 #define XRAY_FLAG(Type, Name, DefaultValue, Description) \
34 RegisterFlag(P, #Name, Description, &F->Name);
H A Dxray_basic_flags.cpp28 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
35 #define XRAY_FLAG(Type, Name, DefaultValue, Description) \
36 RegisterFlag(P, #Name, Description, &F->Name);
H A Dxray_fdr_flags.cpp27 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
33 #define XRAY_FLAG(Type, Name, DefaultValue, Description) \
34 RegisterFlag(P, #Name, Description, &F->Name);
H A Dxray_flags.cpp27 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
33 #define XRAY_FLAG(Type, Name, DefaultValue, Description) \
34 RegisterFlag(P, #Name, Description, &F->Name);
H A Dxray_basic_flags.h23 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Type Name;
H A Dxray_fdr_flags.h23 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Type Name;
H A Dxray_flags.h23 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Type Name;
H A Dxray_profiling_flags.h23 #define XRAY_FLAG(Type, Name, DefaultValue, Description) Type Name;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DLangOptions.cpp18 #define LANGOPT(Name, Bits, Default, Description) Name = Default;
19 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description) set##Name(Default);
24 #define LANGOPT(Name, Bits, Default, Description)
25 #define BENIGN_LANGOPT(Name, Bits, Default, Description) Name = Default;
26 #define BENIGN_ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/
H A DCodeRegion.cpp32 void CodeRegions::beginRegion(StringRef Description, SMLoc Loc) { argument
38 ActiveRegions[Description] = 0;
39 Regions[0] = std::make_unique<CodeRegion>(Description, Loc);
43 auto It = ActiveRegions.find(Description);
46 if (Description.empty()) {
58 "region " + Description + " was previously defined here");
64 ActiveRegions[Description] = Regions.size();
65 Regions.emplace_back(std::make_unique<CodeRegion>(Description, Loc));
69 void CodeRegions::endRegion(StringRef Description, SMLoc Loc) { argument
70 if (Description
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_flags.h18 #define HWASAN_FLAG(Type, Name, DefaultValue, Description) Type Name;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_flags.h18 #define MSAN_FLAG(Type, Name, DefaultValue, Description) Type Name;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_flags.h19 #define SCUDO_FLAG(Type, Name, DefaultValue, Description) Type Name;
H A Dscudo_flags.cpp25 #define SCUDO_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
31 #define SCUDO_FLAG(Type, Name, DefaultValue, Description) \
32 RegisterFlag(parser, #Name, Description, &f->Name);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dflags.h17 #define SCUDO_FLAG(Type, Name, DefaultValue, Description) Type Name;
22 #define GWP_ASAN_OPTION(Type, Name, DefaultValue, Description) \
H A Dflags.cpp22 #define SCUDO_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
27 #define GWP_ASAN_OPTION(Type, Name, DefaultValue, Description) \
35 #define SCUDO_FLAG(Type, Name, DefaultValue, Description) \
36 Parser->registerFlag(#Name, Description, FlagType::FT_##Type, \
42 #define GWP_ASAN_OPTION(Type, Name, DefaultValue, Description) \
43 Parser->registerFlag("GWP_ASAN_" #Name, Description, FlagType::FT_##Type, \
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsancov_flags.cpp28 #define SANCOV_FLAG(Type, Name, DefaultValue, Description) Name = DefaultValue;
34 #define SANCOV_FLAG(Type, Name, DefaultValue, Description) \
35 RegisterFlag(parser, #Name, Description, &f->Name);
H A Dsancov_flags.h21 #define SANCOV_FLAG(Type, Name, DefaultValue, Description) Type Name;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_flags.h32 #define ASAN_FLAG(Type, Name, DefaultValue, Description) Type Name;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_flags.h22 #define TSAN_FLAG(Type, Name, DefaultValue, Description) Type Name;
/freebsd-11-stable/sys/contrib/dev/acpica/common/
H A Dahuuids.c227 for (Info = Gbl_AcpiUuids; Info->Description; Info++)
240 return (Info->Description);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/
H A Doptions.h20 // ================================ Description ================================
38 // ================================ Description ================================
58 // ================================ Description ================================
81 #define GWP_ASAN_OPTION(Type, Name, DefaultValue, Description) \
87 #define GWP_ASAN_OPTION(Type, Name, DefaultValue, Description) \
/freebsd-11-stable/sys/contrib/dev/acpica/include/
H A Dacapps.h199 #define ACPI_USAGE_TEXT(Description) \
200 printf (Description);
202 #define ACPI_OPTION(Name, Description) \
203 printf (" %-20s%s\n", Name, Description);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_flags.h24 #define UBSAN_FLAG(Type, Name, DefaultValue, Description) Type Name;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugType.h1 //===--- BugType.h - Bug Information Description ---------------*- C++ -*-===//
32 const std::string Description; member in class:clang::ento::BugType
42 : CheckerName(CheckerName), Description(Name), Category(Cat),
46 : CheckerName(Checker->getCheckerName()), Description(Name),
50 StringRef getDescription() const { return Description; }

Completed in 123 milliseconds

1234