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

1 2

  /external/chromium_org/chrome/common/extensions/features/
feature.cc 5 #include "chrome/common/extensions/features/feature.h"
17 Feature::Platform Feature::GetCurrentPlatform() {
26 Feature::Location Feature::ConvertLocation(Manifest::Location location) {
34 Feature::Availability Feature::CreateAvailability(AvailabilityResult result,
39 Feature::Feature() : no_parent_(false) {}
41 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
24 class Feature {
26 // The JavaScript contexts the feature is supported in.
43 // The location required of extensions the feature is supported in.
49 // The platforms the feature is supported in.
55 // Whether a feature is available in a given situation or not, and if not,
72 // message in cases where the feature is not available.
81 friend class Feature;
83 // 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/remoting/webapp/
client_plugin.js 59 remoting.ClientPlugin.Feature = {
75 * @param {remoting.ClientPlugin.Feature} feature The feature to test for.
76 * @return {boolean} True if the plugin supports the named feature.
78 remoting.ClientPlugin.prototype.hasFeature = function(feature) {};
host_controller.js 65 remoting.HostController.Feature = {
70 * @param {remoting.HostController.Feature} feature The feature to test for.
74 remoting.HostController.prototype.hasFeature = function(feature, callback) {
77 this.hostDispatcher_.hasFeature(feature, callback);
  /external/chromium_org/build/android/pylib/host_driven/
tests_annotations.py 88 def Feature(feature_list):
90 for feature in feature_list:
91 AnnotatedFunctions._AddFunction('Feature' + feature, function)
92 return AnnotatedFunctions._AddFunction('Feature', function)
  /external/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...]
  /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/clang/lib/Frontend/
FrontendActions.cpp 260 StringRef Feature;
261 if (!Module->isAvailable(CI.getLangOpts(), CI.getTarget(), Feature)) {
264 << Feature;
CompilerInstance.cpp     [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...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
Feature.java 17 * common methods that take the evalueation space of the feature.
21 /* package */class Feature {
24 /** Old memory address of the feature. */
26 /** The spatial that is hold by the Feature. */
28 /** The bone that is hold by the Feature. */
34 * Constructs the feature. This object should be loaded later
36 * The update method should be called before the feature is used.
45 public Feature(Space space, Long oma, BlenderContext blenderContext) {
52 * Constructs the feature based on spatial.
63 public Feature(Spatial spatial, Space space, Long oma, BlenderContext blenderContext) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
UseCounter.h 61 enum Feature {
171 // "count" sets the bit for this feature to 1. Repeated calls are ignored.
172 static void count(Document*, Feature);
173 static void count(DOMWindow*, Feature);
175 void count(Feature);
177 // "countDeprecation" sets the bit for this feature to 1, and sends a deprecation
182 static void countDeprecation(DOMWindow*, Feature);
183 static void countDeprecation(ScriptExecutionContext*, Feature);
184 static void countDeprecation(Document*, Feature);
185 String deprecationMessage(Feature);
    [all...]
  /external/harfbuzz/src/
harfbuzz-open.h 37 /* Use this if a feature applies to all glyphs */
49 HB_UShort* FeatureIndex; /* array of Feature indices */
52 HB_UShort FeatureCount; /* number of Feature indices */
95 /* Feature list related structures */
110 HB_Feature Feature; /* Feature table */
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-open.h 37 /* Use this if a feature applies to all glyphs */
49 HB_UShort* FeatureIndex; /* array of Feature indices */
52 HB_UShort FeatureCount; /* number of Feature indices */
95 /* Feature list related structures */
110 HB_Feature Feature; /* Feature table */
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-layout-common-private.hh 53 * Script, ScriptList, LangSys, Feature, FeatureList, Lookup, LookupList
177 struct Feature;
207 USHORT reqFeatureIndex;/* Index of a feature required for this
268 * Feature implementation. But we still need to be able to tell junk from
275 * 'size' feature that is correct by the specification.
277 * The specification for this feature tag is in the "OpenType Layout Tag
281 * Here is one set of rules to determine if the 'size' feature is built
285 * Assume that the offset to the size feature is according to specification,
287 * feature is calculated as versions of MakeOTF before the AFDKO 2.0 built it.
288 * If this fails, reject the 'size' feature. The older makeOTF's calculated th
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout-common-private.hh 53 * 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/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/clang/lib/Lex/
ModuleMap.cpp     [all...]

Completed in 2097 milliseconds

1 2