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

1 2 3

  /external/chromium_org/extensions/common/features/
feature.cc 5 #include "extensions/common/features/feature.h"
18 Feature::Platform Feature::GetCurrentPlatform() {
33 Feature::Availability Feature::CreateAvailability(AvailabilityResult result,
38 Feature::Availability Feature::IsAvailableToExtension(
46 Feature::Feature() : no_parent_(false) {}
48 Feature::~Feature() {
    [all...]
feature.h 20 // Represents a single feature accessible to an extension developer, such as a
21 // top-level manifest key, a permission, or a programmatic API. A feature can
23 // support for those requirements. If platforms are not specified, then feature
25 class Feature {
27 // The JavaScript contexts the feature is supported in.
49 // The platforms the feature is supported in.
58 // Whether a feature is available in a given situation or not, and if not,
76 // message in cases where the feature is not available.
85 friend class Feature;
87 // Instances should be created via Feature::CreateAvailability
    [all...]
  /external/chromium_org/base/test/android/javatests/src/org/chromium/base/test/util/
Feature.java 17 * @Feature({"Foo", "Bar"})
20 * feature Foo).
24 public @interface Feature {
26 * @return A list of feature names.
  /external/guava/guava-testlib/src/com/google/common/collect/testing/features/
Feature.java 29 public interface Feature<T> {
30 /** Returns the set of features that are implied by this feature. */
31 Set<Feature<? super T>> getImpliedFeatures();
  /external/chromium_org/build/android/pylib/host_driven/
tests_annotations.py 89 def Feature(feature_list):
91 for feature in feature_list:
92 AnnotatedFunctions._AddFunction('Feature:%s' % feature, function)
93 return AnnotatedFunctions._AddFunction('Feature', function)
  /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/chromium_org/remoting/webapp/
client_plugin.js 104 remoting.ClientPlugin.Feature = {
414 * @param {remoting.ClientPlugin.Feature} feature The feature to test for.
415 * @return {boolean} True if the plugin supports the named feature.
417 remoting.ClientPlugin.prototype.hasFeature = function(feature) {
423 return this.pluginApiFeatures_.indexOf(feature) > -1;
561 if (!this.hasFeature(remoting.ClientPlugin.Feature.SEND_CLIPBOARD_ITEM))
577 if (this.hasFeature(remoting.ClientPlugin.Feature.NOTIFY_CLIENT_RESOLUTION)) {
594 if (this.hasFeature(remoting.ClientPlugin.Feature.VIDEO_CONTROL))
    [all...]
host_controller.js 95 remoting.HostController.Feature = {
101 * @param {remoting.HostController.Feature} feature The feature to test for.
105 remoting.HostController.prototype.hasFeature = function(feature, callback) {
108 this.hostDispatcher_.hasFeature(feature, callback);
325 remoting.HostController.Feature.OAUTH_CLIENT,
  /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/smack/src/org/jivesoftware/smackx/packet/
DiscoverInfo.java 46 private final List<Feature> features = new CopyOnWriteArrayList<Feature>();
67 for (Feature f : d.features) {
81 * Adds a new feature to the discovered information.
83 * @param feature the discovered feature
85 public void addFeature(String feature) {
86 addFeature(new Feature(feature));
96 for (String feature : featuresToAdd)
    [all...]
StreamInitiation.java 41 private Feature featureNegotiation;
117 this.featureNegotiation = new Feature(form);
375 * The feature negotiation portion of the StreamInitiation packet.
380 public class Feature implements PacketExtension {
389 public Feature(final DataForm data) {
394 * Returns the dataform associated with the feature negotiation.
396 * @return Returns the dataform associated with the feature negotiation.
403 return "http://jabber.org/protocol/feature-neg";
407 return "feature";
413 .append("<feature xmlns=\"http://jabber.org/protocol/feature-neg\">")
    [all...]
  /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 
  /external/chromium_org/third_party/skia/third_party/harfbuzz/src/
harfbuzz-open.h 33 /* Use this if a feature applies to all glyphs */
47 HB_UShort FeatureCount; /* number of Feature indices */
48 HB_UShort* FeatureIndex; /* array of Feature indices */
91 /* Feature list related structures */
106 HB_Feature Feature; /* Feature table */
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-metadata-model/0.20.0/
tycho-metadata-model-0.20.0.jar 
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-layout-common-private.hh 54 * Script, ScriptList, LangSys, Feature, FeatureList, Lookup, LookupList
178 struct Feature;
208 USHORT reqFeatureIndex;/* Index of a feature required for this
269 * Feature implementation. But we still need to be able to tell junk from
276 * 'size' feature that is correct by the specification.
278 * The specification for this feature tag is in the "OpenType Layout Tag
282 * Here is one set of rules to determine if the 'size' feature is built
286 * Assume that the offset to the size feature is according to specification,
288 * feature is calculated as versions of MakeOTF before the AFDKO 2.0 built it.
289 * If this fails, reject the 'size' feature. The older makeOTF's calculated th
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout-common-private.hh 54 * Script, ScriptList, LangSys, Feature, FeatureList, Lookup, LookupList
179 struct Feature;
209 USHORT reqFeatureIndex;/* Index of a feature required for this
270 * Feature implementation. But we still need to be able to tell junk from
277 * 'size' feature that is correct by the specification.
279 * The specification for this feature tag is in the "OpenType Layout Tag
283 * Here is one set of rules to determine if the 'size' feature is built
287 * Assume that the offset to the size feature is according to specification,
289 * feature is calculated as versions of MakeOTF before the AFDKO 2.0 built it.
290 * 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 184 // Begin feature table
189 // For each feature
192 // Next feature
193 Record *Feature = FeatureList[i];
195 const std::string &Name = Feature->getName();
196 const std::string &CommandLineName = Feature->getValueAsString("Name");
197 const std::string &Desc = Feature->getValueAsString("Desc");
201 // Emit as { "feature", "description", featureEnum, i1 | i2 | ... | in }
208 Feature->getValueAsListOfDefs("Implies");
228 // End feature tabl
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_font/
ttgsubtable.h 122 struct TFeature Feature;
365 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)) {
  /prebuilts/tools/common/m2/repository/org/codehaus/gmaven/feature/gmaven-feature-api/1.5/
gmaven-feature-api-1.5.jar 
  /external/clang/lib/Lex/
ModuleMap.cpp     [all...]

Completed in 987 milliseconds

1 2 3