/freebsd/usr.sbin/bsdconfig/share/packages/ |
H A D | index.awk | 56 categories[pkg_categories[pkg_category]]++ 61 n = _asorti(categories, categories_sorted) 66 npkgs = categories[cat] 78 npkgs = categories[cat]
|
H A D | categories.subr | 32 f_dprintf "%s: loading includes..." packages/categories.subr 102 # Load descriptions for package categories. Note that we don't internationalize 204 packages/categories.subr $NCATEGORIES 206 f_dprintf "%s: Successfully loaded." packages/categories.subr
|
H A D | Makefile | 2 FILES= categories.subr index.awk index.subr musthavepkg.subr packages.subr
|
H A D | index.subr | 221 # 1. create a list ($CATEGORY_MENU_LIST) of categories with package counts 223 # 3. extract associative categories for each package into $_categories_$varpkg 225 # 5. extract a [sorted] list of categories into $PACKAGE_CATEGORIES 230 # NOTE: We only show categories for which there are at least one package.
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | Log.cpp | 51 for (const auto &category : entry.second.m_channel.categories) in ForEachCategory() 66 llvm::ArrayRef<const char *> categories) { in GetFlags() argument 69 for (const char *category : categories) { in GetFlags() 78 auto cat = llvm::find_if(entry.second.m_channel.categories, in GetFlags() 82 if (cat != entry.second.m_channel.categories.end()) { in GetFlags() 226 llvm::ArrayRef<const char *> categories, in EnableLogChannel() argument 233 MaskType flags = categories.empty() in EnableLogChannel() 235 : GetFlags(error_stream, *iter, categories); in EnableLogChannel() 241 llvm::ArrayRef<const char *> categories, in DisableLogChannel() argument 248 MaskType flags = categories.empty() in DisableLogChannel() [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | Log.h | 168 const llvm::ArrayRef<Category> categories; 172 constexpr Channel(llvm::ArrayRef<Log::Category> categories, in Channel() argument 174 : log_ptr(nullptr), categories(categories), in Channel() 200 llvm::ArrayRef<const char *> categories, 204 llvm::ArrayRef<const char *> categories, 318 llvm::ArrayRef<const char *> categories);
|
/freebsd/contrib/llvm-project/lldb/tools/lldb-server/ |
H A D | LLGSOptions.td | 34 …t of entries. Each entry starts with a channel followed by a space-separated list of categories.">, 35 MetaVarName<"<channel1 categories...:channel2 categories...>">,
|
/freebsd/contrib/llvm-project/lldb/docs/man/ |
H A D | lldb-server.rst | 83 .. option:: --log-channels <channel1 categories...:channel2 categories...> 86 a channel followed by a space-separated list of categories. 136 .. option:: --log-channels <channel1 categories...:channel2 categories...> 139 a channel followed by a space-separated list of categories.
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | IdenticalExprChecker.cpp | 73 categories::LogicError, in reportIdenticalExpr() 121 categories::LogicError, in VisitIfStmt() 144 categories::LogicError, in VisitIfStmt() 175 categories::LogicError, in VisitIfStmt() 266 categories::LogicError, Message, ELoc); in checkComparisonOp() 288 categories::LogicError, in VisitConditionalOperator()
|
H A D | CastToStructChecker.cpp | 67 categories::LogicError, "Casting a non-structure type to a structure " in VisitCastExpr() 98 categories::LogicError, in VisitCastExpr()
|
H A D | UnixAPIChecker.cpp | 47 const BugType BT_open{this, "Improper use of 'open'", categories::UnixAPI}; 49 categories::UnixAPI}; 51 categories::UnixAPI}; 52 const BugType BT_ArgumentNull{this, "NULL pointer", categories::UnixAPI}; 90 categories::UnixAPI};
|
H A D | DereferenceChecker.cpp | 36 BugType BT_Null{this, "Dereference of null pointer", categories::LogicError}; 38 categories::LogicError}; 40 categories::LogicError};
|
H A D | PutenvStackArrayChecker.cpp | 32 categories::SecurityError};
|
H A D | UndefinedNewArraySizeChecker.cpp | 29 categories::LogicError};
|
H A D | CheckPlacementNew.cpp | 58 categories::MemoryError}; 60 categories::MemoryError};
|
/freebsd/lib/libc/locale/ |
H A D | setlocale.c | 56 static const char categories[_LC_LAST][12] = { variable 285 env = getenv(categories[0]); in __get_locale_env() 289 env = getenv(categories[category]); in __get_locale_env()
|
/freebsd/contrib/ntp/libntp/lib/isc/ |
H A D | log.c | 149 isc_logcategory_t * categories; member 280 lctx->categories = NULL; in isc_log_create() 490 lctx->categories = NULL; in isc_log_destroy() 569 isc_log_registercategories(isc_log_t *lctx, isc_logcategory_t categories[]) { in isc_log_registercategories() argument 573 REQUIRE(categories != NULL && categories[0].name != NULL); in isc_log_registercategories() 583 if (lctx->categories == NULL) in isc_log_registercategories() 584 lctx->categories = categories; in isc_log_registercategories() 591 for (catp = lctx->categories; catp->name != NULL; ) in isc_log_registercategories() 601 catp->name = (void *)categories; in isc_log_registercategories() 608 for (catp = categories; catp->name != NULL; catp++) in isc_log_registercategories() [all …]
|
/freebsd/contrib/netbsd-tests/lib/libc/regex/ |
H A D | debug.c | 84 if (g->categories[c] == i) in regprint() 91 if (g->categories[c] == i) in regprint() 101 if (c <= CHAR_MAX && g->categories[c] == i) { in regprint()
|
/freebsd/sys/contrib/device-tree/Bindings/powerpc/fsl/ |
H A D | cpus.txt | 18 Power CPUs. The EREF defines some architecture categories not defined 19 by the Power ISA. For these EREF-specific categories, the existence of
|
/freebsd/usr.bin/localedef/ |
H A D | parser.y | 157 localedef : setting_list categories 158 | categories 220 categories : categories category
|
H A D | scanner.c | 204 static int categories[] = { variable 624 for (j = 0; categories[j]; j++) { in consume_token() 625 if (categories[j] != last_kw) in consume_token()
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | type_traits.cppm |
|
/freebsd/contrib/llvm-project/lld/MachO/ |
H A D | ObjC.cpp | 449 mergeCategoriesIntoSingleCategory(std::vector<InfoInputCategory> &categories); 500 std::vector<InfoInputCategory> &categories); 1116 std::vector<InfoInputCategory> &categories) { in mergeCategoriesIntoSingleCategory() argument 1117 assert(categories.size() > 1 && "Expected at least 2 categories"); in mergeCategoriesIntoSingleCategory() 1121 for (auto &catInfo : categories) in mergeCategoriesIntoSingleCategory() 1130 for (auto &catInfo : categories) in mergeCategoriesIntoSingleCategory() 1400 const Defined *baseClass, std::vector<InfoInputCategory> &categories) { in mergeCategoriesIntoBaseClass() argument 1401 assert(categories.size() >= 1 && "Expected at least one category to merge"); in mergeCategoriesIntoBaseClass() 1408 for (auto &catInfo : categories) { in mergeCategoriesIntoBaseClass() 1475 for (auto &catInfo : categories) in mergeCategoriesIntoBaseClass()
|
/freebsd/release/packages/ |
H A D | template.ucl | 8 categories = [ base ]
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBDebugger.cpp | 1656 static llvm::ArrayRef<const char *> GetCategoryArray(const char **categories) { in GetCategoryArray() argument 1657 if (categories == nullptr) in GetCategoryArray() 1660 while (categories[len] != nullptr) in GetCategoryArray() 1662 return llvm::ArrayRef(categories, len); in GetCategoryArray() 1665 bool SBDebugger::EnableLog(const char *channel, const char **categories) { in EnableLog() argument 1666 LLDB_INSTRUMENT_VA(this, channel, categories); in EnableLog() 1673 return m_opaque_sp->EnableLog(channel, GetCategoryArray(categories), "", in EnableLog()
|