| /third_party/gstreamer/gstplugins_bad/ |
| D | meson_options.txt | 4 # Feature options for plugins without external deps 5 option('accurip', type : 'feature', value : 'auto') 6 option('adpcmdec', type : 'feature', value : 'auto') 7 option('adpcmenc', type : 'feature', value : 'auto') 8 option('aiff', type : 'feature', value : 'auto') 9 option('asfmux', type : 'feature', value : 'auto') 10 option('audiobuffersplit', type : 'feature', value : 'auto') 11 option('audiofxbad', type : 'feature', value : 'auto') 12 option('audiolatency', type : 'feature', value : 'auto') 13 option('audiomixmatrix', type : 'feature', value : 'auto') [all …]
|
| /third_party/gstreamer/gstplugins_good/ |
| D | meson_options.txt | 1 # Feature options for plugins without external deps 2 option('alpha', type : 'feature', value : 'auto') 3 option('apetag', type : 'feature', value : 'auto') 4 option('audiofx', type : 'feature', value : 'auto') 5 option('audioparsers', type : 'feature', value : 'auto') 6 option('auparse', type : 'feature', value : 'auto') 7 option('autodetect', type : 'feature', value : 'auto') 8 option('avi', type : 'feature', value : 'auto') 9 option('cutter', type : 'feature', value : 'auto') 10 option('debugutils', type : 'feature', value : 'auto') [all …]
|
| /third_party/gstreamer/gstreamer/gst/ |
| D | gstpluginfeature.c | 57 gst_plugin_feature_init (GstPluginFeature * feature) in gst_plugin_feature_init() argument 65 GstPluginFeature *feature = GST_PLUGIN_FEATURE_CAST (object); in gst_plugin_feature_finalize() local 67 GST_DEBUG ("finalizing feature %p: '%s'", feature, GST_OBJECT_NAME (feature)); in gst_plugin_feature_finalize() 69 if (feature->plugin != NULL) { in gst_plugin_feature_finalize() 70 g_object_remove_weak_pointer ((GObject *) feature->plugin, in gst_plugin_feature_finalize() 71 (gpointer *) & feature->plugin); in gst_plugin_feature_finalize() 79 * @feature: (transfer none): the plugin feature to check 81 * Loads the plugin containing @feature if it's not already loaded. @feature is 88 * loaded_feature = gst_plugin_feature_load (feature); 89 * // presumably, we're no longer interested in the potentially-unloaded feature [all …]
|
| D | gstcapsfeatures.c | 31 * structures with different feature sets to the caps. 130 gst_caps_feature_name_is_valid (const gchar * feature) in gst_caps_feature_name_is_valid() argument 134 if (g_ascii_isalpha (*feature)) in gst_caps_feature_name_is_valid() 135 feature++; in gst_caps_feature_name_is_valid() 136 else if (*feature == ':') in gst_caps_feature_name_is_valid() 142 if (*feature != ':') in gst_caps_feature_name_is_valid() 145 feature++; in gst_caps_feature_name_is_valid() 146 if (*feature == '\0' || !g_ascii_isalpha (*feature)) in gst_caps_feature_name_is_valid() 150 if (g_ascii_isalnum (*feature)) in gst_caps_feature_name_is_valid() 151 feature++; in gst_caps_feature_name_is_valid() [all …]
|
| /third_party/gstreamer/gstplugins_base/ |
| D | meson_options.txt | 5 option('iso-codes', type : 'feature', value : 'auto', 24 # Feature option for opengl plugin and integration library 25 option('gl', type : 'feature', value : 'auto', description : 'OpenGL integration library and OpenGL… 26 option('gl-graphene', type : 'feature', value : 'auto', description : 'Use Graphene in OpenGL plugi… 27 option('gl-jpeg', type : 'feature', value : 'auto', description : 'Use libjpeg in OpenGL plugin') 28 option('gl-png', type : 'feature', value : 'auto', description : 'Use libpng in OpenGL plugin') 30 # Feature options for plugins with no external deps 31 option('adder', type : 'feature', value : 'auto') 32 option('app', type : 'feature', value : 'auto') 33 option('audioconvert', type : 'feature', value : 'auto') [all …]
|
| /third_party/boost/tools/build/src/build/ |
| D | feature.py | 38 class Feature(object): class 64 get_manager().errors()('"{}" feature "<{}>" cannot have a default value.' 70 assert isinstance(name, Feature) 73 def set_parent(self, feature, value): argument 74 assert isinstance(feature, Feature) 76 self.parent = (feature, value) 94 setattr(Feature, attr.replace("-", "_"), False) 96 # A map containing all features. The key is the feature name. 97 # The value is an instance of Feature class. 103 # Maps valus to the corresponding implicit feature [all …]
|
| D | feature.jam | 52 for local v in [ VARNAMES feature ] 70 for local v in [ VARNAMES feature ] 96 # Declare a new feature with the given name, values, and attributes. 98 rule feature ( 99 name # Feature name. 100 : values * # Allowable values - may be extended later using feature.extend. 101 : attributes * # Feature attributes (e.g. implicit, free, propagated...). 116 error = feature already "defined:" ; 131 error = "feature value may not contain '='" ; 139 : "in" feature "declaration:" [all …]
|
| D | property_set.py | 13 import property, feature 14 import b2.build.feature 55 x = sorted(set(x), key=lambda p: (p.feature.name, p.value, p.condition)) 220 f = p.feature 223 # A feature can be both incidental and free, 268 if not(p.feature.incidental or p.feature.free)] 276 if not p.feature.incidental and p.feature.free] 286 result = [p for p in self.lazy_properties if p.feature.dependency] 293 result = [p for p in self.lazy_properties if not p.feature.dependency] 310 result = [p for p in self.lazy_properties if p.feature.incidental] [all …]
|
| D | property.py | 15 from b2.build import feature 30 feature.feature(_not_applicable_feature, [], ['free']) 58 from b2.build.feature import Feature 59 if not isinstance(f, Feature): 60 f = feature.get(f) 71 return (hasattr(obj, 'feature') and 85 __slots__ = ('feature', 'value', 'condition', '_to_raw', '_hash', 'id') 93 self.feature = f 96 self._hash = hash((self.feature, self.value) + tuple(sorted(self.condition))) 125 return (self.feature.name, self.value) < (other.feature.name, other.value) [all …]
|
| D | property.jam | 9 import feature ; 32 if ! [ MATCH "(:<)" : $(r:G=) ] && ! free in [ feature.attributes $(r:G) ] 37 local sub = [ modules.peek feature : $(r:G).subfeatures ] ; 74 if [ MATCH "(:<)" : $(p) ] && ! free in [ feature.attributes $(p:G) ] 151 # properties affect feature relevance. If the optional argument cond 162 if ! $(s) || free in [ feature.attributes $(p:G) ] 204 e += [ feature.expand-subfeatures $(c) : true ] ; 225 # within the two sections in alphabetical order of feature name. 241 x = [ feature.expand-subfeatures $(x) ] ; 242 y = [ feature.expand-subfeatures $(y) ] ; [all …]
|
| /third_party/boost/tools/build/src/tools/ |
| D | builtin.py | 14 from b2.build import feature, property, virtual_target, generators, type, property_set, scanner 68 if not feature.is_implicit_value (p): 81 feature.extend('variant', [name]) 82 feature.compose ("<variant>" + name, explicit_properties.all()) 114 # This feature is used to determine which OS we're on. 118 feature.feature ('os', [os], ['propagated', 'link-incompatible']) 126 feature.feature('host-os', __os_names) 127 feature.set_default('host-os', default_host_os()) 129 feature.feature('target-os', __os_names, ['propagated', 'link-incompatible']) 130 feature.set_default('target-os', default_host_os()) [all …]
|
| /third_party/gstreamer/gstplugins_bad/ext/opencv/ |
| D | palm.xml | 15 <feature> 21 <tilted>0</tilted></feature> 27 <feature> 33 <tilted>0</tilted></feature> 41 <feature> 47 <tilted>0</tilted></feature> 53 <feature> 59 <tilted>1</tilted></feature> 67 <feature> 73 <tilted>0</tilted></feature> [all …]
|
| D | fist.xml | 14 <feature> 20 <tilted>0</tilted></feature> 28 <feature> 34 <tilted>0</tilted></feature> 48 <feature> 56 <tilted>0</tilted></feature> 64 <feature> 70 <tilted>0</tilted></feature> 78 <feature> 84 <tilted>0</tilted></feature> [all …]
|
| /third_party/boost/tools/build/test/ |
| D | expansion.py | 15 import feature : feature ; 22 feature.extend toolset : null ; 26 feature expected-define : : free ; 27 feature unexpected-define : : free ; 58 # See if default value of composite feature 'cf' will be expanded to 75 # Overriding a feature should clear subfeatures and 81 # Subfeatures should not be changed if the parent feature doesn't change 84 # If a subfeature is not specific to the value of the parent feature, 88 # If the default value of a composite feature adds an optional 89 # feature which has a subfeature with a default, then that [all …]
|
| D | feature_relevant.py | 8 # Tests the <relevant> feature 16 import feature : feature ; 21 feature xxxflags : : free ; 34 import feature : feature ; 37 feature zzz.enabled : off on : propagated ; 50 import feature : feature ; 54 feature aaaflags : : free ; 67 import feature : feature ; 70 feature f1 : n y : composite propagated ; 71 feature.compose <f1>y : <xxxflags>-no1 ; [all …]
|
| D | command_line_properties.py | 6 '''Tests that feature=value works''' 9 import feature : feature ; 11 feature f1 : 1 2 ; 21 '''Tests that implicit features can be named without a feature''' 24 import feature : feature ; 26 feature f1 : v1 v2 : implicit ; 36 '''Tests that feature= works for optional features''' 39 import feature : feature ; 41 feature f1 : 1 2 : optional ; 56 import feature : feature ; [all …]
|
| /third_party/flutter/flutter/packages/flutter_tools/lib/src/ |
| D | features.dart | 17 /// The interface used to determine if a particular [Feature] is enabled. 42 // Calculate whether a particular feature is enabled for the current channel. 43 static bool _isEnabled(Feature feature) { 45 final FeatureChannelSetting featureSetting = feature.getSettingForChannel(currentChannel); 50 if (feature.configSetting != null) { 51 final bool configOverride = Config.instance.getValue(feature.configSetting); 56 if (feature.environmentOverride != null) { 57 if (platform.environment[feature.environmentOverride]?.toLowerCase() == 'true') { 65 /// All current Flutter feature flags. 66 const List<Feature> allFeatures = <Feature>[ [all …]
|
| /third_party/googletest/googletest/ |
| D | CHANGES | 3 * New feature: death tests are supported on OpenBSD and in iOS 5 * New feature: Google Test now implements a protocol to allow 9 * New feature: Test::RecordProperty() can now be used outside of the 12 * New feature (potentially breaking): --gtest_list_tests now prints 30 * New feature: ADD_FAILURE_AT() for reporting a test failure at the 32 * New feature: the universal value printer is moved from Google Mock 34 * New feature: type parameters and value parameters are reported in 62 * New feature: assertions can be safely called in multiple threads 64 * New feature: predicates used inside EXPECT_TRUE() and friends 66 * New feature: Google Test can now be compiled as a DLL. [all …]
|
| /third_party/boost/boost/accumulators/framework/ |
| D | extractor.hpp | 39 template<typename AccumulatorSet, typename Feature> 42 typedef typename as_feature<Feature>::type feature_type; 51 template<typename Args, typename Feature> 62 , Feature 67 template<typename A, typename Feature> 71 , accumulator_set_result<A, Feature> 72 , argument_pack_result<A, Feature> 77 template<typename Feature, typename AccumulatorSet> 78 typename extractor_result<AccumulatorSet, Feature>::type 81 typedef typename as_feature<Feature>::type feature_type; in do_extract() [all …]
|
| /third_party/Linux_Kernel/scripts/ |
| D | checkkconfigsymbols.py | 20 FEATURE = r"(?:\w*[A-Z0-9]\w*){2,}" variable 21 DEF = r"^\s*(?:menu){,1}config\s+(" + FEATURE + r")\s*" 22 EXPR = r"(?:" + OPERATORS + r"|\s|" + FEATURE + r")+" 25 SOURCE_FEATURE = r"(?:\W|\b)+[D]{,1}CONFIG_(" + FEATURE + r")" 29 REGEX_FEATURE = re.compile(r'(?!\B"[^"]*)' + FEATURE + r'(?![^"]*"\B)') 137 for feature in sorted(undefined_b): 138 # feature has not been undefined before 139 if not feature in undefined_a: 140 files = sorted(undefined_b.get(feature)) 141 print "%s\t%s" % (yel(feature), ", ".join(files)) [all …]
|
| /third_party/grpc/examples/node/static_codegen/route_guide/ |
| D | route_guide_server.js | 32 * {latitude: number, longitude: number}, and a feature is a record type that 33 * looks like {name: string, location: point}. feature objects with name==='' 34 * are points with no feature. 38 * List of feature objects at points that have been requested so far. 43 * Get a feature object at the given point, or creates one if it does not exist. 45 * @return {feature} The feature object at the point. Note that an empty name 46 * indicates no feature 49 var feature; 50 // Check if there is already a feature object for the given point 52 feature = feature_list[i]; [all …]
|
| /third_party/harfbuzz/ |
| D | meson_options.txt | 1 # HarfBuzz feature options 2 option('glib', type: 'feature', value: 'auto', 4 option('gobject', type: 'feature', value: 'auto', 6 option('cairo', type: 'feature', value: 'auto', 8 option('chafa', type: 'feature', value: 'auto', 10 option('icu', type: 'feature', value: 'auto', 12 option('graphite', type: 'feature', value: 'disabled', 14 option('freetype', type: 'feature', value: 'auto', 16 option('gdi', type: 'feature', value: 'disabled', 18 option('directwrite', type: 'feature', value: 'disabled', [all …]
|
| /third_party/python/Lib/msilib/ |
| D | text.py | 12 ('PublishFeatures', 'Publishing Product Features', 'Feature: [1]'), 29 ('MigrateFeatureStates', 'Migrating feature states from related applications', 'Application: [1]'), 54 ('UnpublishFeatures', 'Unpublishing Product Features', 'Feature: [1]'), 82 ('MenuAbsent', 'Entire feature will be unavailable'), 83 ('MenuAdvertise', 'Feature will be installed when required'), 84 ('MenuAllCD', 'Entire feature will be installed to run from CD'), 85 ('MenuAllLocal', 'Entire feature will be installed on local hard drive'), 86 ('MenuAllNetwork', 'Entire feature will be installed to run from network'), 91 ('SelAbsentAbsent', 'This feature will remain uninstalled'), 92 ('SelAbsentAdvertise', 'This feature will be set to be installed when required'), [all …]
|
| /third_party/flutter/flutter/packages/flutter_tools/lib/src/commands/ |
| D | config.dart | 34 for (Feature feature in allFeatures) { 35 if (feature.configSetting == null) { 39 feature.configSetting, 40 help: feature.generateHelpMessage(), 58 …'The Flutter tool anonymously reports feature usage statistics and basic crash reports to help imp… 69 // List all config settings. for feature flags, include whether they 71 final Map<String, Feature> featuresByName = <String, Feature>{}; 73 for (Feature feature in allFeatures) { 74 if (feature.configSetting != null) { 75 featuresByName[feature.configSetting] = feature; [all …]
|
| /third_party/json/benchmarks/thirdparty/benchmark/cmake/ |
| D | CXXFeatureCheck.cmake | 23 string(TOUPPER "HAVE_${VAR}" FEATURE) 30 if (NOT DEFINED COMPILE_${FEATURE}) 31 message("-- Performing Test ${FEATURE}") 33 try_compile(COMPILE_${FEATURE} 37 if(COMPILE_${FEATURE}) 40 set(RUN_${FEATURE} 0) 42 set(RUN_${FEATURE} 1) 45 message("-- Performing Test ${FEATURE}") 46 try_run(RUN_${FEATURE} COMPILE_${FEATURE} 53 if(RUN_${FEATURE} EQUAL 0) [all …]
|