/openbsd/gnu/usr.bin/perl/t/ |
H A D | loc_tools.pl | 157 my $categories = shift; 200 if (defined $categories) { 201 $categories = [ $categories ] unless ref $categories; 202 push @category_list, $categories->@*; 488 my @categories = (ref $input_categories) 493 if (! locales_enabled(\@categories)) { 500 for my $category (@categories) { 546 _trylocale("ISO8859-$_", \@categories, \@Locale, 548 _trylocale("iso8859$_", \@categories, \@Locale, 550 _trylocale("iso8859-$_", \@categories, \@Locale, [all …]
|
/openbsd/usr.bin/locale/ |
H A D | locale.c | 31 } categories[] = { variable 78 for (i = 0; categories[i].name != NULL; i++) { in show_current_locale() 79 if (lc_all == NULL && getenv(categories[i].name)) in show_current_locale() 80 put_assignment(categories[i].name, in show_current_locale() 81 getenv(categories[i].name), 0); in show_current_locale() 83 put_assignment(categories[i].name, in show_current_locale() 84 setlocale(categories[i].category, NULL), 1); in show_current_locale()
|
/openbsd/gnu/llvm/lldb/packages/Python/lldbsuite/test/ |
H A D | lldbinline.py | 97 categories = {} 101 if t in list(categories.keys()): 102 categories[t].append(f) 104 categories[t] = [f] 107 for t in list(categories.keys()): 108 line = t + " := " + " ".join(categories[t]) 111 if ('OBJCXX_SOURCES' in list(categories.keys())) or \ 112 ('OBJC_SOURCES' in list(categories.keys())): 116 if ('CXX_SOURCES' in list(categories.keys())):
|
H A D | test_categories.py | 77 def validate(categories, exact_match): argument 85 for category in categories:
|
H A D | test_result.py | 127 categories = set() 134 categories.update(categories_str.split(',')) 137 return list(categories) 146 test_categories.extend(test_method.categories)
|
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/objc.dg/special/ |
H A D | unclaimed-category-1.m | 7 /* Test loading unclaimed categories - categories of a class defined 12 the categories. unclaimed-category-1a.m contains only the 13 categories of the class, but not the class itself. We want to 15 and the categories from another module (file). */
|
H A D | unclaimed-category-1a.m | 5 /* Test loading unclaimed categories - categories of a class defined
|
/openbsd/gnu/usr.bin/perl/lib/ |
H A D | locale.pm | 75 my @categories = ( qw(:ctype :collate :messages 80 if (! grep { $arg eq $_ } @categories, ":characters") { 94 @categories; 100 push @_, grep { $_ ne $arg } @categories;
|
/openbsd/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
H A D | BugType.h | 73 : BugType(checker, name, categories::LogicError), desc(description) {} in BuiltinBug() 77 : BugType(checker, name, categories::LogicError), desc(description) {} in BuiltinBug() 80 : BugType(checker, name, categories::LogicError), desc(name) {} in BuiltinBug() 83 : BugType(checker, name, categories::LogicError), desc(name) {} in BuiltinBug()
|
H A D | CommonBugCategories.h | 15 namespace categories {
|
/openbsd/gnu/llvm/lldb/source/Utility/ |
H A D | Log.cpp | 50 for (const auto &category : entry.second.m_channel.categories) in ForEachCategory() 65 llvm::ArrayRef<const char *> categories) { in GetFlags() argument 68 for (const char *category : categories) { in GetFlags() 77 auto cat = llvm::find_if(entry.second.m_channel.categories, in GetFlags() 81 if (cat != entry.second.m_channel.categories.end()) { in GetFlags() 213 llvm::ArrayRef<const char *> categories, in EnableLogChannel() argument 220 MaskType flags = categories.empty() in EnableLogChannel() 222 : GetFlags(error_stream, *iter, categories); in EnableLogChannel() 228 llvm::ArrayRef<const char *> categories, in DisableLogChannel() argument 235 MaskType flags = categories.empty() in DisableLogChannel() [all …]
|
/openbsd/usr.bin/dig/lib/isc/ |
H A D | log.c | 122 isc_logcategory_t * categories; member 243 lctx->categories = NULL; in isc_log_create() 384 lctx->categories = NULL; in isc_log_destroy() 436 isc_log_registercategories(isc_log_t *lctx, isc_logcategory_t categories[]) { in isc_log_registercategories() argument 439 REQUIRE(categories != NULL && categories[0].name != NULL); in isc_log_registercategories() 449 if (lctx->categories == NULL) in isc_log_registercategories() 450 lctx->categories = categories; in isc_log_registercategories() 457 for (catp = lctx->categories; catp->name != NULL; ) in isc_log_registercategories() 467 catp->name = (void *)categories; in isc_log_registercategories() 474 for (catp = categories; catp->name != NULL; catp++) in isc_log_registercategories()
|
/openbsd/gnu/llvm/lldb/include/lldb/Utility/ |
H A D | Log.h | 151 const llvm::ArrayRef<Category> categories; 155 constexpr Channel(llvm::ArrayRef<Log::Category> categories, in Channel() argument 157 : log_ptr(nullptr), categories(categories), in Channel() 183 llvm::ArrayRef<const char *> categories, 187 llvm::ArrayRef<const char *> categories, 296 llvm::ArrayRef<const char *> categories);
|
/openbsd/gnu/usr.bin/perl/lib/warnings/ |
H A D | register.pm | 19 my @categories = @_; 24 warnings::register_categories($package . "::$_") for @categories;
|
/openbsd/gnu/usr.bin/perl/ext/Pod-Functions/t/ |
H A D | Functions.t | 32 my @categories = qw( 38 is_deeply( \@Type_Order, \@categories, 43 is_deeply( \@cat_keys, \@categories,
|
/openbsd/gnu/usr.bin/perl/t/porting/ |
H A D | diag.t | 433 my $categories; 436 $categories = 472 check_message(standardize($name),$codefn,$severity,$categories); 477 my($name,$codefn,$severity,$categories,$partial) = @_; 542 is($entries{$key}{category}, $categories, 543 ($categories ? "categories are [$categories]" : "no category") 552 check_message($_,$codefn,$severity,$categories,1) or $ok = 0, last
|
/openbsd/gnu/llvm/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...>">,
|
/openbsd/gnu/llvm/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.
|
/openbsd/gnu/llvm/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()
|
/openbsd/gnu/usr.bin/perl/cpan/Encode/Unicode/ |
H A D | Unicode.xs | 331 U32 categories = SvUVx(*hv_fetch(hv, "warn_categories", 15, 0)); variable 335 if (encode_ckWARN_packed(check, categories)) 336 warner(categories, "%" SVf, SVfARG(message)); 446 U32 categories = SvUVx(*hv_fetch(hv, "warn_categories", 15, 0)); variable 449 if (encode_ckWARN_packed(check, categories)) 450 warner(categories, "%" SVf, SVfARG(message));
|
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Core/ |
H A D | CommonBugCategories.cpp | 14 namespace categories { namespace
|
/openbsd/gnu/llvm/llvm/docs/ |
H A D | DiscourseMigrationGuide.md | 35 …tegory or topic](https://discourse.mozilla.org/t/how-do-i-subscribe-to-categories-and-topics/16024) 43 ## Mapping of email addresses to Discourse categories 109 ## Mapping of mailing lists to categories 111 This table explains the mapping from mailing lists to categories in Discourse. 112 The email addresses of these categories will remain the same, after the 167 and then configure which categories you want to subscribe to. 198 If needed categories can have individual [security 199 …ps://meta.discourse.org/t/how-to-use-category-security-settings-to-create-private-categories/87678)
|
/openbsd/gnu/llvm/clang/tools/scan-build-py/lib/libscanbuild/ |
H A D | report.py | 144 for category, types in bug_counter.categories.items(): 480 current_category = predicate.categories.get(bug_category, dict()) 488 predicate.categories.update({bug_category: current_category}) 492 predicate.categories = dict()
|
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/cpp/ |
H A D | mi3.def | 2 This one distilled from glibc's setlocale.c and categories.def.
|