/external/junit/src/org/junit/experimental/categories/ |
D | Categories.java | 4 package org.junit.experimental.categories; 111 List<Class<?>> categories= categories(description); in hasCorrectCategoryAnnotation() local 112 if (categories.isEmpty()) in hasCorrectCategoryAnnotation() 114 for (Class<?> each : categories) in hasCorrectCategoryAnnotation() 117 for (Class<?> each : categories) in hasCorrectCategoryAnnotation() 123 private List<Class<?>> categories(Description description) { in categories() method in Categories.CategoryFilter 124 ArrayList<Class<?>> categories= new ArrayList<Class<?>>(); in categories() local 125 categories.addAll(Arrays.asList(directCategories(description))); in categories() 126 categories.addAll(Arrays.asList(directCategories(parentDescription(description)))); in categories() 127 return categories; in categories()
|
D | Category.java | 1 package org.junit.experimental.categories;
|
/external/chromium-trace/ |
D | run_unittest.py | 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) 119 agent = atrace_agent.AtraceLegacyAgent(options, categories)
|
D | systrace.py | 86 options, categories = parser.parse_args(argv[1:]) 97 return (options, categories) 132 def create_agents(options, categories): argument 162 agent = module.try_create_agent(options, categories) 170 options, categories = parse_options(sys.argv) 171 agents = create_agents(options, categories)
|
D | systrace_agent.py | 12 def __init__(self, options, categories): argument 20 self._categories = categories
|
/external/mesa3d/src/mapi/glapi/gen/ |
D | 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])
|
/external/lldb/source/Plugins/Process/MacOSX-Kernel/ |
D | ProcessKDPLog.cpp | 49 ProcessKDPLog::DisableLog (const char **categories, Stream *feedback_strm) in DisableLog() argument 56 if (categories[0] != NULL) in DisableLog() 59 for (size_t i = 0; categories[i] != NULL; ++i) in DisableLog() 61 const char *arg = categories[i]; in DisableLog() 96 ProcessKDPLog::EnableLog (StreamSP &log_stream_sp, uint32_t log_options, const char **categories, S… in EnableLog() argument 116 for (size_t i=0; categories[i] != NULL; ++i) in EnableLog() 118 const char *arg = categories[i]; in EnableLog()
|
D | 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_priv…
|
/external/lldb/source/Plugins/Process/gdb-remote/ |
D | ProcessGDBRemoteLog.cpp | 59 ProcessGDBRemoteLog::DisableLog (const char **categories, Stream *feedback_strm) in DisableLog() argument 66 if (categories[0] != NULL) in DisableLog() 69 for (size_t i = 0; categories[i] != NULL; ++i) in DisableLog() 71 const char *arg = categories[i]; in DisableLog() 107 …EnableLog (StreamSP &log_stream_sp, uint32_t log_options, const char **categories, Stream *feedbac… in EnableLog() argument 127 for (size_t i=0; categories[i] != NULL; ++i) in EnableLog() 129 const char *arg = categories[i]; in EnableLog()
|
D | 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_priv…
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowIntent.java | 37 private final Set<String> categories = new HashSet<String>(); field in ShadowIntent 63 categories.addAll(other.categories); in __constructor__() 108 categories.add(category); in addCategory() 114 categories.remove(category); in removeCategory() 119 return categories.contains(category); in hasCategory() 124 return categories; in getCategories() 441 if (!other.categories.isEmpty() in fillIn() 442 && (categories.isEmpty() || (flags & FILL_IN_CATEGORIES) != 0)) { in fillIn() 443 categories.addAll(other.categories); in fillIn() 554 … if (categories != null ? !categories.equals(o.categories) : o.categories != null) return false; in realIntentEquals() [all …]
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
D | LogChannelDWARF.cpp | 87 LogChannelDWARF::Disable (const char **categories, Stream *feedback_strm) in Disable() argument 93 for (size_t i = 0; categories[i] != NULL; ++i) in Disable() 95 const char *arg = categories[i]; in Disable() 128 …const char **categories // The categories to enable within this logging stream, if empty, enable … in Enable() argument 141 for (size_t i = 0; categories[i] != NULL; ++i) in Enable() 143 const char *arg = categories[i]; in Enable()
|
D | 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, ena…
|
/external/lldb/include/lldb/Core/ |
D | Log.h | 63 typedef void (*DisableCallback) (const char **categories, Stream *feedback_strm); 66 const char **categories, 95 const char **categories, 215 Disable (const char **categories, Stream *feedback_strm) = 0; 221 …const char **categories) = 0;// The categories to enable within this logging stream, if empty, ena…
|
/external/lldb/source/ |
D | lldb-log.cpp | 105 lldb_private::DisableLog (const char **categories, Stream *feedback_strm) in DisableLog() argument 112 if (categories[0] != NULL) in DisableLog() 115 for (size_t i = 0; categories[i] != NULL; ++i) in DisableLog() 117 const char *arg = categories[i]; in DisableLog() 164 lldb_private::EnableLog (StreamSP &log_stream_sp, uint32_t log_options, const char **categories, St… in EnableLog() argument 185 for (size_t i=0; categories[i] != NULL; ++i) in EnableLog() 187 const char *arg = categories[i]; in EnableLog()
|
/external/regex-re2/re2/testing/ |
D | unicode_test.py | 178 for category, codes in self.categories.items(): 189 self.categories = unicode.Categories(unicode_dir=_UNICODE_DIR) 197 self.assertTrue(ord("a") in self.categories["L"]) 198 self.assertTrue(ord("0") in self.categories["N"]) 199 self.assertTrue(0x8B5A in self.categories["L"]) 200 self.assertTrue(0x6C38 in self.categories["L"]) 201 self.assertTrue(0x92D2 in self.categories["L"])
|
/external/chromium-trace/agents/ |
D | atrace_agent.py | 50 def try_create_agent(options, categories): argument 52 return AtraceAgent(options, categories) 56 return AtraceAgent(options, categories) 58 return AtraceLegacyAgent(options, categories) 62 def __init__(self, options, categories): argument 63 super(AtraceAgent, self).__init__(options, categories) 328 categories = tags + self._categories 329 print 'Collecting data with following categories:', ' '.join(categories) 419 categories = [c.split('-')[0].strip() 421 return [c for c in categories if c in DEFAULT_CATEGORIES]
|
/external/regex-re2/re2/ |
D | unicode.py | 284 categories = {} 289 categories.setdefault(category, []).extend(codes) 293 categories.setdefault(short, []).extend(codes) 296 return categories
|
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
D | BugType.h | 66 : BugType(check, name, categories::LogicError), desc(description) {} in BuiltinBug() 70 : BugType(checker, name, categories::LogicError), desc(description) {} in BuiltinBug() 73 : BugType(checker, name, categories::LogicError), desc(name) {} in BuiltinBug()
|
D | CommonBugCategories.h | 16 namespace categories {
|
/external/lldb/source/Core/ |
D | Log.cpp | 370 const char **categories, in EnableAllLogChannels() argument 378 pos->second.enable (log_stream_sp, log_options, categories, feedback_strm); in EnableAllLogChannels() 384 channel_pos->second->Enable (log_stream_sp, log_options, feedback_strm, categories); in EnableAllLogChannels() 415 const char *categories[1] = {NULL}; in DisableAllLogChannels() local 418 pos->second.disable (categories, feedback_strm); in DisableAllLogChannels() 423 channel_pos->second->Disable (categories, feedback_strm); in DisableAllLogChannels()
|
/external/lldb/include/lldb/ |
D | 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 *fe…
|
/external/mesa3d/src/mesa/main/ |
D | APIspec.py | 79 self.categories = [] 89 self.categories.append(cat) 101 self.categories) 125 def __init__(self, tmpl_node, func_node, force_skip_desc=False, categories=[]): argument 138 self._categories = categories 442 def __init__(self, desc_node, categories=[]): argument 443 self._categories = categories
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | IdenticalExprChecker.cpp | 74 categories::LogicError, in reportIdenticalExpr() 127 categories::LogicError, in VisitIfStmt() 158 categories::LogicError, in VisitIfStmt() 246 categories::LogicError, Message, ELoc); in checkComparisonOp() 268 categories::LogicError, in VisitConditionalOperator()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | CommonBugCategories.cpp | 13 namespace clang { namespace ento { namespace categories { namespace
|