Home
last modified time | relevance | path

Searched refs:category (Results 1 – 25 of 381) sorted by relevance

12345678910>>...16

/openbsd/gnu/llvm/lldb/source/DataFormatters/
H A DDataVisualization.cpp93 GetFormatManager().GetCategory(category); in Add()
97 GetFormatManager().DisableCategory(category); in Delete()
98 return GetFormatManager().DeleteCategory(category); in Delete()
112 GetFormatManager().DisableCategory(category); in Enable()
124 GetFormatManager().DisableCategory(category); in Disable()
135 if (category.get()) { in Enable()
136 if (category->IsEnabled()) in Enable()
137 GetFormatManager().DisableCategory(category); in Enable()
143 const lldb::TypeCategoryImplSP &category) { in Disable() argument
144 if (category.get() && category->IsEnabled()) in Disable()
[all …]
H A DTypeCategoryMap.cpp48 ValueSP category; in Enable() local
49 if (!Get(category_name, category)) in Enable()
51 return Enable(category, pos); in Enable()
56 ValueSP category; in Disable() local
57 if (!Get(category_name, category)) in Disable()
59 return Disable(category); in Disable()
64 if (category.get()) { in Enable()
78 category->Enable(true, pos); in Enable()
86 if (category.get()) { in Disable()
88 category->Disable(); in Disable()
[all …]
/openbsd/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Dtest_categories.py63 def is_supported_on_platform(category, platform, compiler_path): argument
64 if category == "dwo":
67 elif category == "dsym":
69 elif category == "gmodules":
85 for category in categories:
86 origCategory = category
87 if category not in all_categories and not exact_match:
88 category = unique_string_match(category, all_categories)
89 if (category not in all_categories) or category is None:
98 result.append(category)
/openbsd/lib/libc/locale/
H A Dsetlocale.c55 changegl(int category, const char *locname, char **gl) in changegl() argument
59 if ((locname = _get_locname(category, locname)) == NULL || in changegl()
63 free(gl[category]); in changegl()
64 gl[category] = cp; in changegl()
69 setlocale(int category, const char *locname) in setlocale() argument
83 if (category < LC_ALL || category >= _LC_LAST) in setlocale()
112 if (changegl(category, locname, newgl) == -1) { in setlocale()
118 if (category == LC_ALL) { in setlocale()
142 if (category > LC_ALL || newgl[LC_ALL][0] != '\0') { in setlocale()
143 if (strlcpy(global_locname, newgl[category], in setlocale()
[all …]
H A D_get_locname.c35 _get_locname(int category, const char *locname) in _get_locname() argument
50 if (category != LC_ALL) { in _get_locname()
52 locname = getenv(catname[category - 1]); in _get_locname()
62 locname = category == LC_ALL ? "" : "C"; in _get_locname()
/openbsd/gnu/usr.bin/perl/t/porting/
H A Ddeprecation.t55 my $category = $1;
56 $category_seen{$category} = $removed_in_version;
57 $subject_has_category{$subject} = $category;
59 my $tuple = $deprecated->{$category};
60 ok( $tuple, "Deprecated category '$category' ($subject) exists in $warnings_file")
67 "Version change for '$category' ($subject) is sufficiently after deprecation date")
71 foreach my $category (sort keys %$deprecated) {
72 ok($category_seen{$category},"Deprecated category '$category' is documented in $pod_file");
H A Ddiag.t155 $entries{$cur_entry}{category} =
365 my ($name, $category, $routine, $wrapper);
371 $category = $wrapper if $wrapper=~/WARN/;
385 $category && $category =~ s/\).*//s;
387 /yywarn/ and $category = 'syntax';
393 ($name, $category) = ($+{'text'}, undef);
398 ($name, $category) = ($+{'text'}, undef);
406 $category = 'WARN_REGEXP';
408 $category .= ',WARN_DEPRECATED';
432 if (defined $category) {
[all …]
/openbsd/gnu/usr.bin/texinfo/makeinfo/
H A Ddefun.c336 const char *category; in defun_internal() local
403 category = _("Function"); in defun_internal()
406 category = _("Macro"); in defun_internal()
409 category = _("Special Form"); in defun_internal()
413 category = _("Variable"); in defun_internal()
416 category = _("User Option"); in defun_internal()
420 category = _("Instance Variable"); in defun_internal()
424 category = _("Method"); in defun_internal()
427 category = next_nonwhite_defun_arg (&scan_args); in defun_internal()
493 execute_string (" --- %s: %s", category, defined_name); in defun_internal()
[all …]
/openbsd/gnu/gcc/libstdc++-v3/include/bits/
H A Dlocale_classes.h71 typedef int category; in _GLIBCXX_BEGIN_NAMESPACE() typedef
104 static const category none = 0; in _GLIBCXX_BEGIN_NAMESPACE()
105 static const category ctype = 1L << 0; in _GLIBCXX_BEGIN_NAMESPACE()
106 static const category numeric = 1L << 1; in _GLIBCXX_BEGIN_NAMESPACE()
107 static const category collate = 1L << 2; in _GLIBCXX_BEGIN_NAMESPACE()
108 static const category time = 1L << 3; in _GLIBCXX_BEGIN_NAMESPACE()
109 static const category monetary = 1L << 4; in _GLIBCXX_BEGIN_NAMESPACE()
110 static const category messages = 1L << 5; in _GLIBCXX_BEGIN_NAMESPACE()
324 static category in _GLIBCXX_BEGIN_NAMESPACE()
325 _S_normalize_category(category); in _GLIBCXX_BEGIN_NAMESPACE()
[all …]
/openbsd/gnu/lib/libstdc++/libstdc++/include/bits/
H A Dlocale_classes.h60 typedef unsigned int category; typedef
84 static const category none = 0;
85 static const category ctype = 1L << 0;
86 static const category numeric = 1L << 1;
87 static const category collate = 1L << 2;
88 static const category time = 1L << 3;
89 static const category monetary = 1L << 4;
90 static const category messages = 1L << 5;
182 static category
183 _S_normalize_category(category);
[all …]
/openbsd/gnu/llvm/lldb/include/lldb/DataFormatters/
H A DDataVisualization.h81 static bool GetCategory(ConstString category,
88 static void Add(ConstString category);
90 static bool Delete(ConstString category);
94 static void Clear(ConstString category);
96 static void Enable(ConstString category,
101 static void Disable(ConstString category);
105 static void Enable(const lldb::TypeCategoryImplSP &category,
108 static void Disable(const lldb::TypeCategoryImplSP &category);
/openbsd/gnu/gcc/intl/
H A Ddcigettext.c223 int category; member
272 result = s1->category - s2->category;
317 # define category_to_name(category) _nl_category_names[category] argument
433 int category; variable
459 if (category < 0 || category >= __LC_LAST || category == LC_ALL)
478 category = LC_MESSAGES;
490 search->category = category;
663 newp->category = category;
1080 int category; in category_to_name()
1084 switch (category)
[all …]
H A Dintl-compat.c80 dcgettext (domainname, msgid, category) in dcgettext() argument
83 int category;
85 return libintl_dcgettext (domainname, msgid, category);
114 dcngettext (domainname, msgid1, msgid2, n, category) in dcngettext() argument
119 int category;
121 return libintl_dcngettext (domainname, msgid1, msgid2, n, category);
/openbsd/gnu/usr.bin/gcc/gcc/intl/
H A Dintl-compat.c101 dcgettext (domainname, msgid, category) in dcgettext() argument
104 int category;
106 return dcgettext__ (domainname, msgid, category);
132 dcngettext (domainname, msgid1, msgid2, n, category) in dcngettext() argument
137 int category;
139 return dcngettext__ (domainname, msgid1, msgid2, n, category);
H A Ddcigettext.c222 int category; member
271 result = s1->category - s2->category;
411 int category; variable
453 search->category = category;
643 newp->category = category;
1096 category_to_name (category) in category_to_name() argument
1097 int category; in category_to_name()
1101 switch (category)
1157 int category; in guess_category_value()
1162 (void) category; /* shut up compiler */
[all …]
/openbsd/gnu/usr.bin/perl/lib/
H A Dwarnings.pm439 my $category ;
465 $category = shift ;
466 if (my $type = ref $category) {
469 $category = $type;
472 $offset = $Offsets{$category};
473 Croaker("Unknown warnings category '$category'")
477 $category = caller(1);
478 $offset = $Offsets{$category};
479 Croaker("package '$category' not registered for warnings")
489 last unless @DB::args && $DB::args[0] =~ /^$category=/ ;
/openbsd/sys/dev/pci/drm/include/drm/
H A Ddrm_print.h324 static inline bool drm_debug_enabled_raw(enum drm_debug_category category) in drm_debug_enabled_raw() argument
326 return unlikely(__drm_debug & BIT(category)); in drm_debug_enabled_raw()
329 #define drm_debug_enabled_instrumented(category) \ argument
332 drm_debug_enabled_raw(category); \
341 #define __drm_debug_enabled(category) true argument
342 #define drm_debug_enabled(category) drm_debug_enabled_instrumented(category) argument
344 #define __drm_debug_enabled(category) drm_debug_enabled_raw(category) argument
345 #define drm_debug_enabled(category) drm_debug_enabled_raw(category) argument
360 enum drm_debug_category category, const char *format, ...);
596 #define __DRM_DEFINE_DBG_RATELIMITED(category, drm, fmt, ...) \ argument
[all …]
/openbsd/gnu/usr.bin/texinfo/intl/
H A Ddcigettext.c227 int category; member
273 result = s1->category - s2->category; in transcmp()
317 # define category_to_name(category) _nl_category_names[category] argument
454 if (category < 0 || category >= __LC_LAST || category == LC_ALL) in DCIGETTEXT()
472 if (category == LC_MESSAGES_COMPAT) in DCIGETTEXT()
473 category = LC_MESSAGES; in DCIGETTEXT()
485 search->category = category; in DCIGETTEXT()
561 categoryname = category_to_name (category); in DCIGETTEXT()
658 newp->category = category; in DCIGETTEXT()
1068 category_to_name (int category) in category_to_name() argument
[all …]
/openbsd/gnu/lib/libstdc++/libstdc++/src/
H A Dlocale.cc48 const locale::category locale::none;
49 const locale::category locale::ctype;
50 const locale::category locale::numeric;
51 const locale::category locale::collate;
52 const locale::category locale::time;
53 const locale::category locale::monetary;
54 const locale::category locale::messages;
55 const locale::category locale::all;
392 category __cat) in _M_coalesce()
406 locale::category
[all …]
/openbsd/gnu/usr.bin/binutils/intl/
H A Ddcgettext.c169 static const char *guess_category_value PARAMS ((int category,
223 DCGETTEXT (domainname, msgid, category) in DCGETTEXT() argument
226 int category;
304 categoryname = category_to_name (category);
305 categoryvalue = guess_category_value (category, categoryname);
484 category_to_name (category) in category_to_name() argument
485 int category; in category_to_name()
489 switch (category)
544 guess_category_value (category, categoryname) in guess_category_value() argument
545 int category; in guess_category_value()
[all …]
/openbsd/gnu/usr.bin/binutils-2.17/intl/
H A Ddcgettext.c169 static const char *guess_category_value PARAMS ((int category,
223 DCGETTEXT (domainname, msgid, category) in DCGETTEXT() argument
226 int category;
304 categoryname = category_to_name (category);
305 categoryvalue = guess_category_value (category, categoryname);
484 category_to_name (category) in category_to_name() argument
485 int category; in category_to_name()
489 switch (category)
544 guess_category_value (category, categoryname) in guess_category_value() argument
545 int category; in guess_category_value()
[all …]
/openbsd/gnu/llvm/llvm/lib/Support/
H A DAPFloat.cpp774 category = rhs.category; in assign()
865 category = rhs.category; in operator =()
1005 category != rhs.category || in bitwiseIsEqual()
1008 if (category==fcZero || category==fcInfinity) in bitwiseIsEqual()
1586 switch (PackCategoriesIntoKey(category, rhs.category)) { in addOrSubtractSpecials()
1710 switch (PackCategoriesIntoKey(category, rhs.category)) { in multiplySpecials()
1754 switch (PackCategoriesIntoKey(category, rhs.category)) { in divideSpecials()
1803 switch (PackCategoriesIntoKey(category, rhs.category)) { in modSpecials()
1841 switch (PackCategoriesIntoKey(category, rhs.category)) { in remainderSpecials()
2227 switch (PackCategoriesIntoKey(category, rhs.category)) { in compare()
[all …]
/openbsd/gnu/llvm/libcxx/include/
H A Dsystem_error72 const error_category& category() const noexcept;
100 const error_category& category() const noexcept;
413 return __x.category() == __y.category() && __x.value() == __y.value();
420 return __x.category().equivalent(__x.value(), __y)
437 return __x.category() == __y.category() && __x.value() == __y.value();
466 return __x.category() < __y.category()
467 || (__x.category() == __y.category() && __x.value() < __y.value());
474 return __x.category() < __y.category()
475 || (__x.category() == __y.category() && __x.value() < __y.value());
483 if (auto __c = __x.category() <=> __y.category(); __c != 0)
[all …]
/openbsd/gnu/gcc/libstdc++-v3/src/
H A Dlocale.cc60 const locale::category locale::none;
61 const locale::category locale::ctype;
62 const locale::category locale::numeric;
63 const locale::category locale::collate;
64 const locale::category locale::time;
65 const locale::category locale::monetary;
66 const locale::category locale::messages;
67 const locale::category locale::all;
145 locale::category
146 locale::_S_normalize_category(category __cat) in _S_normalize_category()
/openbsd/usr.sbin/pkg_add/OpenBSD/
H A DPackingElement.pm53 sub category($) { 'items' } subroutine
321 sub category($self) subroutine
845 return $self->category;
874 sub category($) subroutine
882 sub category($) subroutine
915 sub category($) subroutine
973 sub category($) { "name" } subroutine
989 sub category($) { "url" } subroutine
1786 return $self->category;
1799 sub category($self) subroutine
[all …]

12345678910>>...16