/external/pixman/pixman/ |
pixman-x86.c | 110 pixman_cpuid (uint32_t feature, 119 : "a" (feature)); 134 : "a" (feature)); 140 __cpuid (info, feature); 160 /* Get feature bits */ 204 have_feature (cpu_features_t feature) 215 return (features & feature) == feature;
|
/external/lldb/scripts/Python/interface/ |
SBBlock.i | 12 %feature("docstring", 25 %feature("docstring", 34 %feature("docstring", " 41 %feature("docstring", " 48 %feature("docstring", " 55 %feature("docstring", " 62 %feature("docstring", "Get the parent block.") GetParent; 66 %feature("docstring", "Get the inlined block that is or contains this block.") GetContainingInlinedBlock; 70 %feature("docstring", "Get the sibling block for this block.") GetSibling; 74 %feature("docstring", "Get the first child block.") GetFirstChild [all...] |
/external/chromium_org/third_party/WebKit/Source/build/scripts/ |
audit_runtime_enabled_features.py | 43 return [feature['name'] for feature in in_file.name_dictionaries if feature['status'] == 'stable'] 58 for feature in added_features: 59 print "+ %s" % feature 60 for feature in removed_features: 61 print "- %s" % feature 171 for feature in stale_features(historical_tuples): 172 print feature
|
name_utilities.py | 99 def enable_conditional_if_endif(code, feature): 100 # Jinja2 filter to generate if/endif directive blocks based on a feature 101 if not feature: 103 condition = 'ENABLE(%s)' % feature
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
UseCounter.cpp | 598 void UseCounter::count(const Document& document, Feature feature) 604 ASSERT(host->useCounter().deprecationMessage(feature).isEmpty()); 605 host->useCounter().recordMeasurement(feature); 608 void UseCounter::count(const ExecutionContext* context, Feature feature) 613 count(*toDocument(context), feature); local 617 toWorkerGlobalScope(context)->countFeature(feature); 620 void UseCounter::countDeprecation(ExecutionContext* context, Feature feature) 625 UseCounter::countDeprecation(*toDocument(context), feature); local [all...] |
/external/valgrind/main/tests/ |
s390x_features.c | 17 // - 0 if the machine provides the asked-for feature and the cpu 19 // - 1 the machine does not provide the asked-for feature or the 22 // - 2 if the asked-for feature isn't recognised (this will be the case for 23 // any feature if run on a non-s390x machine). 28 // s390x_features <feature> [<machine-model>] 200 static int go(char *feature, char *cpu) 209 if (strcmp(feature, "s390x-zarch") == 0 ) { 211 } else if (strcmp(feature, "s390x-n3") == 0 ) { 213 } else if (strcmp(feature, "s390x-stfle") == 0 ) { 215 } else if (strcmp(feature, "s390x-ldisp") == 0 ) [all...] |
/external/chromium_org/content/browser/resources/gpu/ |
info_view.css | 54 #info-view .feature-green { 58 #info-view .feature-yellow { 62 #info-view .feature-red {
|
/frameworks/opt/net/ims/src/java/com/android/ims/ |
ImsConfig.java | 26 * Provides APIs to get/set the IMS service feature/capability/parameters. 29 * 2) Items configured by user. Mainly service feature class. 39 * Defines IMS service/capability feature constants. 172 * Defines IMS feature value. 283 * Gets the value for IMS feature item for specified network type. 285 * @param feature, defined as in FeatureConstants. 287 * @param listener, provided to be notified for the feature on/off status. 292 public void getFeatureValue(int feature, int network, 295 Rlog.d(TAG, "getFeatureValue: feature = " + feature + ", network =" + network [all...] |
/external/chromium_org/extensions/common/features/ |
complex_feature_unittest.cc | 19 using extensions::Feature; 35 SimpleFeature* feature = new SimpleFeature(); local 36 feature->AddFilter(scoped_ptr<extensions::SimpleFeatureFilter>( 37 new extensions::ChromeChannelFeatureFilter(feature))); 38 return feature; 70 scoped_ptr<ComplexFeature> feature(new ComplexFeature(features.Pass())); 74 Feature::IS_AVAILABLE, 75 feature->IsAvailableToManifest(kIdFoo, 78 Feature::UNSPECIFIED_PLATFORM, 79 Feature::GetCurrentPlatform()).result()) [all...] |
simple_feature_filter.cc | 11 SimpleFeatureFilter::SimpleFeatureFilter(SimpleFeature* feature) 12 : feature_(feature) {} 20 Feature::Availability SimpleFeatureFilter::IsAvailableToContext( 22 Feature::Context context, 24 Feature::Platform platform) const { 25 return Feature::CreateAvailability(Feature::IS_AVAILABLE, std::string()); 28 Feature::Availability SimpleFeatureFilter::IsAvailableToManifest( 33 Feature::Platform platform) const { 34 return Feature::CreateAvailability(Feature::IS_AVAILABLE, std::string()) [all...] |
feature_provider.h | 13 class Feature; 21 // Returns the feature with the specified name. 22 virtual Feature* GetFeature(const std::string& name) const = 0; 24 // Returns the parent feature of |feature|, or NULL if there isn't one. 25 virtual Feature* GetParent(Feature* feature) const = 0; 28 virtual std::vector<Feature*> GetChildren(const Feature& parent) const = 0 [all...] |
/external/chromium_org/chrome/common/extensions/docs/server2/ |
features_bundle.py | 26 def _AddPlatformsAndChannelsFromDependencies(feature, 35 dependencies = feature.get('dependencies') 45 # so is this feature. 49 # |feature| specifies platforms the it's considered an override. If not, 55 if platforms and not feature.get('platforms'): 56 feature['platforms'] = list(platforms) 57 if channel and not feature.get('channel'): 58 feature['channel'] = channel 138 for feature in api_features.itervalues(): 140 feature, api_features, manifest_features, permission_features [all...] |
/frameworks/base/tests/FeatureSplit/feature2/ |
Android.mk | 32 LOCAL_AAPT_FLAGS := --feature-of $(featureOfApk) 33 LOCAL_AAPT_FLAGS += --feature-after $(featureAfterApk)
|
/libcore/dom/src/test/java/org/w3c/domts/ |
DOMTestIncompatibleException.java | 50 public static DOMTestIncompatibleException incompatibleFeature(String feature, 53 "Implementation does not support feature \""); 54 buf.append(feature);
|
/prebuilts/misc/common/swig/include/2.0.11/python/ |
pyabc.i | 2 %feature("python:abc", #Abc) Type;
|
std_pair.i | 156 %feature("python:sq_length") std::pair "SwigPython_std_pair_len"; 157 %feature("python:sq_length") std::pair<T*,U> "SwigPython_std_pair_len"; 158 %feature("python:sq_length") std::pair<T,U*> "SwigPython_std_pair_len"; 159 %feature("python:sq_length") std::pair<T*,U*> "SwigPython_std_pair_len"; 161 %feature("python:tp_repr") std::pair "SwigPython_std_pair_repr"; 162 %feature("python:tp_repr") std::pair<T*,U> "SwigPython_std_pair_repr"; 163 %feature("python:tp_repr") std::pair<T,U*> "SwigPython_std_pair_repr"; 164 %feature("python:tp_repr") std::pair<T*,U*> "SwigPython_std_pair_repr"; 166 %feature("python:sq_item") std::pair "SwigPython_std_pair_getitem"; 167 %feature("python:sq_item") std::pair<T*,U> "SwigPython_std_pair_getitem" [all...] |
carrays.i | 3 %feature("python:slot", "sq_item", functype="ssizeargfunc") NAME::__getitem__; 4 %feature("python:slot", "sq_ass_item", functype="ssizeobjargproc") NAME::__setitem__;
|
/external/chromium_org/chrome/browser/gpu/ |
gpu_feature_checker.h | 22 GPUFeatureChecker(gpu::GpuFeatureType feature, 26 // will be called to indicate the availability of the feature. Must be called
|
/external/chromium_org/chrome/common/extensions/features/ |
chrome_channel_feature_filter.h | 13 // This filter parses a "channel" key from feature value data and makes features 17 explicit ChromeChannelFeatureFilter(SimpleFeature* feature); 22 virtual Feature::Availability IsAvailableToManifest( 27 Feature::Platform platform) const OVERRIDE;
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DOMImplementation.cpp | 69 static bool isSupportedSVG10Feature(const String& feature, const String& version) 94 return feature.startsWith("org.w3c.", false) 95 && svgFeatures.contains(feature.right(feature.length() - 8)); 98 static bool isSupportedSVG11Feature(const String& feature, const String& version) 106 // Sadly, we cannot claim to implement any of the SVG 1.1 generic feature sets 160 return feature.startsWith("http://www.w3.org/tr/svg11/feature#", false) 161 && svgFeatures.contains(feature.right(feature.length() - 35)) [all...] |
/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
mucroomconfigtask.cc | 74 for (std::vector<std::string>::const_iterator feature = room_features.begin(); 75 feature != room_features.end(); ++feature) { 78 features_value->SetBodyText(*feature);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/ |
domreg.py | 48 find one with the required feature set. If no implementation can 50 of (feature, version) pairs which are passed to hasFeature.""" 88 feature = parts[i] 89 if feature[0] in "0123456789": 90 raise ValueError, "bad feature name: %r" % (feature,) 98 features.append((feature, version))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/ |
domreg.py | 48 find one with the required feature set. If no implementation can 50 of (feature, version) pairs which are passed to hasFeature.""" 88 feature = parts[i] 89 if feature[0] in "0123456789": 90 raise ValueError, "bad feature name: %r" % (feature,) 98 features.append((feature, version))
|
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/ |
sctp_var.h | 50 #define sctp_feature_on(inp, feature) (inp->sctp_features |= feature) 51 #define sctp_feature_off(inp, feature) (inp->sctp_features &= ~feature) 52 #define sctp_is_feature_on(inp, feature) ((inp->sctp_features & feature) == feature) 53 #define sctp_is_feature_off(inp, feature) ((inp->sctp_features & feature) == 0) 55 #define sctp_stcb_feature_on(inp, stcb, feature) {\ [all...] |
/prebuilts/misc/common/swig/include/2.0.11/std/ |
std_container.i | 103 %feature("ignore") std::vector<Type >::vector(size_type size); 104 %feature("ignore") std::vector<Type >::resize(size_type size); 105 %feature("ignore") std::deque<Type >::deque(size_type size); 106 %feature("ignore") std::deque<Type >::resize(size_type size); 107 %feature("ignore") std::list<Type >::list(size_type size); 108 %feature("ignore") std::list<Type >::resize(size_type size);
|