HomeSort by relevance Sort by last modified time
    Searched defs:features (Results 1 - 25 of 619) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test___future__.py 8 features = __future__.all_feature_names variable
14 given_feature_names = features[:]
27 for feature in features:
  /external/guava/guava-testlib/src/com/google/common/collect/testing/features/
TesterAnnotation.java 17 package com.google.common.collect.testing.features;
Feature.java 17 package com.google.common.collect.testing.features;
24 * Base class for enumerating the features of an interface to be tested.
26 * @param <T> The interface whose features are to be enumerated.
31 /** Returns the set of features that are implied by this feature. */
CollectionSize.java 17 package com.google.common.collect.testing.features;
30 * When describing the features of the collection produced by a given generator
34 * should be built. (In a typical case, the features should include {@link
36 * from those of other Collection-related features such as {@link
ConflictingRequirementsException.java 17 package com.google.common.collect.testing.features;
ListFeature.java 17 package com.google.common.collect.testing.features;
29 * Optional features of classes derived from {@code List}.
48 /** Features supported by lists where only removal is allowed. */
  /external/python/cpython2/Lib/test/
test___future__.py 7 features = __future__.all_feature_names variable
13 given_feature_names = features[:]
26 for feature in features:
  /external/python/cpython3/Lib/test/
test___future__.py 6 features = __future__.all_feature_names variable
12 given_feature_names = features[:]
25 for feature in features:
  /external/syslinux/com32/hdt/
hdt-menu-summary.c 55 char features[255]={0}; local
60 sprintf(features, "%d core%s, %dK L2 Cache", hardware->cpu.num_cores,
63 strcat(features, ", 64bit");
65 strcat(features, ", 32bit");
67 strcat(features, ", SMP");
69 strcat(features, ", HwVIRT");
70 snprintf(buffer, sizeof buffer, "%s", features);
71 snprintf(statbuffer, sizeof statbuffer, "Features : %s", features);
hdt-cli-cpu.c 40 char features[81]; local
58 memset(features, 0, sizeof(features));
59 snprintf(features, sizeof(features), " Features : %d Mhz : ",
62 strcat(features, "x86_64 64bit ");
64 strcat(features, "x86 32bit ");
66 strcat(features, "SMP ");
70 strcat(features, "HwVIRT ")
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test___future__.py 8 features = __future__.all_feature_names variable
14 given_feature_names = features[:]
27 for feature in features:
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test___future__.py 8 features = __future__.all_feature_names variable
14 given_feature_names = features[:]
27 for feature in features:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test___future__.py 8 features = __future__.all_feature_names variable
14 given_feature_names = features[:]
27 for feature in features:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test___future__.py 8 features = __future__.all_feature_names variable
14 given_feature_names = features[:]
27 for feature in features:
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/files/
QuickViewIntentBuilderTest.java 48 String[] features = intent.getStringArrayExtra(Intent.EXTRA_QUICK_VIEW_FEATURES); local
49 assertEquals(0, features.length);
59 Set<String> features = new HashSet<>( local
62 assertEquals("Unexpected features set: " + features, 6, features.size());
63 assertTrue(features.contains(QuickViewConstants.FEATURE_VIEW));
64 assertTrue(features.contains(QuickViewConstants.FEATURE_EDIT));
65 assertTrue(features.contains(QuickViewConstants.FEATURE_DELETE));
66 assertTrue(features.contains(QuickViewConstants.FEATURE_SEND))
    [all...]
  /external/webrtc/webrtc/common_audio/vad/
vad_filterbank_unittest.cc 36 int16_t features[kNumChannels]; local
51 features));
54 features[k]);
67 features));
69 EXPECT_EQ(kOffsetVector[k], features[k]);
83 features));
85 EXPECT_EQ(kOffsetVector[k], features[k]);
  /external/webrtc/webrtc/libjingle/xmpp/
mucroomdiscoverytask.cc 31 std::set<std::string> features; local
35 SignalResult(this, false, "", "", features, extended_info);
51 features.insert(feature->Attr(QN_VAR));
63 SignalResult(this, true, name, conversation_id, features, extended_info);
  /frameworks/base/core/java/android/content/pm/
FeatureGroupInfo.java 22 * A set of features that can be requested by an application. This corresponds
29 * The list of features that are required by this group.
33 public FeatureInfo[] features; field in class:FeatureGroupInfo
39 features = other.features;
49 dest.writeTypedArray(features, flags);
56 group.features = source.createTypedArray(FeatureInfo.CREATOR);
  /frameworks/compile/libbcc/lib/
CompilerConfig.cpp 38 llvm::StringMap<bool> features; local
39 if (llvm::sys::getHostCPUFeatures(features)) {
40 for (const auto& f : features)
109 llvm::StringMap<bool> features; local
110 llvm::sys::getHostCPUFeatures(features);
132 if (features.count("hwdiv-arm") && features["hwdiv-arm"])
135 if (features.count("hwdiv") && features["hwdiv"])
141 // 'features' would correspond to features in an x86 host
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
SAXFactoryImpl.java 32 * The easiest way to test validity of features to set is to use
42 * This Map contains explicitly set features that can be succesfully
50 private HashMap features = null; field in class:SAXFactoryImpl
67 return SAXParserImpl.newInstance(features);
87 if (features == null) {
89 features = new LinkedHashMap();
91 features.put(name, value ? Boolean.TRUE : Boolean.FALSE);
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
SAXParserFactoryImpl.java 34 = "http://xml.org/sax/features/namespaces";
37 = "http://xml.org/sax/features/validation";
39 private Map<String, Boolean> features = new HashMap<String, Boolean>(); field in class:SAXParserFactoryImpl
47 if (!name.startsWith("http://xml.org/sax/features/")) {
51 return Boolean.TRUE.equals(features.get(name));
80 return new SAXParserImpl(features);
92 if (!name.startsWith("http://xml.org/sax/features/")) {
97 features.put(name, Boolean.TRUE);
99 // This is needed to disable features that are enabled by default.
100 features.put(name, Boolean.FALSE)
    [all...]
  /cts/tests/tests/accounts/common/src/android/accounts/cts/common/tx/
HasFeaturesTx.java 28 public final List<String> features = new ArrayList<>(); field in class:HasFeaturesTx
33 in.readStringList(features);
39 String[] features,
42 if (features != null) {
43 for (String feature : features) {
44 this.features.add(feature);
58 out.writeStringList(features);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
future.py 18 features = ("nested_scopes", "generators", "division", variable in class:FutureParser
34 if name in self.features:
44 """Return list of features enabled by future statements"""
  /external/adhd/cras/src/server/
cras_bt_profile.h 26 int features; member in struct:cras_bt_profile
  /external/deqp/external/vulkancts/framework/vulkan/
vkWsiUtil.hpp 54 deUint32 features; member in struct:vk::wsi::PlatformProperties

Completed in 693 milliseconds

1 2 3 4 5 6 7 8 91011>>