Searched defs:Feature (Results 1 - 25 of 28) sorted by relevance

12

/external/chromium_org/chrome/common/extensions/features/
H A Dfeature.cc17 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) {} function in class:extensions::Feature
41 Feature::~Feature() {}
[all...]
H A Dfeature.h24 class Feature { class in namespace:extensions
81 friend class Feature;
83 // Instances should be created via Feature::CreateAvailability.
91 Feature();
92 virtual ~Feature();
106 // Gets the Feature::Location value for the specified Manifest::Location.
/external/chromium_org/base/test/android/javatests/src/org/chromium/base/test/util/
H A DFeature.java17 * @Feature({"Foo", "Bar"})
24 public @interface Feature { interface
/external/guava/guava-testlib/src/com/google/common/collect/testing/features/
H A DFeature.java29 public interface Feature<T> { interface
31 Set<Feature<? super T>> getImpliedFeatures();
/external/chromium_org/remoting/webapp/
H A Dclient_plugin.js59 remoting.ClientPlugin.Feature = {
75 * @param {remoting.ClientPlugin.Feature} feature The feature to test for.
H A Dhost_controller.js65 remoting.HostController.Feature = {
70 * @param {remoting.HostController.Feature} feature The feature to test for.
/external/chromium_org/build/android/pylib/host_driven/
H A Dtests_annotations.py88 def Feature(feature_list): function
91 AnnotatedFunctions._AddFunction('Feature' + feature, function)
92 return AnnotatedFunctions._AddFunction('Feature', function)
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
H A DFeature.java21 /* package */class Feature { class
26 /** The spatial that is hold by the Feature. */
28 /** The bone that is hold by the Feature. */
45 public Feature(Space space, Long oma, BlenderContext blenderContext) { method in class:Feature
63 public Feature(Spatial spatial, Space space, Long oma, BlenderContext blenderContext) { method in class:Feature
80 public Feature(Bone bone, Space space, Long oma, BlenderContext blenderContext) { method in class:Feature
/external/clang/lib/Basic/
H A DModule.cpp54 static bool hasFeature(StringRef Feature, const LangOptions &LangOpts, argument
56 return llvm::StringSwitch<bool>(Feature)
65 .Default(Target.hasFeature(Feature));
70 StringRef &Feature) const {
77 Feature = Current->Requires[I];
146 void Module::addRequirement(StringRef Feature, const LangOptions &LangOpts, argument
148 Requires.push_back(Feature);
151 if (hasFeature(Feature, LangOpts, Target))
/external/clang/lib/Frontend/
H A DFrontendActions.cpp260 StringRef Feature; local
261 if (!Module->isAvailable(CI.getLangOpts(), CI.getTarget(), Feature)) {
264 << Feature;
H A DCompilerInstance.cpp1367 StringRef Feature; local
1368 if (!Module->isAvailable(getLangOpts(), getTarget(), Feature)) {
1371 << Feature
/external/llvm/lib/MC/
H A DSubtargetFeature.cpp30 static inline bool hasFlag(const StringRef Feature) { argument
31 assert(!Feature.empty() && "Empty string");
33 char Ch = Feature[0];
40 static inline std::string StripFlag(const StringRef Feature) { argument
41 return hasFlag(Feature) ? Feature.substr(1) : Feature;
46 static inline bool isEnabled(const StringRef Feature) { argument
47 assert(!Feature.empty() && "Empty string");
49 char Ch = Feature[
56 PrependFlag(const StringRef Feature, bool IsEnabled) argument
229 ToggleFeature(uint64_t Bits, const StringRef Feature, const SubtargetFeatureKV *FeatureTable, size_t FeatureTableSize) argument
307 const StringRef Feature = Features[i]; local
[all...]
/external/smack/src/org/jivesoftware/smackx/packet/
H A DDiscoverInfo.java46 private final List<Feature> features = new CopyOnWriteArrayList<Feature>();
67 for (Feature f : d.features) {
86 addFeature(new Feature(feature));
101 private void addFeature(Feature feature) {
112 public Iterator<Feature> getFeatures() {
185 for (Iterator<Feature> it = getFeatures(); it.hasNext();) {
207 for (Feature feature : features) {
240 List<Feature> checkedFeatures = new LinkedList<Feature>();
460 public static class Feature { class in class:DiscoverInfo
469 public Feature(String variable) { method in class:DiscoverInfo.Feature
[all...]
H A DStreamInitiation.java41 private Feature featureNegotiation;
117 this.featureNegotiation = new Feature(form);
380 public class Feature implements PacketExtension { class in class:StreamInitiation
389 public Feature(final DataForm data) { method in class:StreamInitiation.Feature
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DUseCounter.h61 enum Feature { enum in class:WebCore::UseCounter
172 static void count(Document*, Feature);
173 static void count(DOMWindow*, Feature);
175 void count(Feature);
182 static void countDeprecation(DOMWindow*, Feature);
183 static void countDeprecation(ScriptExecutionContext*, Feature);
184 static void countDeprecation(Document*, Feature);
185 String deprecationMessage(Feature);
196 bool recordMeasurement(Feature feature)
/external/harfbuzz/src/
H A Dharfbuzz-open.h49 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 */ member in struct:HB_FeatureRecord_
/external/harfbuzz_ng/src/hb-old/
H A Dharfbuzz-open.h49 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 */ member in struct:HB_FeatureRecord_
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-layout-common-private.hh53 * Script, ScriptList, LangSys, Feature, FeatureList, Lookup, LookupList
177 struct Feature;
268 * Feature implementation. But we still need to be able to tell junk from
290 * beginning of the 'size' Feature table.
381 * added to the end of this Feature Parameters
391 * Feature Parameters specification. The
471 struct Feature struct in namespace:OT
486 const Record<Feature>::sanitize_closure_t *closure) {
529 featureParams; /* Offset to Feature Parameters table (if one
531 * to the beginning of the Feature Tabl
[all...]
/external/libnfc-nci/src/udrv/include/
H A Ducodec.h205 tUCODEC_FEATURE Feature; member in struct:tUCODEC_CNF_TAG
/external/llvm/utils/TableGen/
H A DSubtargetEmitter.cpp193 Record *Feature = FeatureList[i]; local
195 const std::string &Name = Feature->getName();
196 const std::string &CommandLineName = Feature->getValueAsString("Name");
197 const std::string &Desc = Feature->getValueAsString("Desc");
208 Feature->getValueAsListOfDefs("Implies");
/external/clang/lib/Lex/
H A DModuleMap.cpp1297 std::string Feature = Tok.getString(); local
1301 ActiveModule->addRequirement(Feature, Map.LangOpts, *Map.Target);
/external/harfbuzz_ng/src/
H A Dhb-ot-layout-common-private.hh53 * Script, ScriptList, LangSys, Feature, FeatureList, Lookup, LookupList
178 struct Feature;
269 * Feature implementation. But we still need to be able to tell junk from
291 * beginning of the 'size' Feature table.
382 * added to the end of this Feature Parameters
392 * Feature Parameters specification. The
472 struct Feature struct in namespace:OT
487 const Record<Feature>::sanitize_closure_t *closure) {
530 featureParams; /* Offset to Feature Parameters table (if one
532 * to the beginning of the Feature Tabl
[all...]
/external/clang/lib/AST/
H A DVTableBuilder.cpp2597 void ErrorUnsupported(StringRef Feature, SourceLocation Location) { argument
2601 Diags.Report(Context.getFullLoc(Location), DiagID) << Feature;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.metadata.generator_1.0.200.v20100503a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.touchpoint.eclipse_2.0.2.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1906 milliseconds

12