Home
last modified time | relevance | path

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

123456789

/NextBSD/contrib/llvm/tools/lldb/source/DataFormatters/
HDDataVisualization.cpp129 DataVisualization::Categories::GetCategory (const ConstString &category, lldb::TypeCategoryImplSP &… in GetCategory() argument
132 entry = GetFormatManager().GetCategory(category, allow_create); in GetCategory()
137 DataVisualization::Categories::Add (const ConstString &category) in Add() argument
139 GetFormatManager().GetCategory(category); in Add()
143 DataVisualization::Categories::Delete (const ConstString &category) in Delete() argument
145 GetFormatManager().DisableCategory(category); in Delete()
146 return GetFormatManager().DeleteCategory(category); in Delete()
156 DataVisualization::Categories::Clear (const ConstString &category) in Clear() argument
158 …GetFormatManager().GetCategory(category)->Clear(eFormatCategoryItemSummary | eFormatCategoryItemRe… in Clear()
162 DataVisualization::Categories::Enable (const ConstString& category, in Enable() argument
[all …]
HDTypeCategoryMap.cpp62 ValueSP category; in Enable() local
63 if (!Get(category_name,category)) in Enable()
65 return Enable(category, pos); in Enable()
72 ValueSP category; in Disable() local
73 if (!Get(category_name,category)) in Disable()
75 return Disable(category); in Disable()
79 TypeCategoryMap::Enable (ValueSP category, Position pos) in Enable() argument
82 if (category.get()) in Enable()
86 m_active_categories.push_front(category); in Enable()
88 m_active_categories.push_back(category); in Enable()
[all …]
/NextBSD/lib/libc/locale/
HDsetlocale.c101 setlocale(int category, const char *locale) in setlocale() argument
106 if (category < LC_ALL || category >= _LC_LAST) { in setlocale()
112 return (category != LC_ALL ? in setlocale()
113 current_categories[category] : currentlocale()); in setlocale()
125 if (category == LC_ALL) { in setlocale()
135 env = __get_locale_env(category); in setlocale()
140 (void)strcpy(new_categories[category], env); in setlocale()
142 } else if (category != LC_ALL) { in setlocale()
147 (void)strcpy(new_categories[category], locale); in setlocale()
187 if (category != LC_ALL) in setlocale()
[all …]
/NextBSD/contrib/libstdc++/include/bits/
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()
111 static const category all = (ctype | numeric | collate | in _GLIBCXX_BEGIN_NAMESPACE()
157 locale(const locale& __base, const char* __s, category __cat); in _GLIBCXX_BEGIN_NAMESPACE()
[all …]
/NextBSD/contrib/llvm/lib/Support/
HDAPFloat.cpp601 category = rhs.category; in assign()
603 if (isFiniteNonZero() || category == fcNaN) in assign()
610 assert(isFiniteNonZero() || category == fcNaN); in copySignificand()
622 category = fcNaN; in makeNaN()
695 category = rhs.category; in operator =()
775 category != rhs.category || in bitwiseIsEqual()
778 if (category==fcZero || category==fcInfinity) in bitwiseIsEqual()
797 category = fcNormal; in APFloat()
806 category = fcZero; in APFloat()
1207 category = fcInfinity; in handleOverflow()
[all …]
/NextBSD/tools/tools/locale/tools/
HDutf8-rollup.pl251 my $category = '';
273 $category = $1;
274 if ($category eq 'merge') {
278 if ($category ne 'print') {
282 next if ($category eq 'print');
283 if ($category eq 'toupper' || $category eq 'tolower') {
290 if ($cat_loaded) { print FOUT $category; }
311 if ($cat_loaded) { print FOUT $category; }
335 if ($cat_loaded) { print FOUT $category; }
/NextBSD/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
HDDataVisualization.h116 GetCategory (const ConstString &category,
121 Add (const ConstString &category);
124 Delete (const ConstString &category);
130 Clear (const ConstString &category);
133 Enable (const ConstString& category,
137 Disable (const ConstString& category);
140 Enable (const lldb::TypeCategoryImplSP& category,
144 Disable (const lldb::TypeCategoryImplSP& category);
/NextBSD/usr.sbin/bsdconfig/share/packages/
HDcategories.subr46 # f_category_desc_get $category [$var_to_set]
48 # Fetch the description of a given category. Returns success if a match was
51 # If $var_to_set is missing or NULL, the category description is printed to
59 # Return failure if $category
71 # f_category_desc_set $category $desc
73 # Store a description in-association with a category. $category should be
75 # whitespace. Returns success unless $category is NULL or no arguments. Use the
76 # f_category_desc_get() routine with the same $category to retrieve the stored
81 local category="$1" desc="$2"
83 [ "$category" ] || return $FAILURE
[all …]
HDpackages.subr77 # category name if its index has been cached, adding the number of installed
78 # packages for each category, and adding the number _selected_ packages for
79 # each category.
88 local var_to_set="$1" category cat desc help varcat menu_buf n
91 category="${1%\*}" desc="${2%%; *}" help="$3"
94 cat="${category# }" # Trim lead space inserted by sort-method
97 # Add number of installed packages for this category (if any)
105 # Add number of selected packages for this category (if any)
113 # Re-Add asterisk to the category if its index has been cached
114 f_isset _index_page_${varcat}_1 && category="$category*"
[all …]
HDindex.subr226 # 6. create $_npkgs_$varcat holding the total number of packages in category
231 # NOTE: $varcat is the product of f_str2varname $category varcat
265 function print_category(category, npkgs, desc)
267 cat = category
268 # Accent the category if the first page has been
297 # Produce package counts for each category
335 # f_index_extract_pages $var_to_get $var_basename $pagesize [$category]
342 # If $category is set, only packages for that category are extracted.
343 # Otherwise, if $category is "All", missing, or NULL, all packages are
349 local category="$4" # Optional
[all …]
/NextBSD/contrib/ntp/lib/isc/include/isc/
HDlog.h469 const isc_logcategory_t *category,
568 isc_log_write(isc_log_t *lctx, isc_logcategory_t *category,
607 isc_log_vwrite(isc_log_t *lctx, isc_logcategory_t *category,
619 isc_log_write1(isc_log_t *lctx, isc_logcategory_t *category,
630 isc_log_vwrite1(isc_log_t *lctx, isc_logcategory_t *category,
652 isc_log_iwrite(isc_log_t *lctx, isc_logcategory_t *category,
659 isc_log_ivwrite(isc_log_t *lctx, isc_logcategory_t *category,
666 isc_log_iwrite1(isc_log_t *lctx, isc_logcategory_t *category,
673 isc_log_ivwrite1(isc_log_t *lctx, isc_logcategory_t *category,
/NextBSD/contrib/diff/lib/
HDhard-locale.c35 hard_locale (int category) in hard_locale() argument
42 char const *p = setlocale (category, 0); in hard_locale()
58 if (((p = setlocale (category, "C")) in hard_locale()
60 || ((p = setlocale (category, "POSIX")) in hard_locale()
65 setlocale (category, locale); in hard_locale()
/NextBSD/gnu/usr.bin/grep/
HDhard-locale.c54 hard_locale (int category) in hard_locale() argument
61 char const *p = setlocale (category, 0); in hard_locale()
75 if (((p = setlocale (category, "C")) && strcmp (p, locale) == 0) in hard_locale()
76 || ((p = setlocale (category, "POSIX")) && strcmp (p, locale) == 0)) in hard_locale()
80 setlocale (category, locale); in hard_locale()
/NextBSD/contrib/subversion/subversion/libsvn_subr/utf8proc/
HDutf8proc.c230 utf8proc_propval_t category; in utf8proc_decompose_char() local
233 category = property->category; in utf8proc_decompose_char()
251 if (!category) return UTF8PROC_ERROR_NOTASSIGNED; in utf8proc_decompose_char()
257 if (category == UTF8PROC_CATEGORY_ZS) utf8proc_decompose_lump(0x0020); in utf8proc_decompose_char()
260 if (category == UTF8PROC_CATEGORY_PD || uc == 0x2212) in utf8proc_decompose_char()
271 if (category == UTF8PROC_CATEGORY_PC || uc == 0x02CD) in utf8proc_decompose_char()
277 if (category == UTF8PROC_CATEGORY_ZL || in utf8proc_decompose_char()
278 category == UTF8PROC_CATEGORY_ZP) in utf8proc_decompose_char()
283 if (category == UTF8PROC_CATEGORY_MN || in utf8proc_decompose_char()
284 category == UTF8PROC_CATEGORY_MC || in utf8proc_decompose_char()
[all …]
/NextBSD/usr.sbin/bluetooth/bthidcontrol/
HDbthidcontrol.c47 …tic struct bthid_command * find_bthid_command(char const *command, struct bthid_command *category);
48 static void print_bthid_command(struct bthid_command *category);
172 find_bthid_command(char const *command, struct bthid_command *category) in find_bthid_command() argument
176 for (c = category; c->command != NULL; c++) { in find_bthid_command()
193 print_bthid_command(struct bthid_command *category) in print_bthid_command() argument
197 for (c = category; c->command != NULL; c++) in print_bthid_command()
/NextBSD/contrib/libstdc++/src/
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()
/NextBSD/contrib/ntp/sntp/libopts/
HDgettext.h150 int category) in pgettext_aux() argument
152 const char *translation = dcgettext (domain, msg_ctxt_id, category); in pgettext_aux()
170 int category) in npgettext_aux() argument
173 dcngettext (domain, msg_ctxt_id, msgid_plural, n, category); in npgettext_aux()
212 int category) in dcpgettext_expr() argument
231 translation = dcgettext (domain, msg_ctxt_id, category); in dcpgettext_expr()
258 int category) in dcnpgettext_expr() argument
277 translation = dcngettext (domain, msg_ctxt_id, msgid_plural, n, category); in dcnpgettext_expr()
/NextBSD/contrib/ntp/lib/isc/
HDlog.c241 isc_log_doit(isc_log_t *lctx, isc_logcategory_t *category,
789 const isc_logcategory_t *category, in isc_log_usechannel() argument
802 REQUIRE(category == NULL || category->id < lctx->category_count); in isc_log_usechannel()
813 if (category != NULL) in isc_log_usechannel()
814 result = assignchannel(lcfg, category->id, module, channel); in isc_log_usechannel()
831 isc_log_write(isc_log_t *lctx, isc_logcategory_t *category, in isc_log_write() argument
841 isc_log_doit(lctx, category, module, level, ISC_FALSE, in isc_log_write()
847 isc_log_vwrite(isc_log_t *lctx, isc_logcategory_t *category, in isc_log_vwrite() argument
854 isc_log_doit(lctx, category, module, level, ISC_FALSE, in isc_log_vwrite()
859 isc_log_write1(isc_log_t *lctx, isc_logcategory_t *category, in isc_log_write1() argument
[all …]
/NextBSD/contrib/libc++/include/
Dsystem_error66 const error_category& category() const noexcept;
95 const error_category& category() const noexcept;
456 const error_category& category() const _NOEXCEPT {return *__cat_;}
475 return __x.category() < __y.category()
476 || (__x.category() == __y.category() && __x.value() < __y.value());
528 const error_category& category() const _NOEXCEPT {return *__cat_;}
552 return __x.category() < __y.category()
553 || (__x.category() == __y.category() && __x.value() < __y.value());
560 return __x.category() == __y.category() && __x.value() == __y.value();
567 return __x.category().equivalent(__x.value(), __y)
[all …]
/NextBSD/contrib/llvm/tools/lldb/source/Commands/
HDCommandObjectType.cpp352 std::string category,
554 lldb::TypeCategoryImplSP category; in IOHandlerInputComplete() local
555 … DataVisualization::Categories::GetCategory(ConstString(options->m_category.c_str()), category); in IOHandlerInputComplete()
1046 lldb::TypeCategoryImplSP category; in DoExecute() local
1047 … DataVisualization::Categories::GetCategory(ConstString(m_options.m_category.c_str()), category); in DoExecute()
1049 bool delete_category = category->Delete(typeCS, in DoExecute()
1178 lldb::TypeCategoryImplSP category; in DoExecute() local
1183 DataVisualization::Categories::GetCategory(cat_nameCS, category); in DoExecute()
1186 DataVisualization::Categories::GetCategory(ConstString(NULL), category); in DoExecute()
1187 category->Clear(eFormatCategoryItemValue | eFormatCategoryItemRegexValue); in DoExecute()
[all …]
/NextBSD/contrib/subversion/subversion/libsvn_subr/
HDutf_validate.c351 int category = octet_category[octet]; in svn_utf__last_valid() local
352 state = machine[state][category]; in svn_utf__last_valid()
372 int category = octet_category[octet]; in svn_utf__cstring_is_valid() local
373 state = machine[state][category]; in svn_utf__cstring_is_valid()
392 int category = octet_category[octet]; in svn_utf__is_valid() local
393 state = machine[state][category]; in svn_utf__is_valid()
/NextBSD/usr.bin/localedef/
HDscanner.c83 static int category = T_END; variable
497 if ((category != T_CHARMAP) && (category != T_WIDTH)) { in get_wide()
547 if (category == T_END) { in get_symbol()
562 if ((category != T_CHARMAP) && in get_symbol()
590 return (category); in get_category()
622 category = T_END; in consume_token()
629 category = last_kw; in consume_token()
/NextBSD/usr.sbin/bluetooth/sdpcontrol/
HDsdpcontrol.c177 find_sdp_command(char const *command, struct sdp_command *category) in find_sdp_command() argument
181 for (c = category; c->command != NULL; c++) { in find_sdp_command()
198 print_sdp_command(struct sdp_command *category) in print_sdp_command() argument
202 for (c = category; c->command != NULL; c++) in print_sdp_command()
/NextBSD/usr.sbin/bluetooth/l2control/
HDl2control.c178 find_l2cap_command(char const *command, struct l2cap_command *category) in find_l2cap_command() argument
182 for (c = category; c->command != NULL; c++) { in find_l2cap_command()
199 print_l2cap_command(struct l2cap_command *category) in print_l2cap_command() argument
203 for (c = category; c->command != NULL; c++) in print_l2cap_command()
/NextBSD/contrib/llvm/include/llvm/ADT/
HDAPFloat.h414 bool isZero() const { return category == fcZero; } in isZero()
421 bool isInfinity() const { return category == fcInfinity; } in isInfinity()
424 bool isNaN() const { return category == fcNaN; } in isNaN()
434 fltCategory getCategory() const { return category; } in getCategory()
436 bool isNonZero() const { return category != fcZero; } in isNonZero()
637 fltCategory category : 3; variable

123456789