HomeSort by relevance Sort by last modified time
    Searched refs:Feature (Results 51 - 75 of 302) sorted by null

1 23 4 5 6 7 8 91011>>

  /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);
AndroidCamera2Capabilities.java 93 mSupportedFeatures.add(Feature.FOCUS_AREA);
97 mSupportedFeatures.add(Feature.METERING_AREA);
101 mSupportedFeatures.add(Feature.ZOOM);
  /packages/apps/TV/common/src/com/android/tv/common/
SoftPreconditions.java 24 import com.android.tv.common.feature.Feature;
121 * Throws or logs if the Feature is not enabled
124 * @param feature the required feature
127 * @throws IllegalStateException if {@code feature} is not enabled
129 public static void checkFeatureEnabled(Context context, Feature feature, String tag) {
130 checkState(feature.isEnabled(context), tag, feature.toString())
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
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());
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
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<?>>();
NavigableMapTestSuiteBuilder.java 24 import com.google.common.collect.testing.features.Feature;
120 List<Feature<?>> features = new ArrayList<Feature<?>>();
NavigableSetTestSuiteBuilder.java 22 import com.google.common.collect.testing.features.Feature;
109 List<Feature<?>> features = new ArrayList<Feature<?>>();
  /external/opencv3/modules/imgproc/src/
generalized_hough.cpp 590 struct Feature
602 void buildFeatureList(const Mat& edges, const Mat& dx, const Mat& dy, std::vector< std::vector<Feature> >& features, Point2d center = Point2d());
609 std::vector< std::vector<Feature> > templFeatures_;
610 std::vector< std::vector<Feature> > imageFeatures_;
681 void GeneralizedHoughGuilImpl::buildFeatureList(const Mat& edges, const Mat& dx, const Mat& dy, std::vector< std::vector<Feature> >& features, Point2d center)
693 std::for_each(features.begin(), features.end(), std::mem_fun_ref(&std::vector<Feature>::clear));
694 std::for_each(features.begin(), features.end(), std::bind2nd(std::mem_fun_ref(&std::vector<Feature>::reserve), maxBufferSize_));
708 Feature f;
776 const std::vector<Feature>& templRow = templFeatures_[i];
777 const std::vector<Feature>& imageRow = imageFeatures_[i]
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/memory/
ObjectGraphMeasurer.java 19 import com.google.caliper.memory.ObjectExplorer.Feature;
183 EnumSet.of(Feature.VISIT_PRIMITIVES, Feature.VISIT_NULL));
  /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/clang/lib/Basic/
Targets.cpp 1 //===--- Targets.cpp - Implement target feature support -------------------===//
904 bool hasFeature(StringRef Feature) const override;
    [all...]
Module.cpp 59 /// language options has the given feature.
60 static bool hasFeature(StringRef Feature, const LangOptions &LangOpts,
62 bool HasFeature = llvm::StringSwitch<bool>(Feature)
72 .Default(Target.hasFeature(Feature));
76 Feature) != LangOpts.ModuleFeatures.end();
185 void Module::addRequirement(StringRef Feature, bool RequiredState,
188 Requirements.push_back(Requirement(Feature, RequiredState));
190 // If this feature is currently available, we're done.
191 if (hasFeature(Feature, LangOpts, Target) == RequiredState)
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
CanonGSUBBuilder.java 244 Feature init = new Feature("init");
245 Feature medi = new Feature("medi");
246 Feature fina = new Feature("fina");
247 Feature liga = new Feature("liga");
349 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@+2 {{builtin feature check macro requires a parenthesized identifier}}
  /external/llvm/include/llvm/MC/
SubtargetFeature.h 49 /// SubtargetFeatureKV - Used to provide key value pairs for feature and
84 /// A comma separates each feature from the next (all lowercase.)
86 /// that feature should be enabled or disabled contrary to the cpu
101 /// ToggleFeature - Toggle a feature and returns the newly updated feature
106 /// Apply the feature flag and return the newly updated feature bits.
107 FeatureBitset ApplyFeatureFlag(FeatureBitset Bits, StringRef Feature,
110 /// Get feature bits of a CPU.
115 /// Print feature string
    [all...]
  /external/opencv3/modules/objdetect/src/
cascadedetect.hpp 334 struct Feature
336 Feature();
353 enum { RECT_NUM = Feature::RECT_NUM };
355 void setOffsets( const Feature& _f, int step, int tofs );
383 Ptr<std::vector<Feature> > features;
396 inline HaarEvaluator::Feature :: Feature()
428 struct Feature
430 Feature();
431 Feature( int x, int y, int _block_w, int _block_h )
    [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 
  /external/opencv3/apps/traincascade/
traincascade_features.h 32 template<class Feature>
33 void _writeFeatures( const std::vector<Feature> features, cv::FileStorage &fs, const cv::Mat& featureMap )
  /external/guava/guava-testlib/test/com/google/common/collect/testing/features/
FeatureEnumTest.java 29 * all over the place, it's worth having a test to ensure that all our Feature
71 // This is public so that tests for Feature enums we haven't yet imagined
73 public static <E extends Enum<?> & Feature<?>> void assertGoodFeatureEnum(
81 fail(String.format("Feature enum %s contains a class named " +
87 fail(String.format("Feature enum %s should contain an " +
  /packages/apps/Camera2/src/com/android/camera/
FocusOverlayManager.java 179 mFocusAreaSupported = mCapabilities.supports(CameraCapabilities.Feature.FOCUS_AREA);
180 mMeteringAreaSupported = mCapabilities.supports(CameraCapabilities.Feature.METERING_AREA);
181 mLockAeAwbNeeded = (mCapabilities.supports(CameraCapabilities.Feature.AUTO_EXPOSURE_LOCK)
182 || mCapabilities.supports(CameraCapabilities.Feature.AUTO_WHITE_BALANCE_LOCK));
  /prebuilts/tools/common/m2/repository/org/codehaus/gmaven/feature/gmaven-feature-api/1.5/
gmaven-feature-api-1.5.jar 

Completed in 646 milliseconds

1 23 4 5 6 7 8 91011>>