Searched defs:category (Results 1 - 25 of 57) sorted by relevance

123

/external/e2fsprogs/intl/
H A Ddcgettext.c47 DCGETTEXT (const char *domainname, const char *msgid, int category) argument
49 return DCIGETTEXT (domainname, msgid, NULL, 0, 0, category);
H A Ddcngettext.c49 int category)
51 return DCIGETTEXT (domainname, msgid1, msgid2, 1, n, category);
47 DCNGETTEXT(const char *domainname, const char *msgid1, const char *msgid2, unsigned long int n, int category) argument
H A Dintl-compat.c77 dcgettext (const char *domainname, const char *msgid, int category) argument
79 return libintl_dcgettext (domainname, msgid, category);
104 int category)
106 return libintl_dcngettext (domainname, msgid1, msgid2, n, category);
102 dcngettext(const char *domainname, const char *msgid1, const char *msgid2, unsigned long int n, int category) argument
/external/bison/lib/
H A Dhard-locale.c41 hard_locale (int category) argument
44 char const *p = setlocale (category, NULL);
61 if (((p = setlocale (category, "C"))
63 || ((p = setlocale (category, "POSIX"))
68 setlocale (category, locale);
/external/harfbuzz/contrib/tables/
H A Dcategory-properties.h12 HB_CharCategory category; member in struct:category_property
/external/harfbuzz/contrib/
H A Dharfbuzz-unicode-glib.c160 HB_CharCategory *category,
162 *category = hb_category_for_char(ch);
159 HB_GetUnicodeCharProperties(HB_UChar32 ch, HB_CharCategory *category, int *combiningClass) argument
H A Dharfbuzz-unicode-icu.c193 HB_CharCategory *category,
195 *category = hb_category_for_char(ch);
192 HB_GetUnicodeCharProperties(HB_UChar32 ch, HB_CharCategory *category, int *combiningClass) argument
H A Dharfbuzz-unicode-tables.c6 #include "tables/category-properties.h"
70 return ((const struct category_property *) vprop)->category;
75 HB_CharCategory *category,
77 *category = code_point_to_category(ch);
74 HB_GetUnicodeCharProperties(HB_UChar32 ch, HB_CharCategory *category, int *combiningClass) argument
/external/astl/tests/
H A Dtest_iterator.cpp74 Category category(_Category) { function in namespace:android
80 category<std::input_iterator_tag>(std::input_iterator_tag) { function in namespace:android
86 category<std::forward_iterator_tag>(std::forward_iterator_tag) { function in namespace:android
92 category<std::bidirectional_iterator_tag>(std::bidirectional_iterator_tag) { function in namespace:android
98 category<std::random_access_iterator_tag>(std::random_access_iterator_tag) { function in namespace:android
102 // Check if the custom method to get the category works as expected.
105 EXPECT_TRUE(category(android::iterator_category(Input())) == INPUT);
106 EXPECT_TRUE(category(android::iterator_category(Forward())) == FORWARD);
107 EXPECT_TRUE(category(android::iterator_category(Bidirectional())) == BIDIRECTIONAL);
108 EXPECT_TRUE(category(androi
[all...]
/external/harfbuzz/src/
H A Dharfbuzz-hebrew.c151 HB_CharCategory category; local
154 HB_GetUnicodeCharProperties(uc[i], &category, &cmb);
155 if (category != HB_Mark_NonSpacing) {
H A Dharfbuzz-greek.c406 HB_CharCategory category; local
409 HB_GetUnicodeCharProperties(uc[i], &category, &cmb);
410 if (category != HB_Mark_NonSpacing) {
/external/harfbuzz/tests/linebreaking/
H A Dharfbuzz-qt.cpp41 void HB_GetUnicodeCharProperties(HB_UChar32 ch, HB_CharCategory *category, int *combiningClass) argument
43 *category = (HB_CharCategory)QChar::category(ch);
49 return (HB_CharCategory)QChar::category(ch);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCheckObjCDealloc.cpp240 const char* category = "Memory (Core Foundation/Objective-C)"; local
266 BR.EmitBasicReport(name, category, os.str(), SDLoc);
/external/stlport/stlport/stl/
H A D_locale.h109 typedef int category; typedef in class:locale
110 _STLP_STATIC_CONSTANT(category, none = 0x000);
111 _STLP_STATIC_CONSTANT(category, collate = 0x010);
112 _STLP_STATIC_CONSTANT(category, ctype = 0x020);
113 _STLP_STATIC_CONSTANT(category, monetary = 0x040);
114 _STLP_STATIC_CONSTANT(category, numeric = 0x100);
115 _STLP_STATIC_CONSTANT(category, time = 0x200);
116 _STLP_STATIC_CONSTANT(category, messages = 0x400);
117 _STLP_STATIC_CONSTANT(category, all = collate | ctype | monetary | numeric | time | messages);
123 locale(const locale&, const char*, category);
[all...]
/external/webkit/Source/JavaScriptCore/wtf/unicode/wince/
H A DUnicodeWinCE.cpp155 CharCategory category(unsigned int c) function in namespace:WTF::Unicode
157 return static_cast<CharCategory>(TO_MASK((__int8) UnicodeCE::category(c)));
/external/clang/lib/StaticAnalyzer/Core/
H A DPathDiagnostic.cpp79 StringRef category)
83 Category(StripTrailingDots(category)) {}
78 PathDiagnostic(StringRef bugtype, StringRef desc, StringRef category) argument
/external/webkit/Source/WebCore/platform/graphics/
H A DFont.cpp496 CharCategory category = Unicode::category(c); local
497 if (category & (Separator_Space | Separator_Line | Separator_Paragraph | Other_NotAssigned | Other_Control | Other_Format))
/external/bluetooth/bluez/audio/
H A Davdtp.h36 uint8_t category; member in struct:avdtp_error
92 uint8_t category; member in struct:avdtp_service_capability
223 struct avdtp_service_capability *avdtp_service_cap_new(uint8_t category,
/external/webkit/Source/WebCore/css/
H A DCSSPrimitiveValue.cpp429 CSSPrimitiveValue::UnitTypes CSSPrimitiveValue::canonicalUnitTypeForCategory(UnitCategory category) argument
432 // in each category (based on unitflags).
433 switch (category) {
473 // We interpret conversion to CSS_NUMBER as conversion to a canonical unit in this value's category.
/external/webkit/Source/JavaScriptCore/wtf/unicode/glib/
H A DUnicodeGLib.h204 inline CharCategory category(UChar32 c) function in namespace:WTF::Unicode
/external/webkit/Source/JavaScriptCore/wtf/unicode/icu/
H A DUnicodeIcu.h203 inline CharCategory category(UChar32 c) function in namespace:WTF::Unicode
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dieee802_11.c1280 mgmt.u.action.category = WLAN_ACTION_SA_QUERY;
1319 resp.u.action.category = WLAN_ACTION_SA_QUERY;
1393 static int robust_action_frame(u8 category) argument
1395 return category != WLAN_ACTION_PUBLIC &&
1396 category != WLAN_ACTION_HT;
1418 robust_action_frame(mgmt->u.action.category))) {
1427 switch (mgmt->u.action.category) {
1473 "handle_action - unknown action category %d or invalid "
1475 mgmt->u.action.category);
1476 if (!(mgmt->da[0] & 0x01) && !(mgmt->u.action.category
[all...]
/external/wpa_supplicant_8/src/ap/
H A Dieee802_11.c1280 mgmt.u.action.category = WLAN_ACTION_SA_QUERY;
1319 resp.u.action.category = WLAN_ACTION_SA_QUERY;
1393 static int robust_action_frame(u8 category) argument
1395 return category != WLAN_ACTION_PUBLIC &&
1396 category != WLAN_ACTION_HT;
1418 robust_action_frame(mgmt->u.action.category))) {
1427 switch (mgmt->u.action.category) {
1473 "handle_action - unknown action category %d or invalid "
1475 mgmt->u.action.category);
1476 if (!(mgmt->da[0] & 0x01) && !(mgmt->u.action.category
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dieee802_11.c1280 mgmt.u.action.category = WLAN_ACTION_SA_QUERY;
1319 resp.u.action.category = WLAN_ACTION_SA_QUERY;
1393 static int robust_action_frame(u8 category) argument
1395 return category != WLAN_ACTION_PUBLIC &&
1396 category != WLAN_ACTION_HT;
1418 robust_action_frame(mgmt->u.action.category))) {
1427 switch (mgmt->u.action.category) {
1473 "handle_action - unknown action category %d or invalid "
1475 mgmt->u.action.category);
1476 if (!(mgmt->da[0] & 0x01) && !(mgmt->u.action.category
[all...]
/external/bluetooth/bluez/tools/
H A Davinfo.c135 uint8_t category; member in struct:avdtp_service_capability
415 switch (cap->category) {

Completed in 474 milliseconds

123