Searched refs:feature (Results 1 - 25 of 150) sorted by relevance

123456

/external/webrtc/src/system_wrappers/source/
H A Dcpu_features.cc23 // No CPU feature is available => straight C path.
24 int GetCPUInfoNoASM(CPUFeature feature) { argument
25 (void)feature;
53 // Actual feature detection for x86.
54 static int GetCPUInfo(CPUFeature feature) { argument
57 if (feature == kSSE2) {
60 if (feature == kSSE3) {
67 static int GetCPUInfo(CPUFeature feature) { argument
68 (void)feature;
/external/harfbuzz_ng/src/
H A Dhb-shape.cc82 parse_feature_value_prefix (const char **pp, const char *end, hb_feature_t *feature) argument
85 feature->value = 0;
88 feature->value = 1;
95 parse_feature_tag (const char **pp, const char *end, hb_feature_t *feature) argument
110 feature->tag = hb_tag_from_string (p, *pp - p);
115 parse_feature_indices (const char **pp, const char *end, hb_feature_t *feature) argument
121 feature->start = 0;
122 feature->end = (unsigned int) -1;
127 has_start = parse_uint (pp, end, &feature->start);
130 parse_uint (pp, end, &feature
140 parse_feature_value_postfix(const char **pp, const char *end, hb_feature_t *feature) argument
147 parse_one_feature(const char **pp, const char *end, hb_feature_t *feature) argument
157 hb_feature_from_string(const char *str, int len, hb_feature_t *feature) argument
167 hb_feature_to_string(hb_feature_t *feature, char *buf, unsigned int size) argument
[all...]
H A Dhb-shape.h53 hb_feature_t *feature);
58 hb_feature_to_string (hb_feature_t *feature,
H A Dmain.cc135 printf (" No required feature\n");
138 printf (" %d feature(s) found in language system\n", num_features);
147 printf (" %d feature(s) found in table\n", num_features);
149 const Feature &feature = g.get_feature (n_feature); local
152 feature.get_lookup_count());
154 int num_lookups = feature.get_lookup_count ();
155 printf (" %d lookup(s) found in feature\n", num_lookups);
158 feature.get_lookup_index (n_lookup));
/external/webp/src/dsp/
H A Dcpu.c48 static int x86CPUInfo(CPUFeature feature) { argument
51 if (feature == kSSE2) {
54 if (feature == kSSE3) {
61 static int AndroidCPUInfo(CPUFeature feature) { argument
64 if (feature == kNEON) {
74 static int armCPUInfo(CPUFeature feature) { argument
75 (void)feature;
/external/webkit/Source/JavaScriptCore/wtf/
H A DNullPtr.h35 #define __has_feature(feature) 0
/external/chromium/chrome/browser/resources/gpu_internals/
H A Dinfo_view.css32 #info-view .feature-green {
36 #info-view .feature-yellow {
40 #info-view .feature-red {
H A Dinfo_view.js79 'disabled_software': 'feature-yellow',
80 'disabled_off': 'feature-red',
81 'software': 'feature-yellow',
82 'unavailable_off': 'feature-red',
83 'unavailable_software': 'feature-yellow',
84 'enabled': 'feature-green'
90 var featureStatusList = this.querySelector('.feature-status-list');
99 // feature status list
103 var feature = gpuInfo.featureStatus.featureStatus[i];
107 if (!featureLabelMap[feature
[all...]
/external/kernel-headers/original/asm-x86/
H A Dalternative_32.h47 #define alternative(oldinstr, newinstr, feature) \
53 " .byte %c0\n" /* feature bit */ \
59 ".previous" :: "i" (feature) : "memory")
71 #define alternative_input(oldinstr, newinstr, feature, input...) \
77 " .byte %c0\n" /* feature bit */ \
83 ".previous" :: "i" (feature), ##input)
86 #define alternative_io(oldinstr, newinstr, feature, output, input...) \
92 " .byte %c[feat]\n" /* feature bit */ \
98 ".previous" : output : [feat] "i" (feature), ##input)
/external/webkit/Source/WebCore/bindings/objc/
H A DDOMImplementationFront.cpp52 bool DOMImplementationFront::hasFeature(const String& feature, const String& version) const argument
54 return reinterpret_cast<const DOMImplementation*>(this)->hasFeature(feature, version);
67 DOMImplementationFront* DOMImplementationFront::getInterface(const String& feature) argument
69 return reinterpret_cast<DOMImplementationFront*>(reinterpret_cast<DOMImplementation*>(this)->getInterface(feature));
H A DDOMImplementationFront.h47 bool hasFeature(const String& feature, const String& version) const;
50 DOMImplementationFront* getInterface(const String& feature);
/external/webrtc/src/system_wrappers/interface/
H A Dcpu_features_wrapper.h34 typedef int (*WebRtc_CPUInfo)(CPUFeature feature);
35 // returns true if the CPU supports the feature.
37 // No CPU feature is available => straight C path.
/external/webkit/Tools/Scripts/webkitperl/
H A Dfeatures.pm79 die "Unknown feature: $featureName" unless $symbolName;
85 my ($feature, $required) = @_;
88 my $hasFeature = hasFeature($feature, $path);
/external/icu4c/layout/
H A DLookupProcessor.cpp191 // one feature.
192 for (le_int32 feature = 0; feature < featureCount; feature += 1) {
193 le_uint16 featureIndex = SWAPW(langSysTable->featureIndexArray[feature]);
222 // If this is the required feature, add its lookups
228 // If we added lookups from the required feature, sort them
233 for (le_uint16 feature = 0; feature < featureCount; feature
[all...]
/external/valgrind/main/tests/
H A Ds390x_features.c16 // - 0 if the machine provides the asked-for feature and the cpu
18 // - 1 the machine does not provide the asked-for feature or the
20 // - 2 if the asked-for feature isn't recognised (this will be the case for
21 // any feature if run on a non-s390x machine).
27 // s390x_features <feature> [<machine-model>]
192 static int go(char *feature, char *cpu) argument
201 if (strcmp(feature, "s390x-zarch") == 0 ) {
203 } else if (strcmp(feature, "s390x-n3") == 0 ) {
205 } else if (strcmp(feature, "s390x-stfle") == 0 ) {
207 } else if (strcmp(feature, "s390
276 go(char *feature, char *cpu) argument
[all...]
/external/webkit/Source/WebCore/dom/
H A DDOMImplementation.cpp75 static bool isSVG10Feature(const String &feature) argument
97 return svgFeatures.contains(feature);
100 static bool isSVG11Feature(const String &feature) argument
105 // Sadly, we cannot claim to implement any of the SVG 1.1 generic feature sets
170 return svgFeatures.contains(feature);
180 bool DOMImplementation::hasFeature(const String& feature, const String& version) argument
182 String lower = feature.lower();
201 if ((version.isEmpty() || version == "1.1") && feature.startsWith("http://www.w3.org/tr/svg11/feature#", false)) {
202 if (isSVG11Feature(feature
[all...]
H A DDOMImplementation.h47 static bool hasFeature(const String& feature, const String& version);
51 DOMImplementation* getInterface(const String& feature);
H A DDOMImplementation.idl29 [OldStyleObjC] boolean hasFeature(in DOMString feature,
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/templates/headless-build/
H A Dbuild.properties21 #The type of the top level element we are building, generally "feature"
22 topLevelElementType = feature
27 product=/plugin or feature id/path/to/.product
84 #Sort bundles depenedencies across all features instead of just within a given feature.
138 #The value to be used for the qualifier of a plugin or feature when you want to override the value computed by pde.
143 #The generated suffix is computed according to the content of the feature
174 #- the location of the jar or folder that is the plugin or feature : /path/to/foo.jar or /path/to/foo
176 #- the location of a feature.xml, or for 2.1 style plugins, the plugin.xml or fragment.xml
/external/e2fsprogs/lib/e2p/
H A Dfeature.c2 * feature.c --- convert between features and strings
22 struct feature { struct
28 static struct feature feature_list[] = {
80 static struct feature jrnl_feature_list[] = {
93 struct feature *f;
124 struct feature *f;
167 struct feature *f;
198 struct feature *f;
253 * Edit a feature set array as requested by the user. The ok_array,
256 * then use it tell whether or not it is OK to clear a filesystem feature
[all...]
/external/webkit/Tools/QtTestBrowser/
H A Dwebpage.h60 void requestPermission(QWebFrame* frame, QWebPage::Feature feature);
61 void featurePermissionRequestCanceled(QWebFrame* frame, QWebPage::Feature feature);
/external/smack/src/org/jivesoftware/smackx/packet/
H A DDiscoverInfo.java81 * Adds a new feature to the discovered information.
83 * @param feature the discovered feature
85 public void addFeature(String feature) { argument
86 addFeature(new Feature(feature));
96 for (String feature : featuresToAdd) {
97 addFeature(feature);
101 private void addFeature(Feature feature) { argument
103 features.add(feature);
179 * Returns true if the specified feature i
184 containsFeature(String feature) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
H A DFetchValidator.java21 * Uses an ElementParser to read a list of feature.xml files and to determine
50 "org.eclipse.platform-feature,org.eclipse.platform.win32-feature,org.eclipse.platform.linux.motif-feature";
95 "feature",
123 String feature = (String) enumeration.nextElement();
124 if (new File(install + "/features/" + feature).exists())
127 missingFeatures.add(feature);
/external/oprofile/daemon/
H A Dopd_extended.c19 * if extended feature is enabled */
43 for (i = 0 ; ext_feature_table[i].feature != NULL ; i++ ) {
44 if(!strncmp(name, ext_feature_table[i].feature,
45 strlen(ext_feature_table[i].feature))) {
79 * <feature name>:<param1>:<param2>:<param3>:.....
95 /* Parse feature name*/
107 fprintf(stderr,"opd_ext_initialize: Invalid extended feature option: %s\n", value);
141 /* Creating ext sfile only if extended feature is enable*/
150 /* Duplicate ext sfile only if extended feature is enable*/
159 /* Close ext sfile only if extended feature i
[all...]
H A Dopd_extended.h27 const char* feature; member in struct:opd_ext_feature
61 * Parse the specified extended feature
73 * Print out extended feature statistics in oprofiled.log file

Completed in 519 milliseconds

123456