HomeSort by relevance Sort by last modified time
    Searched refs:Feature (Results 201 - 225 of 310) sorted by null

1 2 3 4 5 6 7 891011>>

  /packages/apps/Camera2/src/com/android/camera/
FocusOverlayManager.java 177 mFocusAreaSupported = mCapabilities.supports(CameraCapabilities.Feature.FOCUS_AREA);
178 mMeteringAreaSupported = mCapabilities.supports(CameraCapabilities.Feature.METERING_AREA);
179 mLockAeAwbNeeded = (mCapabilities.supports(CameraCapabilities.Feature.AUTO_EXPOSURE_LOCK)
180 || 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 
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/
SmartClipProviderTest.java 19 import org.chromium.base.test.util.Feature;
153 @Feature({"SmartClip"})
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/printing/
PrintingControllerTest.java 16 import org.chromium.base.test.util.Feature;
76 @Feature({"Printing"})
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
DownloadInfoTest.java 10 import org.chromium.base.test.util.Feature;
136 @Feature({"Downloads"})
  /external/chromium_org/extensions/common/manifest_handlers/
permissions_parser.cc 15 #include "extensions/common/features/feature.h"
118 // associated with them are available because the feature system does not
131 // Verify feature availability of permissions.
138 Feature* feature = permission_features->GetFeature(iter->name()); local
140 // The feature should exist since we just got an APIPermission for it. The
142 DCHECK(feature) << "Could not find feature for " << iter->name();
144 if (!feature) {
149 Feature::Availability availability
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerGlobalScope.cpp 326 void WorkerGlobalScope::countFeature(UseCounter::Feature) const
331 void WorkerGlobalScope::countDeprecation(UseCounter::Feature) const
  /external/chromium_org/third_party/skia/third_party/harfbuzz/src/
harfbuzz-dump.c 140 DEF_DUMP (Feature)
146 DUMP_FUINT (Feature, FeatureParams);
147 DUMP_FUINT (Feature, LookupListCount);
149 for (i=0; i < Feature->LookupListCount; i++)
150 DUMP1("<LookupIndex>%d</LookupIndex>\n", Feature->LookupListIndex[i]);
183 RECURSE_NUM (Feature, i, Feature, &FeatureList->FeatureRecord[i].Feature);
  /prebuilts/tools/common/m2/repository/org/codehaus/gmaven/feature/gmaven-feature-support/1.5/
gmaven-feature-support-1.5.jar 
  /external/pdfium/core/src/fpdfapi/fpdf_font/
ttgsubtable.cpp 115 if(GetVerticalGlyphSub(glyphnum, vglyphnum, &FeatureList.FeatureRecord[value].Feature)) {
124 struct TFeature *Feature)
126 for(int i = 0; i < Feature->LookupCount; i++) {
127 int index = Feature->LookupListIndex[i];
276 &rec->FeatureRecord[i].Feature);
ttgsubtable.h 122 struct TFeature Feature;
365 struct TFeature *Feature);
  /external/fonttools/Lib/fontTools/
merge.py 460 feature = [featureMap[v] for v in langsys.FeatureIndex if featureMap[v].FeatureTag == 'locl']
461 assert len(feature) <= 1
462 if feature:
463 feature = feature[0]
468 f = synthFeature.Feature = otTables.Feature()
477 feature = synthFeature
490 feature.Feature.LookupListIndex[:0] = [id(synthLookup)
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MultimapCollectionTest.java 43 import com.google.common.collect.testing.features.Feature;
73 private static final Feature<?>[] COLLECTION_FEATURES = {
79 static final Feature<?>[] COLLECTION_FEATURES_ORDER = {
85 static final Feature<?>[] COLLECTION_FEATURES_REMOVE = {
91 static final Feature<?>[] COLLECTION_FEATURES_REMOVE_ORDER = {
98 private static final Feature<?>[] LIST_FEATURES = {
104 private static final Feature<?>[] LIST_FEATURES_REMOVE_SET = {
111 private static final Feature<?>[] FOR_MAP_FEATURES_ONE = {
117 private static final Feature<?>[] FOR_MAP_FEATURES_ANY = {
    [all...]
  /external/chromium_org/extensions/browser/
extension_function.cc 25 using extensions::Feature;
189 Feature::Availability availability =
191 name_, extension_, Feature::BLESSED_EXTENSION_CONTEXT, source_url());
  /external/chromium_org/chrome/browser/bookmarks/
enhanced_bookmarks_features.cc 17 #include "extensions/common/features/feature.h"
34 extensions::Feature* feature = feature_provider->GetFeature("metricsPrivate"); local
35 return feature && feature->IsIdInWhitelist(ext_id);
183 // enhanced bookmark feature is turned off. This is to have some images
184 // available so that in the future, when the feature is turned on, the user
  /external/chromium_org/extensions/common/features/
simple_feature.h 17 #include "extensions/common/features/feature.h"
25 class SimpleFeature : public Feature {
31 // supported in feature files; "component" implies
36 // directly, it should be dealing with the Feature interface.
60 // Adds a filter to this feature. The feature takes ownership of the filter.
63 // Parses the JSON representation of a feature into the fields of this object.
86 // extension::Feature:
  /external/chromium_org/extensions/renderer/
v8_schema_registry.cc 55 Feature::UNSPECIFIED_CONTEXT));
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
InputType.h 230 void countUsageIfVisible(UseCounter::Feature) const;
  /external/chromium_org/third_party/harfbuzz-ng/src/
main.cc 135 printf (" No required feature\n");
138 printf (" %d feature(s) found in language system\n", num_features);
140 printf (" Feature index %2d of %2d: %d\n", n_feature, num_features,
147 printf (" %d feature(s) found in table\n", num_features);
149 const Feature &feature = g.get_feature (n_feature); local
150 printf (" Feature %2d of %2d: %.4s; %d lookup(s)\n", n_feature, num_features,
152 feature.get_lookup_count());
154 int num_lookups = feature.get_lookup_count ();
155 printf (" %d lookup(s) found in feature\n", num_lookups)
    [all...]
  /external/harfbuzz_ng/src/
main.cc 135 printf (" No required feature\n");
137 printf (" Required feature index: %d\n",
141 printf (" %d feature(s) found in language system\n", num_features);
143 printf (" Feature index %2d of %2d: %d\n", n_feature, num_features,
150 printf (" %d feature(s) found in table\n", num_features);
152 const Feature &feature = g.get_feature (n_feature); local
153 int num_lookups = feature.get_lookup_count ();
154 printf (" Feature %2d of %2d: %c%c%c%c\n", n_feature, num_features,
157 printf (" %d lookup(s) found in feature\n", num_lookups)
    [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;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mergemod.h     [all...]
  /external/clang/lib/Lex/
PPMacroExpansion.cpp     [all...]
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
AndroidCameraAgentImpl.java 636 if (mCapabilities.supports(CameraCapabilities.Feature.ZOOM)) {
641 if (mCapabilities.supports(CameraCapabilities.Feature.AUTO_EXPOSURE_LOCK)) {
645 if (mCapabilities.supports(CameraCapabilities.Feature.AUTO_WHITE_BALANCE_LOCK)) {
648 if (mCapabilities.supports(CameraCapabilities.Feature.FOCUS_AREA)) {
655 if (mCapabilities.supports(CameraCapabilities.Feature.METERING_AREA)) {
    [all...]
  /external/chromium_org/chrome/renderer/
chrome_content_renderer_client.cc     [all...]

Completed in 3521 milliseconds

1 2 3 4 5 6 7 891011>>