/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
SetTestSuiteBuilder.java | 20 import com.google.common.collect.testing.features.Feature; 116 private static Set<Feature<?>> computeReserializedCollectionFeatures( 117 Set<Feature<?>> features) { 118 Set<Feature<?>> derivedFeatures = new HashSet<Feature<?>>();
|
ListTestSuiteBuilder.java | 20 import com.google.common.collect.testing.features.Feature; 146 private static Set<Feature<?>> computeReserializedCollectionFeatures( 147 Set<Feature<?>> features) { 148 Set<Feature<?>> derivedFeatures = new HashSet<Feature<?>>();
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
ListMultimapTestSuiteBuilder.java | 28 import com.google.common.collect.testing.features.Feature; 82 Set<Feature<?>> features = computeMultimapAsMapGetFeatures(parentBuilder.getFeatures()); 96 Set<Feature<?>> computeMultimapGetFeatures( 97 Set<Feature<?>> multimapFeatures) { 98 Set<Feature<?>> derivedFeatures = super.computeMultimapGetFeatures(multimapFeatures);
|
SortedMultisetTestSuiteBuilder.java | 31 import com.google.common.collect.testing.features.Feature; 97 enum NoRecurse implements Feature<Void> { 101 public Set<Feature<? super Void>> getImpliedFeatures() { 153 Set<Feature<?>> features = new HashSet<Feature<?>>(); 252 Set<Feature<?>> features = new HashSet<Feature<?>>(); 283 Set<Feature<?>> features = new HashSet<Feature<?>>();
|
SortedSetMultimapTestSuiteBuilder.java | 26 import com.google.common.collect.testing.features.Feature; 81 Set<Feature<?>> features = computeMultimapAsMapGetFeatures(parentBuilder.getFeatures());
|
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBusDxe/ |
UsbHub.c | 19 // Array that maps the change bit to feature value which is
80 USB hub control transfer to clear the hub feature.
83 @param Feature The feature to clear.
85 @retval EFI_SUCCESS Feature of the hub is cleared.
86 @retval Others Failed to clear the feature.
92 IN UINT16 Feature
103 Feature,
114 Clear the feature of the device's port.
117 @param Port The port to clear feature. [all...] |
UsbUtility.h | 108 Set the root hub port feature.
112 @param Feature The port feature to set.
114 @retval EFI_SUCCESS The port feature is set.
115 @retval Others Failed to set port feature.
122 IN EFI_USB_PORT_FEATURE Feature
126 Clear the root hub port feature.
130 @param Feature The port feature to clear.
132 @retval EFI_SUCCESS The port feature is clear. [all...] |
/external/caliper/caliper/src/main/java/com/google/caliper/memory/ |
ObjectExplorer.java | 55 * EnumSet.noneOf(Feature.class))}. 68 return exploreObject(rootObject, visitor, EnumSet.noneOf(Feature.class)); 79 * <li>If {@link Feature#VISIT_PRIMITIVES} is contained in features, 81 * <li>If {@link Feature#VISIT_NULL} is contained in features, the visitor 99 ObjectVisitor<T> visitor, EnumSet<Feature> features) { 125 if (features.contains(Feature.VISIT_PRIMITIVES)) { 129 if (features.contains(Feature.VISIT_NULL)) { 152 if (features.contains(Feature.VISIT_NULL)) { 159 if (features.contains(Feature.VISIT_PRIMITIVES)) { 249 public enum Feature { [all...] |
ObjectGraphMeasurer.java | 19 import com.google.caliper.memory.ObjectExplorer.Feature; 183 EnumSet.of(Feature.VISIT_PRIMITIVES, Feature.VISIT_NULL));
|
/packages/apps/TV/common/src/com/android/tv/common/feature/ |
PackageVersionFeature.java | 17 package com.android.tv.common.feature; 25 * A feature controlled by package version. 27 public class PackageVersionFeature implements Feature {
|
/test/vts/utils/python/web/ |
feature_utils.py | 23 class Feature(object): 24 """Configuration object for a feature. 29 enabled: boolean, True if the feature is enabled, False otherwise 36 """Creates a feature configuration object. 39 toggle_param_name: String, The name of the parameter used to toggle the feature 49 logging.info("Feature disabled in configuration: %s=False", toggle_param_name)
|
/external/libmojo/base/android/javatests/src/org/chromium/base/ |
ObserverListTest.java | 10 import org.chromium.base.test.util.Feature; 83 @Feature({"Android-AppBase"}) 120 @Feature({"Android-AppBase"}) 141 @Feature({"Android-AppBase"}) 180 @Feature({"Android-AppBase"}) 219 @Feature({"Android-AppBase"}) 233 @Feature({"Android-AppBase"}) 255 @Feature({"Android-AppBase"})
|
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/ |
AndroidCameraSettings.java | 52 if (capabilities.supports(CameraCapabilities.Feature.ZOOM)) { 63 if (capabilities.supports(CameraCapabilities.Feature.VIDEO_STABILIZATION)) {
|
CameraCapabilities.java | 56 protected final EnumSet<Feature> mSupportedFeatures = EnumSet.noneOf(Feature.class); 284 public enum Feature { 623 public final Set<Feature> getSupportedFeature() { 624 return new HashSet<Feature>(mSupportedFeatures); 627 public boolean supports(Feature ft) { 681 if (!supports(Feature.ZOOM)) { 753 if (!settings.isVideoStabilizationEnabled() || supports(Feature.VIDEO_STABILIZATION)) {
|
AndroidCameraCapabilities.java | 63 mSupportedFeatures.add(Feature.ZOOM); 66 mSupportedFeatures.add(Feature.VIDEO_SNAPSHOT); 69 mSupportedFeatures.add(Feature.AUTO_EXPOSURE_LOCK); 72 mSupportedFeatures.add(Feature.AUTO_WHITE_BALANCE_LOCK); 77 mSupportedFeatures.add(Feature.FOCUS_AREA); 81 mSupportedFeatures.add(Feature.METERING_AREA);
|
/packages/apps/TV/common/src/com/android/tv/common/ |
SoftPreconditions.java | 23 import com.android.tv.common.feature.Feature; 128 * Throws or logs if the Feature is not enabled 131 * @param feature the required feature 134 * @throws IllegalStateException if {@code feature} is not enabled 136 public static void checkFeatureEnabled(Context context, Feature feature, String tag) { 137 checkState(feature.isEnabled(context), tag, feature.toString()) [all...] |
/external/libchrome/base/ |
feature_list.cc | 29 // Some characters are not allowed to appear in feature names or the associated 73 // Only one associated field trial is supported per feature. This is generally 77 NOTREACHED() << "Feature " << feature_name 92 << "Feature " << feature_name 135 bool FeatureList::IsEnabled(const Feature& feature) { 138 return feature.default_state == FEATURE_ENABLED_BY_DEFAULT; 140 return g_instance->IsFeatureEnabled(feature); 144 FieldTrial* FeatureList::GetFieldTrial(const Feature& feature) { [all...] |
/hardware/interfaces/power/1.0/vts/functional/ |
VtsHalPowerV1_0TargetTest.cpp | 31 using ::android::hardware::power::V1_0::Feature; 153 ret = power->setFeature(Feature::POWER_FEATURE_DOUBLE_TAP_TO_WAKE, true); 155 ret = power->setFeature(Feature::POWER_FEATURE_DOUBLE_TAP_TO_WAKE, false); 158 Feature badFeature = static_cast<Feature>(0x2);
|
/external/clang/lib/Basic/ |
Targets.cpp | 1 //===--- Targets.cpp - Implement target feature support -------------------===// 979 bool hasFeature(StringRef Feature) const override; [all...] |
/external/guava/guava-testlib/test/com/google/common/collect/testing/ |
MapTestSuiteBuilderTests.java | 27 import com.google.common.collect.testing.features.Feature; 73 WrappedHashMapGenerator generator, String name, Feature<?>... features) { 74 List<Feature<?>> featuresList = Lists.newArrayList(features);
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
CanonGSUBBuilder.java | 246 Feature init = new Feature("init"); 247 Feature medi = new Feature("medi"); 248 Feature fina = new Feature("fina"); 249 Feature liga = new Feature("liga"); 351 public static void addLookups(Feature feature, int[] lookups [all...] |
/external/clang/test/Preprocessor/ |
feature_tests.c | 27 #error Feature name in double underscores does not work 58 // expected-error@+1 {{builtin feature check macro requires a parenthesized identifier}}
|
/external/llvm/include/llvm/MC/ |
SubtargetFeature.h | 50 /// SubtargetFeatureKV - Used to provide key value pairs for feature and 90 /// A comma separates each feature from the next (all lowercase.) 92 /// that feature should be enabled or disabled contrary to the cpu 107 /// ToggleFeature - Toggle a feature and update the feature bits. 111 /// Apply the feature flag and update the feature bits. 112 static void ApplyFeatureFlag(FeatureBitset &Bits, StringRef Feature, 115 /// Get feature bits of a CPU. 120 /// Print feature string [all...] |
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-metadata-model/0.20.0/ |
tycho-metadata-model-0.20.0.jar | |
/prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-metadata-model/0.18.1/ |
tycho-metadata-model-0.18.1.jar | |