HomeSort by relevance Sort by last modified time
    Searched refs:categories (Results 101 - 125 of 599) sorted by null

1 2 3 45 6 7 8 91011>>

  /libcore/tools/docs/crypto/
format_supported_algorithm_table.py 64 categories = sort_by_name(data['categories'])
68 for category in categories:
73 for category in categories:
196 # Some categories come with a "Supported" and "Enabled" list, and we
202 enabled = sort_by_name(find_by_name(categories, basename + '.Enabled')['algorithms'])
  /packages/apps/Settings/tests/robotests/src/com/android/settings/applications/
InstalledAppCounterTest.java 254 final Set<String> categories = intent.getCategories(); field in class:InstalledAppCounterTest
255 if (categories == null || categories.size() != 1 ||
256 !categories.contains(Intent.CATEGORY_LAUNCHER)) {
  /prebuilts/go/darwin-x86/src/internal/cpu/
cpu.go 39 // since there are no optional categories. There are some exceptions that also
42 // maintain some of the old capability checks for optional categories for
  /prebuilts/go/linux-x86/src/internal/cpu/
cpu.go 39 // since there are no optional categories. There are some exceptions that also
42 // maintain some of the old capability checks for optional categories for
  /external/chromium-trace/catapult/devil/devil/android/
apk_helper.py 117 self.categories = set()
138 activity.categories.add(category.get('android:name'))
159 'android.intent.category.LAUNCHER' in activity.categories):
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
AndroidTargetParser.java 119 ArrayList<String> categories = new ArrayList<String>(); local
121 service_actions, categories);
289 categories.toArray(new String[categories.size()]),
378 * The values are added to the <code>actions</code> and <code>categories</code> lists.
383 * @param categories the list which will receive the category values.
387 ArrayList<String> serviceActions, ArrayList<String> categories) {
394 collectValues(mAndroidTarget.getPath(IAndroidTarget.CATEGORIES),
395 categories); local
  /external/chromium-trace/catapult/systrace/profile_chrome/
perf_tracing_agent.py 50 def __init__(self, device, perf_binary, categories):
62 if categories:
63 cmd += ['--event', ','.join(categories)]
238 'the chosen comma-delimited event categories. '
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regex2.h 172 /* stuff for character categories */
196 size_t ncategories; /* how many character categories */
197 cat_t *categories; /* ->catspace[-CHAR_MIN] */ member in struct:re_guts
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckObjCInstMethSignature.cpp 75 categories::CoreFoundationObjectiveC, os.str(), MethDLoc);
  /external/llvm/lib/Support/
regex2.h 123 /* stuff for character categories */
147 int ncategories; /* how many character categories */
148 cat_t *categories; /* ->catspace[-CHAR_MIN] */ member in struct:re_guts
  /external/swiftshader/third_party/LLVM/lib/Support/
regex2.h 120 /* stuff for character categories */
144 int ncategories; /* how many character categories */
145 cat_t *categories; /* ->catspace[-CHAR_MIN] */ member in struct:re_guts
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
regex2.h 123 /* stuff for character categories */
147 int ncategories; /* how many character categories */
148 cat_t *categories; /* ->catspace[-CHAR_MIN] */ member in struct:re_guts
  /cts/tests/tests/content/src/android/content/cts/
IntentFilterTest.java 958 public final String[] categories; field in class:IntentFilterTest.MatchCondition
973 HashSet<String> categories = null; local
    [all...]
  /cts/hostsidetests/atrace/src/android/atrace/cts/
AtraceHostTest.java 169 * Tests the output of "atrace --list_categories" to ensure required categories exist.
173 String[] categories = output.split("\\r?\\n"); local
177 for (String category : categories) {
190 fail("Expected categories missing from atrace");
  /device/linaro/bootloader/edk2/StdLib/LibC/Locale/
setlocale.c 95 static const char *const categories[_LC_LAST] = { variable
218 * If all categories failed, return NULL; we don't need to back
315 _PathLocale, locname, categories[category]);
380 // new_categories[category], categories[category]);
409 //env = getenv(categories[0]);
413 // env = getenv(categories[category]);
  /external/libmojo/mojo/public/cpp/bindings/lib/
bindings_internal.h 317 template <typename T, MojomTypeCategory categories>
320 static_cast<uint32_t>(MojomTypeTraits<T>::category & categories) != 0;
  /frameworks/support/localbroadcastmanager/src/main/java/androidx/localbroadcastmanager/content/
LocalBroadcastManager.java 219 final Set<String> categories = intent.getCategories(); local
244 categories, "LocalBroadcastManager");
  /system/bt/profile/avrcp/
connection_handler.cc 420 /* get supported categories */
421 LOG(INFO) << __PRETTY_FUNCTION__ << " Get Supported categories";
426 << "Get Supported categories SDP ATTRIBUTES != null";
427 uint16_t categories = sdp_attribute->attr_value.v.u16; local
428 if (categories & AVRC_SUPF_CT_CAT2) {
433 if (categories & AVRC_SUPF_CT_BROWSE) {
459 /* get supported categories */
460 LOG(INFO) << __PRETTY_FUNCTION__ << " Get Supported categories";
465 << "Get Supported categories SDP ATTRIBUTES != null";
466 uint16_t categories = sdp_attribute->attr_value.v.u16 local
    [all...]
  /prebuilts/devtools/tools/lib/
junit-4.12.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
junit-4.12.jar 
  /prebuilts/tools/common/m2/repository/junit/junit/4.12/
junit-4.12.jar 
  /external/libmicrohttpd/src/examples/
demo.c 114 * NULL-terminated array of supported upload categories. Should match HTML
117 static const char * const categories[] = variable
147 * NULL-terminated array of supported upload categories. Should match HTML
336 for (category_idx = 0; NULL != categories[category_idx]; category_idx++)
338 category = categories[category_idx];
demo_https.c 115 * NULL-terminated array of supported upload categories. Should match HTML
118 static const char * const categories[] = variable
148 * NULL-terminated array of supported upload categories. Should match HTML
337 for (category_idx = 0; NULL != categories[category_idx]; category_idx++)
339 category = categories[category_idx];
  /external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/
onehot_categorical_test.py 170 for categories in [2, 10]:
172 p_logits = self._rng.random_sample((batch_size, categories))
173 q_logits = self._rng.random_sample((batch_size, categories))
  /frameworks/base/core/java/com/android/internal/app/
ResolverActivity.java 227 final Set<String> categories = intent.getCategories(); local
229 && categories != null
230 && categories.size() == 1
231 && categories.contains(Intent.CATEGORY_HOME)) {
331 final Set<String> categories = intent.getCategories(); local
336 + (categories != null ? Arrays.toString(categories.toArray()) : ""));
673 Set<String> categories = filterIntent.getCategories(); local
674 if (categories != null) {
675 for (String cat : categories) {
    [all...]

Completed in 649 milliseconds

1 2 3 45 6 7 8 91011>>