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

1234

/freebsd-10.0-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.0-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.0-release/contrib/llvm/tools/lldb/source/DataFormatters/
H A DDataVisualization.cpp160 DataVisualization::Categories::GetCategory (const ConstString &category, lldb::TypeCategoryImplSP &entry, argument
163 entry = GetFormatManager().GetCategory(category, allow_create);
168 DataVisualization::Categories::Add (const ConstString &category) argument
170 GetFormatManager().GetCategory(category);
174 DataVisualization::Categories::Delete (const ConstString &category) argument
176 GetFormatManager().DisableCategory(category);
177 return GetFormatManager().DeleteCategory(category);
187 DataVisualization::Categories::Clear (const ConstString &category) argument
189 GetFormatManager().GetCategory(category)->Clear(eFormatCategoryItemSummary | eFormatCategoryItemRegexSummary);
193 DataVisualization::Categories::Enable (const ConstString& category, argument
202 Disable(const ConstString& category) argument
209 Enable(const lldb::TypeCategoryImplSP& category, TypeCategoryMap::Position pos) argument
221 Disable(const lldb::TypeCategoryImplSP& category) argument
[all...]
H A DTypeCategoryMap.cpp61 ValueSP category; local
62 if (!Get(category_name,category))
64 return Enable(category, pos);
71 ValueSP category; local
72 if (!Get(category_name,category))
74 return Disable(category);
78 TypeCategoryMap::Enable (ValueSP category, Position pos) argument
81 if (category.get())
85 m_active_categories.push_front(category);
87 m_active_categories.push_back(category);
107 Disable(ValueSP category) argument
246 lldb::TypeCategoryImplSP category = *begin; local
[all...]
/freebsd-10.0-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.0-release/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DDataVisualization.h130 GetCategory (const ConstString &category,
135 Add (const ConstString &category);
138 Delete (const ConstString &category);
144 Clear (const ConstString &category);
147 Enable (const ConstString& category,
151 Disable (const ConstString& category);
154 Enable (const lldb::TypeCategoryImplSP& category,
158 Disable (const lldb::TypeCategoryImplSP& category);
H A DFormatManager.h72 EnableCategory (const lldb::TypeCategoryImplSP& category, argument
75 m_categories_map.Enable(category,
80 DisableCategory (const lldb::TypeCategoryImplSP& category) argument
82 m_categories_map.Disable(category);
H A DTypeCategoryMap.h61 Enable (ValueSP category,
65 Disable (ValueSP category);
/freebsd-10.0-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.0-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.0-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.0-release/contrib/llvm/lib/Support/
H A DAPFloat.cpp593 category = rhs.category;
595 if (category == fcNormal || category == fcNaN)
602 assert(category == fcNormal || category == fcNaN);
614 category = fcNaN;
692 category != rhs.category ||
695 if (category
[all...]
H A Dsystem_error.cpp41 return *this == code.category() && code.value() == condition;
/freebsd-10.0-release/contrib/gcc/
H A Dintl.h27 # define setlocale(category, locale) (locale)
/freebsd-10.0-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.0-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.0-release/contrib/llvm/include/llvm/ADT/
H A DAPFloat.h320 fltCategory getCategory() const { return category; }
322 bool isZero() const { return category == fcZero; }
323 bool isNonZero() const { return category != fcZero; }
324 bool isNormal() const { return category == fcNormal; }
325 bool isNaN() const { return category == fcNaN; }
326 bool isInfinity() const { return category == fcInfinity; }
455 fltCategory category: 3;
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dobjc-lang.h51 char **class, char **category,
/freebsd-10.0-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.0-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.0-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.0-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectType.cpp185 std::string category,
1349 lldb::TypeCategoryImplSP category; local
1350 DataVisualization::Categories::GetCategory(ConstString(category_name.c_str()), category); local
1377 category->GetRegexSummaryNavigator()->Delete(type_name);
1378 category->GetRegexSummaryNavigator()->Add(typeRX, entry);
1390 category->GetSummaryNavigator()->Add(type_name, entry);
1398 { LLDB_OPT_SET_ALL, false, "category", 'w', required_argument, NULL, 0, eArgTypeName, "Add this to the given category instead of the default one."},
1552 lldb::TypeCategoryImplSP category; local
1553 DataVisualization::Categories::GetCategory(ConstString(m_options.m_category.c_str()), category); local
1681 lldb::TypeCategoryImplSP category; local
1689 DataVisualization::Categories::GetCategory(ConstString(NULL), category); local
2833 lldb::TypeCategoryImplSP category; local
2834 DataVisualization::Categories::GetCategory(ConstString(m_options.m_category.c_str()), category); local
2999 lldb::TypeCategoryImplSP category; local
3000 DataVisualization::Categories::GetCategory(ConstString(m_options.m_category.c_str()), category); local
3132 lldb::TypeCategoryImplSP category; local
3140 DataVisualization::Categories::GetCategory(ConstString(NULL), category); local
3261 lldb::TypeCategoryImplSP category; local
3269 DataVisualization::Categories::GetCategory(ConstString(NULL), category); local
3411 lldb::TypeCategoryImplSP category; local
3539 lldb::TypeCategoryImplSP category; local
3540 DataVisualization::Categories::GetCategory(ConstString(m_options.m_category.c_str()), category); local
3599 lldb::TypeCategoryImplSP category; local
3600 DataVisualization::Categories::GetCategory(ConstString(category_name.c_str()), category); local
3793 lldb::TypeCategoryImplSP category; local
3794 DataVisualization::Categories::GetCategory(ConstString(category_name.c_str()), category); local
3931 lldb::TypeCategoryImplSP category; local
3932 DataVisualization::Categories::GetCategory(ConstString(m_options.m_category.c_str()), category); local
[all...]
/freebsd-10.0-release/contrib/groff/src/include/
H A Dlib.h41 #define setlocale(category, locale) do {} while(0)
/freebsd-10.0-release/crypto/heimdal/appl/login/
H A Dlogin_locl.h73 #include <sys/category.h>

Completed in 169 milliseconds

1234