Searched refs:category (Results 1 - 25 of 89) sorted by relevance

1234

/freebsd-10.1-release/contrib/diff/lib/
H A Dhard-locale.c35 hard_locale (int category) argument
42 char const *p = setlocale (category, 0);
58 if (((p = setlocale (category, "C"))
60 || ((p = setlocale (category, "POSIX"))
65 setlocale (category, locale);
/freebsd-10.1-release/gnu/usr.bin/grep/
H A Dhard-locale.c54 hard_locale (int category) argument
61 char const *p = setlocale (category, 0);
75 if (((p = setlocale (category, "C")) && strcmp (p, locale) == 0)
76 || ((p = setlocale (category, "POSIX")) && strcmp (p, locale) == 0))
80 setlocale (category, locale);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/DataFormatters/
H A DDataVisualization.cpp119 DataVisualization::Categories::GetCategory (const ConstString &category, lldb::TypeCategoryImplSP &entry, argument
122 entry = GetFormatManager().GetCategory(category, allow_create);
127 DataVisualization::Categories::Add (const ConstString &category) argument
129 GetFormatManager().GetCategory(category);
133 DataVisualization::Categories::Delete (const ConstString &category) argument
135 GetFormatManager().DisableCategory(category);
136 return GetFormatManager().DeleteCategory(category);
146 DataVisualization::Categories::Clear (const ConstString &category) argument
148 GetFormatManager().GetCategory(category)->Clear(eFormatCategoryItemSummary | eFormatCategoryItemRegexSummary);
152 DataVisualization::Categories::Enable (const ConstString& category, argument
161 Disable(const ConstString& category) argument
168 Enable(const lldb::TypeCategoryImplSP& category, TypeCategoryMap::Position pos) argument
180 Disable(const lldb::TypeCategoryImplSP& category) argument
[all...]
H A DTypeCategoryMap.cpp64 ValueSP category; local
65 if (!Get(category_name,category))
67 return Enable(category, pos);
74 ValueSP category; local
75 if (!Get(category_name,category))
77 return Disable(category);
81 TypeCategoryMap::Enable (ValueSP category, Position pos) argument
84 if (category.get())
88 m_active_categories.push_front(category);
90 m_active_categories.push_back(category);
110 Disable(ValueSP category) argument
281 lldb::TypeCategoryImplSP category = *begin; local
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DDataVisualization.h109 GetCategory (const ConstString &category,
114 Add (const ConstString &category);
117 Delete (const ConstString &category);
123 Clear (const ConstString &category);
126 Enable (const ConstString& category,
130 Disable (const ConstString& category);
133 Enable (const lldb::TypeCategoryImplSP& category,
137 Disable (const lldb::TypeCategoryImplSP& category);
H A DFormatManager.h67 EnableCategory (const lldb::TypeCategoryImplSP& category, argument
70 m_categories_map.Enable(category,
75 DisableCategory (const lldb::TypeCategoryImplSP& category) argument
77 m_categories_map.Disable(category);
H A DTypeCategoryMap.h61 Enable (ValueSP category,
65 Disable (ValueSP category);
/freebsd-10.1-release/lib/libc/locale/
H A Dsetlocale.c71 * Current locales for each category
101 setlocale(category, locale)
102 int category;
108 if (category < LC_ALL || category >= _LC_LAST) {
114 return (category != LC_ALL ?
115 current_categories[category] : currentlocale());
127 if (category == LC_ALL) {
137 env = __get_locale_env(category);
142 (void)strcpy(new_categories[category], en
[all...]
/freebsd-10.1-release/contrib/texinfo/makeinfo/
H A Ddefun.c337 const char *category;
395 /* Get base type and category string. */
404 category = _("Function");
407 category = _("Macro");
410 category = _("Special Form");
414 category = _("Variable");
417 category = _("User Option");
421 category = _("Instance Variable");
425 category = _("Method");
428 category
336 const char *category; local
[all...]
/freebsd-10.1-release/contrib/libstdc++/include/bits/
H A Dlocale_classes.h70 /// Definition of locale::category.
71 typedef int category; typedef in class:locale
96 * The standard category values are none, ctype, numeric, collate, time,
98 * intersection. The category all is the union of these values.
104 static const category none = 0;
105 static const category ctype = 1L << 0;
106 static const category numeric = 1L << 1;
107 static const category collate = 1L << 2;
108 static const category time = 1L << 3;
109 static const category monetar
[all...]
/freebsd-10.1-release/contrib/ntp/lib/isc/include/isc/
H A Dlog.h92 * structures names each category, and the id value is initialized by calling
158 * Do not log directly to DEFAULT. Use another category. When in doubt,
205 * the category/module specification of isc_log_[v]write[1] that is compiled
328 *\li A category should only be registered once, but no mechanism enforces
356 * \li There are references to each category in the logging context,
422 * the default logging category can be changed by redefining
424 * logging category can be changed with only one additional function
469 const isc_logcategory_t *category,
472 * Associate a named logging channel with a category and module that
481 *\li Specifying a very large number of channels for a category wil
[all...]
/freebsd-10.1-release/usr.sbin/bluetooth/bthidcontrol/
H A Dbthidcontrol.c46 static struct bthid_command * find_bthid_command(char const *command, struct bthid_command *category);
47 static void print_bthid_command(struct bthid_command *category);
169 /* Try to find command in specified category */
171 find_bthid_command(char const *command, struct bthid_command *category) argument
175 for (c = category; c->command != NULL; c++) {
190 /* Print commands in specified category */
192 print_bthid_command(struct bthid_command *category) argument
196 for (c = category; c->command != NULL; c++)
/freebsd-10.1-release/contrib/llvm/lib/Support/
H A DAPFloat.cpp599 category = rhs.category;
601 if (isFiniteNonZero() || category == fcNaN)
608 assert(isFiniteNonZero() || category == fcNaN);
620 category = fcNaN;
759 category != rhs.category ||
762 if (category==fcZero || category==fcInfinity)
781 category
[all...]
/freebsd-10.1-release/contrib/gcc/
H A Dintl.h27 # define setlocale(category, locale) (locale)
/freebsd-10.1-release/contrib/llvm/include/llvm/Support/
H A Dsystem_error.h73 const error_category& category() const;
102 const error_category& category() const;
704 const error_category& category() const {return *_cat_;} function in class:llvm::error_condition
720 return _x.category() < _y.category()
721 || (_x.category() == _y.category() && _x.value() < _y.value());
767 const error_category& category() const {return *_cat_;} function in class:llvm::error_code
787 return _x.category() < _y.category()
[all...]
/freebsd-10.1-release/contrib/ntp/sntp/libopts/
H A Dgettext.h150 int category)
152 const char *translation = dcgettext (domain, msg_ctxt_id, category);
170 int category)
173 dcngettext (domain, msg_ctxt_id, msgid_plural, n, category);
212 int category)
231 translation = dcgettext (domain, msg_ctxt_id, category);
258 int category)
277 translation = dcngettext (domain, msg_ctxt_id, msgid_plural, n, category);
148 pgettext_aux(const char *domain, const char *msg_ctxt_id, const char *msgid, int category) argument
167 npgettext_aux(const char *domain, const char *msg_ctxt_id, const char *msgid, const char *msgid_plural, unsigned long int n, int category) argument
210 dcpgettext_expr(const char *domain, const char *msgctxt, const char *msgid, int category) argument
255 dcnpgettext_expr(const char *domain, const char *msgctxt, const char *msgid, const char *msgid_plural, unsigned long int n, int category) argument
/freebsd-10.1-release/contrib/libstdc++/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 __ca
[all...]
H A Dlocalename.cc146 locale::locale(const locale& __base, const char* __s, category __cat)
150 // this. Building up locales on a per-category way is tedious, so
156 locale::locale(const locale& __base, const locale& __add, category __cat)
162 category __cat)
265 _M_replace_categories(const _Impl* __imp, category __cat)
267 category __mask = 1;
/freebsd-10.1-release/contrib/gdb/gdb/
H A Dobjc-lang.h51 char **class, char **category,
/freebsd-10.1-release/usr.sbin/bluetooth/l2control/
H A Dl2control.c175 /* Try to find command in specified category */
177 find_l2cap_command(char const *command, struct l2cap_command *category) argument
181 for (c = category; c->command != NULL; c++) {
196 /* Print commands in specified category */
198 print_l2cap_command(struct l2cap_command *category) argument
202 for (c = category; c->command != NULL; c++)
/freebsd-10.1-release/usr.sbin/bluetooth/sdpcontrol/
H A Dsdpcontrol.c174 /* Try to find command in specified category */
176 find_sdp_command(char const *command, struct sdp_command *category) argument
180 for (c = category; c->command != NULL; c++) {
195 /* Print commands in specified category */
197 print_sdp_command(struct sdp_command *category) argument
201 for (c = category; c->command != NULL; c++)
/freebsd-10.1-release/contrib/llvm/include/llvm/ADT/
H A DAPFloat.h376 bool isZero() const { return category == fcZero; }
383 bool isInfinity() const { return category == fcInfinity; }
386 bool isNaN() const { return category == fcNaN; }
396 fltCategory getCategory() const { return category; }
398 bool isNonZero() const { return category != fcZero; }
567 fltCategory category : 3;
/freebsd-10.1-release/contrib/subversion/subversion/libsvn_subr/
H A Dutf_validate.c255 * category 0 (FSM_START). Return the position of the first such char
295 * category 0 (FSM_START). Return the position of either the such
351 int category = octet_category[octet]; local
352 state = machine[state][category];
372 int category = octet_category[octet]; local
373 state = machine[state][category];
392 int category = octet_category[octet]; local
393 state = machine[state][category];
/freebsd-10.1-release/contrib/ntp/lib/isc/
H A Dlog.c84 * category, and then each structure in the linked list is checked for
86 * associated with any given category will be very short, no more than
113 * the category/module specification of isc_log_[v]write[1] that is compiled
140 * Note that the category and module information is not locked.
142 * in a program, and the category/module registration happens only once.
190 * The default category is provided so that the internal default can
241 isc_log_doit(isc_log_t *lctx, isc_logcategory_t *category,
389 * Set the default category's channel to default_stderr,
577 * in one category array to point to the next array exists because
606 * Update the id number of the category wit
788 isc_log_usechannel(isc_logconfig_t *lcfg, const char *name, const isc_logcategory_t *category, const isc_logmodule_t *module) argument
831 isc_log_write(isc_log_t *lctx, isc_logcategory_t *category, isc_logmodule_t *module, int level, const char *format, ...) argument
847 isc_log_vwrite(isc_log_t *lctx, isc_logcategory_t *category, isc_logmodule_t *module, int level, const char *format, va_list args) argument
859 isc_log_write1(isc_log_t *lctx, isc_logcategory_t *category, isc_logmodule_t *module, int level, const char *format, ...) argument
875 isc_log_vwrite1(isc_log_t *lctx, isc_logcategory_t *category, isc_logmodule_t *module, int level, const char *format, va_list args) argument
887 isc_log_iwrite(isc_log_t *lctx, isc_logcategory_t *category, isc_logmodule_t *module, int level, isc_msgcat_t *msgcat, int msgset, int msg, const char *format, ...) argument
905 isc_log_ivwrite(isc_log_t *lctx, isc_logcategory_t *category, isc_logmodule_t *module, int level, isc_msgcat_t *msgcat, int msgset, int msg, const char *format, va_list args) argument
918 isc_log_iwrite1(isc_log_t *lctx, isc_logcategory_t *category, isc_logmodule_t *module, int level, isc_msgcat_t *msgcat, int msgset, int msg, const char *format, ...) argument
936 isc_log_ivwrite1(isc_log_t *lctx, isc_logcategory_t *category, isc_logmodule_t *module, int level, isc_msgcat_t *msgcat, int msgset, int msg, const char *format, va_list args) argument
1405 isc_log_doit(isc_log_t *lctx, isc_logcategory_t *category, isc_logmodule_t *module, int level, isc_boolean_t write_once, isc_msgcat_t *msgcat, int msgset, int msg, const char *format, va_list args) argument
[all...]
/freebsd-10.1-release/contrib/groff/src/include/
H A Dlib.h41 #define setlocale(category, locale) do {} while(0)

Completed in 143 milliseconds

1234