HomeSort by relevance Sort by last modified time
    Searched defs:Feature (Results 1 - 21 of 21) 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 257 StringRef Feature;
258 if (!Module->isAvailable(CI.getLangOpts(), CI.getTarget(), Feature)) {
261 << 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...]
  /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/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/clang/lib/Lex/
ModuleMap.cpp     [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/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 927 milliseconds