/cts/apps/CtsVerifier/src/com/android/cts/verifier/features/ |
FeatureSummaryActivity.java | 48 * Simple storage class for data about an Android feature. 50 static class Feature { 52 * The name of the feature. Should be one of the PackageManager.FEATURE* 74 public Feature(String name, boolean required) { 84 } else if (o == null || !(o instanceof Feature)) { 87 Feature feature = (Feature) o; local 88 return name.equals(feature.name) [all...] |
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/ |
UnsupportedZipFeatureException.java | 30 private final Feature reason; 36 * @param reason the feature that is not supported 37 * @param entry the entry using the feature 39 public UnsupportedZipFeatureException(final Feature reason, 41 super("unsupported feature " + reason + " used in entry " 51 * @param entry the entry using the feature 56 super("unsupported feature method '" + method.name() 58 this.reason = Feature.METHOD; 64 * feature. 66 * @param reason the feature that is not supporte [all...] |
/external/grpc-grpc/examples/cpp/route_guide/ |
helper.h | 26 class Feature; 30 void ParseDb(const std::string& db, std::vector<Feature>* feature_list);
|
/external/libcxx/test/std/utilities/meta/meta.unary.prop.query/ |
void_t_feature_test_macro.pass.cpp | 20 # error Feature test macro should not be defined! 24 # error Feature test macro is not defined 27 # error Feature test macro has the wrong value
|
/external/libchrome/base/test/ |
scoped_feature_list.h | 22 // Note: Re-using the same object is not allowed. To reset the feature 41 // default values, which can hide feature interaction bugs. Please use 47 // default values, which can hide feature interaction bugs. Please use 53 // default values, which can hide feature interaction bugs. Please use 62 // Any feature overrides already present in the global FeatureList will 64 // method. This is important for testing potentially unexpected feature 66 void InitWithFeatures(const std::vector<Feature>& enabled_features, 67 const std::vector<Feature>& disabled_features); 70 // FeatureList and overridden with single enabled feature. 71 void InitAndEnableFeature(const Feature& feature) [all...] |
/external/vixl/src/ |
cpu-features.h | 40 /* registers, so that the detailed feature registers can be read */ \ 93 // device. Each feature is represented by a simple boolean flag. 112 // about unavailable features. The Simulator uses this feature when 130 // // Turn off feature checking entirely. 133 // Feature set manipulation: 166 enum Feature { 167 // Refer to VIXL_CPU_FEATURE_LIST (above) for the list of feature names that 182 CPUFeatures(Feature feature0, 183 Feature feature1 = kNone, 184 Feature feature2 = kNone [all...] |
cpu-features.cc | 35 static uint64_t MakeFeatureMask(CPUFeatures::Feature feature) { 36 if (feature == CPUFeatures::kNone) { 39 // Check that the shift is well-defined, and that the feature is valid. 42 VIXL_ASSERT(feature < CPUFeatures::kNumberOfFeatures); 43 return UINT64_C(1) << feature; 47 CPUFeatures::CPUFeatures(Feature feature0, 48 Feature feature1, 49 Feature feature2, 50 Feature feature3 [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/features/ |
Feature.java | 30 public interface Feature<T> { 31 /** Returns the set of features that are implied by this feature. */ 32 Set<Feature<? super T>> getImpliedFeatures();
|
TesterRequirements.java | 33 private final Set<Feature<?>> presentFeatures; 34 private final Set<Feature<?>> absentFeatures; 37 Set<Feature<?>> presentFeatures, Set<Feature<?>> absentFeatures) { 47 this(Collections.<Feature<?>>emptySet(), 48 Collections.<Feature<?>>emptySet()); 51 public final Set<Feature<?>> getPresentFeatures() { 55 public final Set<Feature<?>> getAbsentFeatures() {
|
ConflictingRequirementsException.java | 31 private Set<Feature<?>> conflicts; 35 String message, Set<Feature<?>> conflicts, Object source) { 41 public Set<Feature<?>> getConflicts() {
|
SetFeature.java | 35 public enum SetFeature implements Feature<Set> { 40 private final Set<Feature<? super Set>> implied; 42 SetFeature(Feature<? super Set> ... implied) { 47 public Set<Feature<? super Set>> getImpliedFeatures() {
|
FeatureUtil.java | 54 public static Set<Feature<?>> addImpliedFeatures(Set<Feature<?>> features) { 69 public static Set<Feature<?>> impliedFeatures(Set<Feature<?>> features) { 70 Set<Feature<?>> implied = new LinkedHashSet<Feature<?>>(); 71 for (Feature<?> feature : features) { 72 implied.addAll(feature.getImpliedFeatures()); 218 final Feature<?>[] presentFeatures [all...] |
/external/libcxx/test/std/utilities/function.objects/func.invoke/ |
invoke_feature_test_macro.pass.cpp | 22 # error Feature test macro should be defined 26 # error Feature test macro not defined
|
/external/tensorflow/tensorflow/core/example/ |
feature_util.cc | 21 Feature& ExampleFeature(const string& name, Example* example) { 29 return (features.feature().find(key) != features.feature().end()); 34 auto it = features.feature().find(key); 35 return (it != features.feature().end()) && 36 (it->second.kind_case() == Feature::KindCase::kInt64List); 41 auto it = features.feature().find(key); 42 return (it != features.feature().end()) && 43 (it->second.kind_case() == Feature::KindCase::kFloatList); 48 auto it = features.feature().find(key) [all...] |
/external/guava/guava-testlib/test/com/google/common/collect/testing/features/ |
FeatureUtilTest.java | 47 enum ExampleBaseFeature implements Feature<ExampleBaseInterface> { 52 public Set<Feature<? super ExampleBaseInterface>> getImpliedFeatures() { 65 enum ExampleDerivedFeature implements Feature<ExampleDerivedInterface>{ 75 private Set<Feature<? super ExampleDerivedInterface>> implied; 78 Feature<? super ExampleDerivedInterface> ... implied) { 83 public Set<Feature<? super ExampleDerivedInterface>> getImpliedFeatures() { 152 Set<Feature<?>> features = Sets.<Feature<?>>newHashSet( 158 Set<Feature<?>> features; 160 features = Sets.<Feature<?>>newHashSet [all...] |
/external/grpc-grpc/examples/ruby/lib/ |
route_guide_services_pb.rb | 35 # Obtains the feature at a given position. 37 # A feature with an empty name is returned if there's no feature at the given 39 rpc :GetFeature, Point, Feature 46 rpc :ListFeatures, Rectangle, stream(Feature)
|
/external/llvm/lib/MC/ |
SubtargetFeature.cpp | 30 /// hasFlag - Determine if a feature has a flag; '+' or '-' 32 static inline bool hasFlag(StringRef Feature) { 33 assert(!Feature.empty() && "Empty string"); 35 char Ch = Feature[0]; 42 static inline std::string StripFlag(StringRef Feature) { 43 return hasFlag(Feature) ? Feature.substr(1) : Feature; 48 static inline bool isEnabled(StringRef Feature) { 49 assert(!Feature.empty() && "Empty string") [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/ |
SubtargetFeature.cpp | 35 /// Determine if a feature has a flag; '+' or '-' 36 static inline bool hasFlag(StringRef Feature) { 37 assert(!Feature.empty() && "Empty string"); 39 char Ch = Feature[0]; 45 static inline std::string StripFlag(StringRef Feature) { 46 return hasFlag(Feature) ? Feature.substr(1) : Feature; 50 static inline bool isEnabled(StringRef Feature) { 51 assert(!Feature.empty() && "Empty string") [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
MultimapFeature.java | 22 import com.google.common.collect.testing.features.Feature; 38 public enum MultimapFeature implements Feature<Multimap> { 41 private final Set<Feature<? super Multimap>> implied; 43 MultimapFeature(Feature<? super Multimap> ... implied) { 48 public Set<Feature<? super Multimap>> getImpliedFeatures() {
|
MultisetFeature.java | 21 import com.google.common.collect.testing.features.Feature; 36 public enum MultisetFeature implements Feature<Multiset> { 44 public Set<Feature<? super Multiset>> getImpliedFeatures() {
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
FeatureList.java | 19 private Feature[] features; 24 features = new Feature[10]; 28 public void addFeature(Feature feature) 31 Feature[] newFeatures = new Feature[features.length + 5]; 37 features[featureCount++] = feature; 51 System.out.print("writing feature list...");
|
/external/libchrome/base/ |
feature_list.h | 24 // Specifies whether a given feature is enabled or disabled by default. 30 // The Feature struct is used to define the default state for a feature. See 32 // for a given feature name - generally defined as a constant global variable or 35 struct BASE_EXPORT Feature { 36 // The name of the feature. This should be unique to each feature and is used 38 // It is strongly recommended to use CamelCase style for feature names, e.g. 42 // The default state (i.e. enabled or disabled) for this feature. 48 // not, via a DcheckIsFatal feature. We define the Feature here since it i [all...] |
/external/swiftshader/third_party/LLVM/lib/MC/ |
SubtargetFeature.cpp | 28 /// hasFlag - Determine if a feature has a flag; '+' or '-' 30 static inline bool hasFlag(const StringRef Feature) { 31 assert(!Feature.empty() && "Empty string"); 33 char Ch = Feature[0]; 40 static inline std::string StripFlag(const StringRef Feature) { 41 return hasFlag(Feature) ? Feature.substr(1) : Feature; 46 static inline bool isEnabled(const StringRef Feature) { 47 assert(!Feature.empty() && "Empty string") [all...] |
/external/grpc-grpc/examples/python/multiplex/ |
route_guide_resources.py | 31 feature = route_guide_pb2.Feature( 36 feature_list.append(feature)
|
/external/grpc-grpc/examples/python/route_guide/ |
route_guide_resources.py | 31 feature = route_guide_pb2.Feature( 36 feature_list.append(feature)
|