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

  /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/clang/lib/Frontend/
FrontendActions.cpp 239 StringRef Feature;
240 if (!Module->isAvailable(CI.getLangOpts(), CI.getTarget(), Feature)) {
243 << Feature;
CompilerInstance.cpp     [all...]
  /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...]
  /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...]
  /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/clang/lib/Lex/
PPMacroExpansion.cpp 588 /// HasFeature - Return true if we recognize and implement the feature
589 /// specified by the identifier as a standard language feature.
592 StringRef Feature = II->getName();
594 // Normalize the feature name, __foo__ becomes foo.
595 if (Feature.startswith("__") && Feature.endswith("__") && Feature.size() >= 4)
596 Feature = Feature.substr(2, Feature.size() - 4)
    [all...]
ModuleMap.cpp 988 /// 'requires' feature-list
990 /// feature-list:
991 /// identifier ',' feature-list
999 // Parse the feature-list.
1007 // Consume the feature name.
1008 std::string Feature = Tok.getString();
1011 // Add this feature.
1012 ActiveModule->addRequirement(Feature, Map.LangOpts, *Map.Target);
    [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/llvm/utils/TableGen/
SubtargetEmitter.cpp 95 // Begin feature table
100 // For each feature
103 // Next feature
104 Record *Feature = FeatureList[i];
106 const std::string &Name = Feature->getName();
107 const std::string &CommandLineName = Feature->getValueAsString("Name");
108 const std::string &Desc = Feature->getValueAsString("Desc");
112 // Emit as { "feature", "description", featureEnum, i1 | i2 | ... | in }
119 Feature->getValueAsListOfDefs("Implies");
139 // End feature tabl
    [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/webkit/Source/WebKit/qt/Api/
qwebpage.h 210 enum Feature {
317 void setFeaturePermission(QWebFrame* frame, Feature feature, PermissionPolicy policy);
403 void featurePermissionRequested(QWebFrame* frame, QWebPage::Feature feature);
404 void featurePermissionRequestCanceled(QWebFrame* frame, QWebPage::Feature feature);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.metadata.generator_1.0.200.v20100503a.jar 
org.eclipse.equinox.p2.touchpoint.eclipse_2.0.2.R36x_v20100823.jar 
org.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jar 
org.eclipse.pde.core_3.6.1.v20100902_r361.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
pdebuild.jar 

Completed in 245 milliseconds