/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/chromium-trace/catapult/systrace/profile_chrome/ |
chrome_controller_unittest.py | 14 categories = \ 18 self.assertEquals(len(categories), 2) 19 self.assertTrue(categories[0]) 20 self.assertTrue(categories[1]) 23 categories = '*' 27 categories,
|
systrace_controller_unittest.py | 13 categories = \ 15 self.assertTrue(categories) 16 assert 'gfx' in ' '.join(categories) 19 categories = ['gfx', 'input', 'view'] 22 categories,
|
perf_controller_unittest.py | 17 categories = \ 19 assert 'cycles' in ' '.join(categories) 25 categories = ['cycles'] 27 categories)
|
main.py | 28 categories = [] 30 categories.append('disabled-by-default-cc.debug') 32 categories.append('disabled-by-default-cc.debug*') 34 categories.append('disabled-by-default-gpu.debug*') 36 categories.append('disabled-by-default-toplevel.flow') 38 categories.append('disabled-by-default-memory') 40 categories.append('disabled-by-default-blink.scheduler') 41 categories.append('disabled-by-default-cc.debug.scheduler') 42 categories.append('disabled-by-default-renderer.scheduler') 44 categories += options.chrome_categories.split(',' [all...] |
/external/chromium-trace/catapult/third_party/flot/ |
jquery.flot.categories.js | 1 /* Flot plugin for plotting textual data or categories. 9 To enable it, you must specify mode: "categories" on the axis with the textual 12 $.plot("#placeholder", data, { xaxis: { mode: "categories" } }); 15 need a different ordering, you can specify "categories" on the axis options 16 and list the categories there: 19 mode: "categories", 20 categories: ["February", "March", "April"] 23 If you need to customize the distances between the categories, you can specify 24 "categories" as an object mapping labels to values 27 mode: "categories", [all...] |
jquery.flot.categories.min.js | 7 (function($){var options={xaxis:{categories:null},yaxis:{categories:null}};function processRawData(plot,series,data,datapoints){var xCategories=series.xaxis.options.mode=="categories",yCategories=series.yaxis.options.mode=="categories";if(!(xCategories||yCategories))return;var format=datapoints.format;if(!format){var s=series;format=[];format.push({x:true,number:true,required:true});format.push({y:true,number:true,required:true});if(s.bars.show||s.lines.show&&s.lines.fill){var autoscale=!!(s.bars.show&&s.bars.zero||s.lines.show&&s.lines.zero);format.push({y:true,number:true,required:false,defaultValue:0,autoscale:autoscale});if(s.bars.horizontal){delete format[format.length-1].y;format[format.length-1].x=true}}datapoints.format=format}for(var m=0;m<format.length;++m){if(format[m].x&&xCategories)format[m].number=false;if(format[m].y&&yCategories)format[m].number=false}}function getNextIndex(categories){var index=-1;for(var v in categories)if(categories[v]>index)index=categories[v];return index+1}function categoriesTickGenerator(axis){var res=[];for(var label in axis.categories){var v=axis.categories[label];if(v>=axis.min&&v<=axis.max)res.push([v,label])}res.sort(function(a,b){return a[0]-b[0]});r (…) [all...] |
/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/catapult/systrace/systrace/ |
systrace_agent.py | 9 A systrace agent contains the command-line options and trace categories to 13 def __init__(self, options, categories): 18 categories: The trace categories to capture. 21 self._categories = categories
|
/external/chromium-trace/catapult/systrace/systrace/agents/ |
ftrace_agent_unittest.py | 49 options, categories = systrace.parse_options(SYSTRACE_HOST_CMD_DEFAULT) 50 agent = ftrace_agent.FtraceAgent(options, categories, io_interface) 53 # check for no available categories 56 options, categories = systrace.parse_options(SYSTRACE_HOST_CMD_DEFAULT) 57 agent = ftrace_agent.FtraceAgent(options, categories, io_interface) 66 options, categories = systrace.parse_options(SYSTRACE_HOST_CMD_DEFAULT) 67 agent = ftrace_agent.FtraceAgent(options, categories, io_interface) 78 options, categories = systrace.parse_options(systrace_cmd) 79 agent = ftrace_agent.FtraceAgent(options, categories, io_interface) 112 options, categories = systrace.parse_options(systrace_cmd [all...] |
atrace_agent_unittest.py | 16 CATEGORIES = ['sched', 'gfx', 'view', 'wm'] 20 DEVICE_SERIAL] + CATEGORIES 21 TRACE_CMD = (ADB_SHELL + ATRACE_ARGS + CATEGORIES) 33 CATEGORIES) 37 'rm', '/data/misc/boottrace/categories']) 59 options, categories = systrace.parse_options(SYSTRACE_CMD) 60 agent = atrace_agent.AtraceAgent(options, categories) 104 options, categories = systrace.parse_options(STOP_FIX_UPS) 105 agent = atrace_agent.AtraceAgent(options, categories) 111 options, categories = systrace.parse_options(SYSTRACE_LIST_CATEGORIES_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]);
|
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/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, BOOLEAN browse_supported, 252 if (!mask || !categories) 261 AVRC_AddRecord(service_uuid, service_name, provider_name, categories, 271 bta_ar_cb.ct_categories [mask - 1] = categories; 272 categories = bta_ar_cb.ct_categories[0]|bta_ar_cb.ct_categories[1]; 276 AVRC_AddRecord(service_uuid, service_name, provider_name, categories, 283 * Change supported categories on the second one */ 285 UINT16_TO_BE_STREAM(p, categories); 304 UINT16 categories = 0; local 325 categories = bta_ar_cb.ct_categories[0]|bta_ar_cb.ct_categories[1] [all...] |
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/ |
trace_profiler.py | 17 categories=None): 23 if categories: 24 categories_with_flow += ',%s' % categories 64 categories='disabled-by-default-cc.debug*') 76 categories='disabled-by-default-*')
|
/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():
|
/system/bt/bta/include/ |
bta_ar_api.h | 122 char *p_provider_name, UINT16 categories, tBTA_SYS_ID sys_id,
|