HomeSort by relevance Sort by last modified time
    Searched refs:feature (Results 26 - 50 of 401) sorted by null

12 3 4 5 6 7 8 91011>>

  /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);
JTidyDocumentBuilderFactory.java 108 public boolean hasFeature(String feature, String version) {
109 return domImpl.hasFeature(feature, version);
  /external/icu4c/layout/
LookupProcessor.cpp 191 // 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 += 1)
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
SystemFeaturesTest.java 71 for (FeatureInfo feature : mPackageManager.getSystemAvailableFeatures()) {
72 mAvailableFeatures.add(feature.name);
237 /** Get a list of feature constants in PackageManager matching a prefix. */
244 String feature = (String) field.get(null); local
245 features.add(feature);
275 * Check that if the PackageManager declares a sensor feature that the device has at least
276 * one sensor that matches that feature. Also check that if a PackageManager does not declare
367 private void assertAvailable(String feature) {
368 assertTrue("PackageManager#hasSystemFeature should return true for " + feature,
369 mPackageManager.hasSystemFeature(feature));
    [all...]
  /external/valgrind/main/tests/
s390x_features.c 16 // - 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)
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, "s390x-ldisp") == 0 )
    [all...]
  /external/webkit/Source/WebCore/dom/
DOMImplementation.cpp 75 static bool isSVG10Feature(const String &feature)
97 return svgFeatures.contains(feature);
100 static bool isSVG11Feature(const String &feature)
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)
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.right(feature.length() - 35))
    [all...]
DOMImplementation.h 47 static bool hasFeature(const String& feature, const String& version);
51 DOMImplementation* getInterface(const String& feature);
DOMImplementation.idl 29 [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/
build.properties 21 #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/
feature.c 2 * 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...]
Android.mk 4 feature.c \
  /external/webkit/Tools/Scripts/webkitperl/
features.pm 79 die "Unknown feature: $featureName" unless $symbolName;
85 my ($feature, $required) = @_;
88 my $hasFeature = hasFeature($feature, $path);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DOMDocumentBuilderFactory.java 51 public boolean hasFeature(String feature, String version) {
52 return builder.getDOMImplementation().hasFeature(feature, version);
  /external/smack/src/org/jivesoftware/smackx/packet/
DiscoverInfo.java 46 private final List<Feature> features = new CopyOnWriteArrayList<Feature>();
67 for (Feature f : d.features) {
81 * Adds a new feature to the discovered information.
83 * @param feature the discovered feature
85 public void addFeature(String feature) {
86 addFeature(new Feature(feature));
96 for (String feature : featuresToAdd)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
FetchValidator.java 21 * 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(); local
124 if (new File(install + "/features/" + feature).exists())
127 missingFeatures.add(feature);
  /external/oprofile/daemon/
opd_extended.c 3 * OProfile Extended Feature
19 * if extended feature is enabled */
25 * OProfile Extended Feature Table
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);
130 printf("\n-- OProfile Extended-Feature Statistics --\n")
    [all...]
opd_extended.h 3 * OProfile Extended Feature
23 * OProfile Extended Feature Table Entry
26 // Feature name
27 const char* feature; member in struct:opd_ext_feature
28 // Feature handlers
61 * Parse the specified extended feature
73 * Print out extended feature statistics in oprofiled.log file
  /external/harfbuzz_ng/src/
main.cc 135 printf (" No required feature\n");
138 printf (" %d feature(s) found in language system\n", num_features);
140 printf (" Feature index %2d of %2d: %d\n", n_feature, num_features,
147 printf (" %d feature(s) found in table\n", num_features);
149 const Feature &feature = g.get_feature (n_feature); local
150 printf (" Feature %2d of %2d: %.4s; %d lookup(s)\n", n_feature, num_features,
152 feature.get_lookup_count());
154 int num_lookups = feature.get_lookup_count ();
155 printf (" %d lookup(s) found in feature\n", num_lookups)
    [all...]
hb-ot-shape.cc 121 const hb_feature_t *feature = &user_features[i]; local
122 map->add_feature (feature->tag, feature->value,
123 (feature->start == 0 && feature->end == (unsigned int) -1) ?
328 const hb_feature_t *feature = &c->user_features[i]; local
329 if (!(feature->start == 0 && feature->end == (unsigned int)-1)) {
331 hb_mask_t mask = map->get_mask (feature->tag, &shift);
332 c->buffer->set_masks (feature->value << shift, mask, feature->start, feature->end)
    [all...]
  /build/core/combo/arch/x86/
x86-atom.mk 1 # This file contains feature macro definitions specific to the
  /external/webkit/Source/WebCore/WebCore.vcproj/
build-generated-files.sh 70 export FEATURE_DEFINES=`$SDKROOT/tools/scripts/feature-defines.sh $VSPROPSROOT $4`
  /libcore/luni/src/main/java/org/w3c/dom/
Node.java 464 * Tests whether the DOM implementation implements a specific feature and
465 * that feature is supported by this node, as specified in .
466 * @param feature The name of the feature to test.
467 * @param version This is the version number of the feature to test.
468 * @return Returns <code>true</code> if the specified feature is
472 public boolean isSupported(String feature,
575 * supports the feature "HTML" [<a href='http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109'>DOM Level 2 HTML</a>]
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/features/
FeatureSummaryActivity.java 48 * Simple storage class for data about an Android feature.
50 static class Feature {
52 * The name of the feature. Should be one of the PackageManager.FEATURE*
74 public Feature(String name, boolean required) {
84 } else if (o == null || !(o instanceof Feature)) {
87 Feature feature = (Feature) o; local
88 return name.equals(feature.name)
    [all...]
  /external/webkit/Tools/DumpRenderTree/qt/
DumpRenderTreeQt.h 203 void permissionSet(QWebPage::Feature feature);
207 void requestPermission(QWebFrame* frame, QWebPage::Feature feature);
208 void cancelPermission(QWebFrame* frame, QWebPage::Feature feature);
  /external/opencv/cv/src/
mycvHaarDetectObjects.cpp 68 MyCvHidHaarFeature feature; member in struct:MyCvHidHaarTreeNode
298 CvHaarFeature* feature = classifier->haar_feature + l; local
304 if( fabs(feature->rect[2].weight) < DBL_EPSILON ||
305 feature->rect[2].r.width == 0 ||
306 feature->rect[2].r.height == 0 )
307 memset( &(node->feature.rect[2]), 0, sizeof(node->feature.rect[2]) );
413 double sum = calc_sum(node->feature.rect[0],p_offset) * node->feature.rect[0].weight;
414 sum += calc_sum(node->feature.rect[1],p_offset) * node->feature.rect[1].weight
727 CvHaarFeature* feature = local
    [all...]

Completed in 844 milliseconds

12 3 4 5 6 7 8 91011>>