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

1234

/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/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
H A DUCharacterCategory.java13 * Enumerated Unicode category types from the UnicodeData.txt file.
33 * Gets the name of the argument category
34 * @param category to retrieve name
35 * @return category name
38 public static String toString(int category) argument
40 switch (category) {
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DPreferenceCategoryTest.java19 private PreferenceCategory category; field in class:PreferenceCategoryTest
24 category = new PreferenceCategory(new Activity());
25 shadow = Robolectric.shadowOf(category);
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DBasicRegisterMapper.java113 * @param category {@code 1..2;} width of reg
115 public void addMapping(int oldReg, int newReg, int category) { argument
125 if (runningCountNewRegisters < (newReg + category)) {
126 runningCountNewRegisters = newReg + category;
H A DInterferenceRegisterMapper.java65 public void addMapping(int oldReg, int newReg, int category) { argument
66 super.addMapping(oldReg, newReg, category);
70 if (category == 2) {
81 * @param category category of old namespace register
84 public boolean interferes(int oldReg, int newReg, int category) { argument
92 } else if (category == 1) {
96 || (interferes(oldReg, newReg+1, category-1));
133 * pinned to the specified new-namespace reg + category. Takes into
134 * account the category o
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
H A DPropertyCategoryProvider.java11 package org.eclipse.wb.internal.core.model.property.category;
H A DPropertyCategoryProviders.java11 package org.eclipse.wb.internal.core.model.property.category;
48 * Returns category forced by user, may be <code>null</code>.
60 * Returns first not <code>null</code> category returned by provider.
66 PropertyCategory category = provider.getCategory(property);
67 if (category != null) {
68 return category;
71 throw new IllegalStateException("Can not provide category for " + property.getTitle());
H A DPropertyCategory.java11 package org.eclipse.wb.internal.core.model.property.category;
17 * Describes category of {@link Property}.
24 * "Normal" category, used for properties that should be displayed without any effect.
28 * "Preferred" category, for properties that are most useful for component.
32 * "Advanced" category, for properties that are rarely used, visible if modified, even if not
37 * "Advanced" category, for properties that are rarely used, visible only if enabled.
41 * "Hidden" category, for properties that should not be displayed.
101 PropertyCategory category = (PropertyCategory) obj;
102 return m_priority == category.m_priority;
154 * @return the priority of this category
[all...]
/external/clang/tools/libclang/
H A DCXLoadedDiagnostic.h27 severity(0), category(0) {}
43 /// \brief Return the category of the diagnostic.
46 /// \brief Return the category string of the diagnostic.
90 unsigned category; member in class:clang::CXLoadedDiagnostic
/external/bison/lib/
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
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
H A DProperty.java15 import org.eclipse.wb.internal.core.model.property.category.PropertyCategory;
87 public final void setCategory(PropertyCategory category) { argument
88 m_category = category;
/external/kernel-headers/original/uapi/sound/
H A Dfirewire.h33 __be32 category; member in struct:snd_efw_transaction
/external/libxml2/example/
H A Dgjobread.c99 xmlChar *category; member in struct:job
140 ret->category =
162 if (cur->category != NULL) printf("category: %s\n", cur->category);
/external/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...]
/external/harfbuzz_ng/src/hb-ucdn/
H A Ducdn.c22 unsigned char category; member in struct:__anon5441
184 return get_ucd_record(code)->category;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DRBBISetBuilder.java416 // getFirstChar Given a runtime RBBI character category, find
418 // in the category.
420 int getFirstChar(int category) { argument
424 if (rlRange.fNum == category) {
/external/lldb/include/lldb/DataFormatters/
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);
/external/lldb/source/Core/
H A DTimer.cpp78 Timer::Timer (const char *category, const char *format, ...) : argument
79 m_category (category),
154 // Keep total results for each category so we can dump results.
/external/llvm/unittests/ADT/
H A DAPFloatTest.cpp1640 int category; member in struct:__anon11194::__anon11196
1891 EXPECT_TRUE((int)x.getCategory() == SpecialCaseTests[i].category);
1928 int category; member in struct:__anon11194::__anon11197
2179 EXPECT_TRUE((int)x.getCategory() == SpecialCaseTests[i].category);
2217 int category; member in struct:__anon11194::__anon11198
2468 EXPECT_TRUE((int)x.getCategory() == SpecialCaseTests[i].category);
2506 int category; member in struct:__anon11194::__anon11199
2757 EXPECT_TRUE((int)x.getCategory() == SpecialCaseTests[i].category);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DRegisterType.java43 public final byte category; field in class:RegisterType
46 private RegisterType(byte category, @Nullable TypeProto type) { argument
47 assert ((category == REFERENCE || category == UNINIT_REF || category == UNINIT_THIS) && type != null) ||
48 ((category != REFERENCE && category != UNINIT_REF && category != UNINIT_THIS) && type == null);
50 this.category = category;
311 getRegisterType(byte category, @Nullable TypeProto typeProto) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dp2p_supplicant.h168 u8 category, const u8 *data, size_t len, int freq);
237 u8 category, const u8 *data, size_t len,
234 wpas_p2p_rx_action(struct wpa_supplicant *wpa_s, const u8 *da, const u8 *sa, const u8 *bssid, u8 category, const u8 *data, size_t len, int freq) argument
/external/chromium-trace/trace-viewer/third_party/Paste/paste/
H A Dhttpheaders.py203 ``category``
276 category = 'general' variable in class:HTTPHeader
318 def __new__(cls, name, category=None, reference=None, version=None):
332 assert self.category == category, \
333 "duplicate registration with different category"
341 self.category = category or self.category
346 'response': 3, 'entity': 4 }[self.category]
[all...]

Completed in 712 milliseconds

1234