Searched refs:feature (Results 201 - 225 of 364) sorted by relevance

1234567891011>>

/external/chromium_org/remoting/webapp/
H A Dclient_plugin.js109 * @param {remoting.ClientPlugin.Feature} feature
110 * @return {boolean} True if the plugin support the specified feature.
112 remoting.ClientPlugin.prototype.hasFeature = function(feature) {};
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-gobject-structs.cc75 HB_DEFINE_BOXED_TYPE (feature, feature_reference, feature_destroy)
/external/harfbuzz_ng/src/
H A Dhb-gobject-structs.cc75 HB_DEFINE_BOXED_TYPE (feature, feature_reference, feature_destroy)
/external/chromium_org/content/browser/gpu/
H A Dgpu_data_manager_impl_private.h34 bool IsFeatureBlacklisted(int feature) const;
35 bool IsDriverBugWorkaroundActive(int feature) const;
/external/chromium_org/content/common/
H A Dchild_process_host_impl.cc38 // it to correspond to |feature|. For a child process path such as
40 // path for feature "NP" would be
44 const std::string& feature) {
65 new_basename.append(feature);
126 // non-executable heap, but the "EH" feature is provided to allow code
43 TransformPathForFeature(const base::FilePath& path, const std::string& feature) argument
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8PerIsolateData.cpp53 static void useCounterCallback(v8::Isolate* isolate, v8::Isolate::UseCounterFeature feature) argument
55 switch (feature) {
/external/chromium_org/v8/src/compiler/
H A Dinstruction-selector-unittest.h63 Stream Build(CpuFeature feature) { argument
64 return Build(InstructionSelector::Features(feature));
H A Dinstruction-selector.h62 // ============== Architecture-independent CPU feature methods. ==============
78 bool IsSupported(CpuFeature feature) const {
79 return features_.Contains(feature);
/external/e2fsprogs/debugfs/
H A Ddebug_cmds.ct20 feature, features;
/external/fonttools/Lib/fontTools/
H A Dmerge.py460 feature = [featureMap[v] for v in langsys.FeatureIndex if featureMap[v].FeatureTag == 'locl']
461 assert len(feature) <= 1
462 if feature:
463 feature = feature[0]
477 feature = synthFeature
490 feature.Feature.LookupListIndex[:0] = [id(synthLookup)]
491 feature.Feature.LookupCount += 1
/external/fonttools/Tools/fontTools/
H A Dmerge.py460 feature = [featureMap[v] for v in langsys.FeatureIndex if featureMap[v].FeatureTag == 'locl']
461 assert len(feature) <= 1
462 if feature:
463 feature = feature[0]
477 feature = synthFeature
490 feature.Feature.LookupListIndex[:0] = [id(synthLookup)]
491 feature.Feature.LookupCount += 1
/external/guava/guava-testlib/src/com/google/common/collect/testing/features/
H A DFeatureUtil.java73 for (Feature<?> feature : features) {
74 implied.addAll(feature.getImpliedFeatures());
/external/libnl/include/
H A Dnetlink-local.h148 dst->rs_feature = src->feature;
158 dst->feature = src->rs_feature;
/external/lldb/scripts/Python/interface/
H A DSBSymbolContextList.i12 %feature("docstring",
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.updatesite_1.0.201.R36x_v20100823.jar ... CATEGORY_DEF private static final String DESCRIPTION private static final String FEATURE private static final String SITE private static final String IU ...
H A Dorg.eclipse.update.configurator_3.3.100.v20100512.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
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 ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
H A Dpdebuild.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/build/ ...
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Davailability_finder.py36 feature = features.Get().get(api_name)
37 return feature.get('channel') if feature else None
/external/chromium_org/components/policy/tools/
H A Dsyntax_check_policy_template_json.py263 for feature in features:
264 if not feature in self.features:
265 self._Error('Unknown feature "%s". Known features must have a '
267 feature, 'policy', policy.get('name', policy))
269 # All user policies must have a per_profile feature flag.
/external/chromium_org/extensions/browser/guest_view/
H A Dguest_view_base.cc24 #include "extensions/common/features/feature.h"
123 Feature* feature = FeatureProvider::GetAPIFeatures()->GetFeature( local
125 CHECK(feature);
140 Feature::Availability availability = feature->IsAvailableToContext(
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTM.java173 * Set an implementation dependent feature.
177 * @param featureId A feature URL.
178 * @param state true if this feature should be on, false otherwise.
557 * Tests whether DTM DOM implementation implements a specific feature and
558 * that feature is supported by this node.
559 * @param feature The name of the feature to test.
560 * @param version This is the version number of the feature to test.
562 * specified, supporting any version of the feature will cause the
564 * @return Returns <code>true</code> if the specified feature i
567 isSupported(String feature, String version) argument
[all...]
/external/chromium_org/extensions/common/features/
H A Dsimple_feature.cc32 const Feature* feature) {
33 return feature->IsAvailableToManifest(
41 const Feature* feature) {
42 return feature->IsAvailableToContext(extension, context, url, platform);
297 // For example, we might have feature "foo" available to "web_page" context
298 // and "matches" google.com/*. Then a sub-feature "foo.bar" might override
299 // "matches" to be chromium.org/*. That sub-feature doesn't need to specify
323 // when we compile feature files.
336 // Component extensions can access any feature.
406 // Fewer surprises, and if the feature configuratio
26 IsAvailableToManifestForBind( const std::string& extension_id, Manifest::Type type, Manifest::Location location, int manifest_version, Feature::Platform platform, const Feature* feature) argument
37 IsAvailableToContextForBind(const Extension* extension, Feature::Context context, const GURL& url, Feature::Platform platform, const Feature* feature) argument
[all...]
/external/chromium_org/remoting/webapp/browser_test/
H A Dmock_client_plugin.js96 remoting.MockClientPlugin.prototype.hasFeature = function(feature) {
/external/libnfc-nci/src/udrv/include/
H A Dupio.h23 /* Use UPIO_Feature() to determine support of a particular feature. */
348 ** Checks whether a feature of the pio API is supported
351 ** feature The feature to check
357 ** TRUE if feature is supported, FALSE if it is not.
360 UDRV_API BOOLEAN UPIO_Feature(tUPIO_FEATURE feature);

Completed in 793 milliseconds

1234567891011>>