HomeSort by relevance Sort by last modified time
    Searched refs:categories (Results 1 - 25 of 301) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/lib/StaticAnalyzer/Core/
CommonBugCategories.cpp 1 //=--- CommonBugCategories.cpp - Provides common issue categories -*- C++ -*-=//
13 namespace clang { namespace ento { namespace categories { namespace in namespace:clang::ento
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
CommonBugCategories.h 1 //=--- CommonBugCategories.h - Provides common issue categories -*- C++ -*-===//
16 namespace categories { namespace in namespace:clang::ento
BugType.h 66 : BugType(check, name, categories::LogicError), desc(description) {}
70 : BugType(checker, name, categories::LogicError), desc(description) {}
73 : BugType(checker, name, categories::LogicError), desc(name) {}
  /external/junit/src/org/junit/experimental/categories/
Category.java 1 package org.junit.experimental.categories;
7 * Marks a test class or test method as belonging to one or more categories of tests.
10 * This annotation is only interpreted by the Categories runner (at present).
38 * For more usage, see code example on {@link Categories}.
Categories.java 4 package org.junit.experimental.categories;
25 * Categories must be annotated on the direct method or class.
56 * @RunWith(Categories.class)
59 * // Note that Categories is a kind of Suite
64 public class Categories extends Suite {
111 List<Class<?>> categories= categories(description); local
112 if (categories.isEmpty())
114 for (Class<?> each : categories)
117 for (Class<?> each : categories)
123 private List<Class<?>> categories(Description description) { method in class:Categories.CategoryFilter
124 ArrayList<Class<?>> categories= new ArrayList<Class<?>>(); local
    [all...]
  /external/chromium-trace/
systrace_agent.py 8 A systrace agent contains the command-line options and trace categories to
12 def __init__(self, options, categories):
17 categories: The trace categories to capture.
20 self._categories = categories
run_unittest.py 16 CATEGORIES = ['sched', 'gfx', 'view', 'wm']
20 DEVICE_SERIAL] + CATEGORIES
21 TRACE_CMD = (ADB_SHELL + ATRACE_ARGS + CATEGORIES +
56 options, categories = systrace.parse_options(SYSTRACE_CMD)
57 agent = atrace_agent.AtraceAgent(options, categories)
104 options, categories = systrace.parse_options([])
105 agent = atrace_agent.AtraceAgent(options, categories)
110 options, categories = systrace.parse_options(SYSTRACE_LIST_CATEGORIES_CMD)
111 agent = atrace_agent.AtraceAgent(options, categories)
118 options, categories = systrace.parse_options(SYSTRACE_CMD
    [all...]
  /frameworks/base/services/core/java/com/android/server/firewall/
CategoryFilter.java 39 Set<String> categories = intent.getCategories(); local
40 if (categories == null) {
43 return categories.contains(mCategoryName);
  /developers/build/prebuilts/gradle/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/utils/
MediaIDHelper.java 36 public static String createMediaID(String musicID, String... categories) {
43 if (categories != null && categories.length > 0) {
44 sb.append(categories[0]);
45 for (int i=1; i < categories.length; i++) {
46 sb.append(CATEGORY_SEPARATOR).append(categories[i]);
  /developers/samples/android/media/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/utils/
MediaIDHelper.java 36 public static String createMediaID(String musicID, String... categories) {
43 if (categories != null && categories.length > 0) {
44 sb.append(categories[0]);
45 for (int i=1; i < categories.length; i++) {
46 sb.append(CATEGORY_SEPARATOR).append(categories[i]);
  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/utils/
MediaIDHelper.java 36 public static String createMediaID(String musicID, String... categories) {
43 if (categories != null && categories.length > 0) {
44 sb.append(categories[0]);
45 for (int i=1; i < categories.length; i++) {
46 sb.append(CATEGORY_SEPARATOR).append(categories[i]);
  /system/bt/bta/ar/
bta_ar.c 246 UINT16 categories, tBTA_SYS_ID sys_id)
251 if (!mask || !categories)
260 AVRC_AddRecord(service_uuid, service_name, provider_name, categories, bta_ar_cb.sdp_tg_handle);
268 bta_ar_cb.ct_categories [mask - 1] = categories;
269 categories = bta_ar_cb.ct_categories[0]|bta_ar_cb.ct_categories[1];
273 AVRC_AddRecord(service_uuid, service_name, provider_name, categories, bta_ar_cb.sdp_ct_handle);
279 * Change supported categories on the second one */
281 UINT16_TO_BE_STREAM(p, categories);
300 UINT16 categories = 0; local
321 categories = bta_ar_cb.ct_categories[0]|bta_ar_cb.ct_categories[1]
    [all...]
  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
ProcessKDPLog.h 42 DisableLog (const char **categories, lldb_private::Stream *feedback_strm);
45 EnableLog (lldb::StreamSP &log_stream_sp, uint32_t log_options, const char **categories, lldb_private::Stream *feedback_strm);
ProcessKDPLog.cpp 49 ProcessKDPLog::DisableLog (const char **categories, Stream *feedback_strm)
56 if (categories[0] != NULL)
59 for (size_t i = 0; categories[i] != NULL; ++i)
61 const char *arg = categories[i];
96 ProcessKDPLog::EnableLog (StreamSP &log_stream_sp, uint32_t log_options, const char **categories, Stream *feedback_strm)
116 for (size_t i=0; categories[i] != NULL; ++i)
118 const char *arg = categories[i];
156 strm->Printf ("Logging categories for '%s':\n"
157 " all - turn on all available logging categories\n"
161 " default - enable the default set of logging categories for liblldb\n
    [all...]
  /external/lldb/source/Plugins/Process/gdb-remote/
ProcessGDBRemoteLog.h 45 DisableLog (const char **categories, lldb_private::Stream *feedback_strm);
48 EnableLog (lldb::StreamSP &log_stream_sp, uint32_t log_options, const char **categories, lldb_private::Stream *feedback_strm);
ProcessGDBRemoteLog.cpp 59 ProcessGDBRemoteLog::DisableLog (const char **categories, Stream *feedback_strm)
66 if (categories[0] != NULL)
69 for (size_t i = 0; categories[i] != NULL; ++i)
71 const char *arg = categories[i];
107 ProcessGDBRemoteLog::EnableLog (StreamSP &log_stream_sp, uint32_t log_options, const char **categories, Stream *feedback_strm)
127 for (size_t i=0; categories[i] != NULL; ++i)
129 const char *arg = categories[i];
167 strm->Printf ("Logging categories for '%s':\n"
168 " all - turn on all available logging categories\n"
172 " default - enable the default set of logging categories for liblldb\n
    [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
LogChannelDWARF.h 62 Disable (const char** categories, lldb_private::Stream *feedback_strm);
71 const char **categories); // The categories to enable within this logging stream, if empty, enable default set
LogChannelDWARF.cpp 87 LogChannelDWARF::Disable (const char **categories, Stream *feedback_strm)
93 for (size_t i = 0; categories[i] != NULL; ++i)
95 const char *arg = categories[i];
128 const char **categories // The categories to enable within this logging stream, if empty, enable default set
141 for (size_t i = 0; categories[i] != NULL; ++i)
143 const char *arg = categories[i];
175 strm->Printf ("Logging categories for '%s':\n"
176 " all - turn on all available logging categories\n"
  /external/mesa3d/src/mapi/glapi/gen/
gl_procs.py 146 categories = {}
151 if not categories.has_key(cat):
152 categories[cat] = []
155 categories[cat].append(proto)
156 if categories:
160 keys = categories.keys()
164 print "\n".join(categories[key])
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/systrace/
SystraceVersionDetector.java 87 String[] categories = listCategoriesOutput.split("\n"); local
88 List<SystraceTag> tags = new ArrayList<SystraceTag>(categories.length);
91 for (String category : categories) {
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
categoryquery.py 28 Query MLS Categories
43 """Generator which yields all matching categories."""
48 for cat in self.policy.categories():
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/setools/
categoryquery.py 28 Query MLS Categories
43 """Generator which yields all matching categories."""
48 for cat in self.policy.categories():
  /system/bt/bta/include/
bta_ar_api.h 122 char *p_provider_name, UINT16 categories, tBTA_SYS_ID sys_id);
  /external/lldb/include/lldb/
lldb-private-log.h 80 DisableLog (const char **categories, Stream *feedback_strm);
83 EnableLog (lldb::StreamSP &log_stream_sp, uint32_t log_options, const char **categories, Stream *feedback_strm);
  /external/lldb/include/lldb/Core/
Log.h 63 typedef void (*DisableCallback) (const char **categories, Stream *feedback_strm);
66 const char **categories,
95 const char **categories,
213 // categories is a an array of chars that ends with a NULL element.
215 Disable (const char **categories, Stream *feedback_strm) = 0;
221 const char **categories) = 0;// The categories to enable within this logging stream, if empty, enable default set

Completed in 1417 milliseconds

1 2 3 4 5 6 7 8 91011>>