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

123456

/external/chromium_org/chrome/common/extensions/docs/examples/api/devtools/audits/broken-links/
H A Ddevtools.js5 var category = chrome.experimental.devtools.audits.addCategory( variable
7 category.onAuditStarted.addListener(function callback(auditResults) {
/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/harfbuzz/contrib/tables/
H A Dcategory-properties.h12 HB_CharCategory category; member in struct:category_property
/external/bluetooth/bluedroid/bta/av/
H A Dbta_av_ci.c70 void bta_av_ci_setconfig(tBTA_AV_HNDL hndl, UINT8 err_code, UINT8 category, argument
81 p_buf->category = category;
/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/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/chromium_org/cc/debug/
H A Dtraced_value.cc25 const char* category,
29 dict->SetString("cat", category);
24 MakeDictIntoImplicitSnapshotWithCategory( const char* category, base::DictionaryValue* dict, const char* object_name, const void* id) argument
/external/chromium_org/tools/win/ChromeDebug/ChromeDebug/
H A DProcessCategory.cs26 public static string ToGroupTitle(this ProcessCategory category) { argument
27 switch (category) {
33 return category.ToString();
/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());
/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/chromium_org/chrome/browser/ui/webui/performance_monitor/
H A Dperformance_monitor_l10n.cc56 const EventCategory category) {
58 switch (category) {
76 const EventCategory category) {
78 switch (category) {
262 const MetricCategory category) {
265 switch (category) {
286 const MetricCategory category) {
289 switch (category) {
55 GetLocalizedStringFromEventCategory( const EventCategory category) argument
75 GetLocalizedStringForEventCategoryDescription( const EventCategory category) argument
261 GetLocalizedStringFromMetricCategory( const MetricCategory category) argument
285 GetLocalizedStringForMetricCategoryDescription( const MetricCategory category) argument
/external/chromium_org/chrome/utility/media_galleries/
H A Dpicasa_album_table_reader.cc79 uint32 category = kAlbumCategoryInvalid; local
85 if (!category_column.ReadUInt32(i, &category) ||
94 if (category == kAlbumCategoryAlbum) {
102 } else if (category == kAlbumCategoryFolder) {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DTimelineEventOverview.js44 for (var category in categories) {
45 this._fillStyles[category] = WebInspector.TimelinePresentationModel.createFillStyleForCategory(this._context, 0, WebInspector.TimelineEventOverview._stripGradientHeight, categories[category]);
46 categories[category].addEventListener(WebInspector.TimelineCategory.Events.VisibilityChanged, this._onCategoryVisibilityChanged, this);
86 var category = WebInspector.TimelinePresentationModel.categoryForRecord(record);
87 if (category.overviewStripGroupIndex < 0)
89 var bar = lastBarByGroup[category.overviewStripGroupIndex];
92 if (bar && bar.category === category && bar.end + barsMergeThreshold >= recordStart) {
98 this._renderBar(bar.start, bar.end, stripHeight, bar.category);
[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) {
/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/harfbuzz_ng/src/hb-old/
H A Dharfbuzz-hebrew.c151 HB_CharCategory category; local
154 HB_GetUnicodeCharProperties(uc[i], &category, &cmb);
155 if (category != HB_Mark_NonSpacing) {
/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/chromium_org/base/debug/
H A Dtrace_event_memory.h91 const char* category; member in struct:base::debug::ScopedTraceMemory::ScopeData
95 // Memory for |category| and |name| must be static, for example, literal
97 ScopedTraceMemory(const char* category, const char* name) { argument
100 Initialize(category, name);
118 void Initialize(const char* category, const char* name);
161 #define INTERNAL_TRACE_MEMORY(category, name) \
162 base::debug::ScopedTraceMemory INTERNAL_TRACE_MEMORY_ID(category, name);
164 #define INTERNAL_TRACE_MEMORY(category, name)

Completed in 1116 milliseconds

123456