Searched refs:category (Results 1 - 6 of 6) sorted by relevance

/libcore/tools/docs/crypto/
H A Dformat_supported_algorithm_table.py36 def has_notes(category):
37 for algorithm in category['algorithms']:
55 parser.add_argument('--category',
57 help='The category to display, may be specified multiple times')
68 for category in categories:
69 if not category['name'].endswith('.Enabled'):
71 '<code>{name}</code></a></li>'.format(**category))
73 for category in categories:
74 if args.category and category['nam
[all...]
H A Dupdate_crypto_support.py123 followed by any number of lines of an algorithm category and algorithm name
153 category, algorithm = line.split()
154 if category not in SUPPORTED_CATEGORIES:
157 current_data[category].append(normalized_name)
181 from algorithm category to list of algorithm names.
187 for category in SUPPORTED_CATEGORIES:
188 prev_category = find_by_name(prev_data['categories'], category)
190 prev_category = {'name': category, 'algorithms': []}
192 current_data[category] if category i
[all...]
/libcore/metrictests/memory/host/src/libcore/heapmetrics/
H A DHeapCategorization.java119 * object is in at least one category, but objects may be in more than one of the above.)
131 * Returns the name for a metric using the given prefix and a category-specific suffix.
159 * heaps broken down by category.
174 HeapCategory category = categorizeInternedString(rooted.asString());
175 incrementSize(rooted, category);
235 * Returns a category for an interned {@link String} with the given value. The categorization is
335 * Increments the stored size for the given category by the retain size of the given rooted
338 private void incrementSize(AhatInstance rooted, HeapCategory category) { argument
343 if (sizesByCategory.containsKey(category)) {
344 sizesByCategory.put(category, sizesByCategor
[all...]
/libcore/luni/src/test/java/libcore/xml/
H A DXsltXPathConformanceTestSuite.java189 * <test-case category="XSLT-Result-Tree" id="attribset_attribset01">
208 String category = testCaseElement.getAttribute("category");
210 String name = category + "." + id;
263 return new XsltTest(category, id, purpose, spec, principalData,
311 private final String category; field in class:XsltXPathConformanceTestSuite.XsltTest
329 XsltTest(String category, String id, String purpose, String spec, argument
333 this.category = category;
404 return category
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DLocale.java914 * @param category - the specified category to get the default locale
915 * @throws NullPointerException - if category is null
921 public static Locale getDefault(Locale.Category category) { argument
923 switch (category) {
928 defaultDisplayLocale = initDefault(category);
937 defaultFormatLocale = initDefault(category);
987 private static Locale initDefault(Locale.Category category) { argument
991 System.getProperty(category.languageKey, defaultLocale.getLanguage()),
992 System.getProperty(category
1065 setDefault(Locale.Category category, Locale newLocale) argument
[all...]
/libcore/benchmarks/src/benchmarks/regression/
H A DR.java1422 public static final int category = 0; field in class:R

Completed in 119 milliseconds