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

1 2 3 4 5 6 7 8 9

  /packages/apps/TV/common/src/com/android/tv/common/feature/
Feature.java 17 package com.android.tv.common.feature;
22 * A feature is elements of code that are turned off for most users until a feature is fully
34 public interface Feature {
  /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();
  /external/opencv3/apps/traincascade/
lbpfeatures.cpp 43 features.push_back( Feature(offset, x, y, w, h ) );
47 CvLBPEvaluator::Feature::Feature()
52 CvLBPEvaluator::Feature::Feature( int offset, int x, int y, int _blockWidth, int _blockHeight )
64 void CvLBPEvaluator::Feature::write(FileStorage &fs) const
lbpfeatures.h 26 class Feature
29 Feature();
30 Feature( int offset, int x, int y, int _block_w, int _block_h );
37 std::vector<Feature> features;
42 inline uchar CvLBPEvaluator::Feature::calc(const cv::Mat &_sum, size_t y) const
HOGfeatures.h 30 class Feature
33 Feature();
34 Feature( int offset, int x, int y, int cellW, int cellH );
46 std::vector<Feature> features;
60 inline float CvHOGEvaluator::Feature::calc( const std::vector<cv::Mat>& _hists, const cv::Mat& _normSum, size_t y, int featComponent ) const
haarfeatures.h 43 class Feature
46 Feature();
47 Feature( int offset, bool _tilted,
67 std::vector<Feature> features;
79 inline float CvHaarEvaluator::Feature::calc( const cv::Mat &_sum, const cv::Mat &_tilted, size_t y) const
HOGfeatures.cpp 80 features.push_back(Feature(offset, x, y, t, t));
89 features.push_back(Feature(offset, x, y, t, 2*t));
98 features.push_back(Feature(offset, x, y, 2*t, t));
106 CvHOGEvaluator::Feature::Feature()
114 CvHOGEvaluator::Feature::Feature( int offset, int x, int y, int cellW, int cellH )
127 void CvHOGEvaluator::Feature::write(FileStorage &fs) const
138 //void CvHOGEvaluator::Feature::write(FileStorage &fs, int varIdx) const
150 void CvHOGEvaluator::Feature::write(FileStorage &fs, int featComponentIdx) cons
    [all...]
  /external/libpng/contrib/arm-neon/
linux.c 32 * it gets a match on the 'neon' feature or reaches the end of the stream.
39 StartLine, Feature, Colon, StartTag, Neon, HaveNeon, SkipTag, SkipLine
64 state = Feature;
67 case Feature:
68 /* Match 'FEATURE', ASCII case insensitive. */
76 /* did not match 'feature' */
100 /* Either a bad line format or a 'feature' prefix followed by
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
Feature.java 11 class Feature extends TaggedRecord
17 public Feature(String theFeatureTag)
  /bionic/libc/malloc_debug/
Config.cpp 67 struct Feature {
68 Feature(std::string name, size_t default_value, size_t min_value, size_t max_value,
235 const std::string name, const Feature& feature, size_t value, bool value_set) {
236 if (feature.config) {
237 *feature.config = true;
239 if (feature.value != nullptr) {
241 if (value < feature.min_value) {
243 getprogname(), name.c_str(), feature.min_value, value);
245 } else if (value > feature.max_value)
    [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...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/command/
bdist_msi.py 21 from msilib import Directory, Feature, Dialog, add_data
166 raise DistutilsOptionError, "the pre-install-script feature is not yet implemented"
277 f = Feature(db, "Python", "Python", "Everything",
291 f = Feature(db, name, title, desc, 1, level, directory=target)
297 for feature, dir, version in items:
310 dir.start_component(dir.logical, feature, 0)
391 # but if this feature is completed, it will also need to add
578 # Feature (Python directory) selection
602 "FEATURE", None, "PathEdit", None)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/command/
bdist_msi.py 21 from msilib import Directory, Feature, Dialog, add_data
166 raise DistutilsOptionError, "the pre-install-script feature is not yet implemented"
277 f = Feature(db, "Python", "Python", "Everything",
291 f = Feature(db, name, title, desc, 1, level, directory=target)
297 for feature, dir, version in items:
310 dir.start_component(dir.logical, feature, 0)
391 # but if this feature is completed, it will also need to add
578 # Feature (Python directory) selection
602 "FEATURE", None, "PathEdit", None)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
bdist_msi.py 21 from msilib import Directory, Feature, Dialog, add_data
166 raise DistutilsOptionError, "the pre-install-script feature is not yet implemented"
277 f = Feature(db, "Python", "Python", "Everything",
291 f = Feature(db, name, title, desc, 1, level, directory=target)
297 for feature, dir, version in items:
310 dir.start_component(dir.logical, feature, 0)
391 # but if this feature is completed, it will also need to add
578 # Feature (Python directory) selection
602 "FEATURE", None, "PathEdit", None)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
bdist_msi.py 21 from msilib import Directory, Feature, Dialog, add_data
166 raise DistutilsOptionError, "the pre-install-script feature is not yet implemented"
277 f = Feature(db, "Python", "Python", "Everything",
291 f = Feature(db, name, title, desc, 1, level, directory=target)
297 for feature, dir, version in items:
310 dir.start_component(dir.logical, feature, 0)
391 # but if this feature is completed, it will also need to add
578 # Feature (Python directory) selection
602 "FEATURE", None, "PathEdit", None)
    [all...]
  /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/llvm/lib/Support/
TargetParser.cpp 86 const char *Feature;
91 #define ARM_ARCH_EXT_NAME(NAME, ID, FEATURE, NEGFEATURE) \
92 { NAME, sizeof(NAME) - 1, ID, FEATURE, NEGFEATURE },
342 if (AE.Feature && ArchExt == AE.getName())
343 return AE.Feature;
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatReader.java 55 private static class Feature {
73 if (name.equals(Feature.VALIDATION)
74 || name.equals(Feature.EXTERNAL_GENERAL_ENTITIES)
75 || name.equals(Feature.EXTERNAL_PARAMETER_ENTITIES)) {
79 if (name.equals(Feature.NAMESPACES)) {
83 if (name.equals(Feature.NAMESPACE_PREFIXES)) {
87 if (name.equals(Feature.STRING_INTERNING)) {
100 if (name.equals(Feature.VALIDATION)
101 || name.equals(Feature.EXTERNAL_GENERAL_ENTITIES)
102 || name.equals(Feature.EXTERNAL_PARAMETER_ENTITIES))
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-metadata-model/0.18.1/
tycho-metadata-model-0.18.1.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-metadata-model/0.20.0/
tycho-metadata-model-0.20.0.jar 
  /external/harfbuzz_ng/src/
hb-ot-layout-common-private.hh 66 * Script, ScriptList, LangSys, Feature, FeatureList, Lookup, LookupList
194 struct Feature;
225 USHORT reqFeatureIndex;/* Index of a feature required for this
288 * Feature implementation. But we still need to be able to tell junk from
295 * 'size' feature that is correct by the specification.
297 * The specification for this feature tag is in the "OpenType Layout Tag
301 * Here is one set of rules to determine if the 'size' feature is built
305 * Assume that the offset to the size feature is according to specification,
307 * feature is calculated as versions of MakeOTF before the AFDKO 2.0 built it.
308 * If this fails, reject the 'size' feature. The older makeOTF's calculated th
    [all...]
  /external/libnfc-nci/src/udrv/include/
ucodec.h 191 /* Add here the audio feature structure */
197 /* Add here the video feature structure */
205 tUCODEC_FEATURE Feature;
  /external/llvm/utils/TableGen/
SubtargetEmitter.cpp 162 // Begin feature table
167 // For each feature
170 // Next feature
171 Record *Feature = FeatureList[i];
173 const std::string &Name = Feature->getName();
174 const std::string &CommandLineName = Feature->getValueAsString("Name");
175 const std::string &Desc = Feature->getValueAsString("Desc");
179 // Emit as { "feature", "description", { featureEnum }, { i1 , i2 , ... , in } }
186 Feature->getValueAsListOfDefs("Implies");
208 // End feature tabl
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_font/
ttgsubtable.h 114 struct TFeature Feature;
317 struct TFeature* Feature);
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
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)) {

Completed in 833 milliseconds

1 2 3 4 5 6 7 8 9