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

12 3 4 5 6

  /dalvik/libcore/dom/src/test/java/org/w3c/domts/
JTidyDocumentBuilderFactory.java 108 public boolean hasFeature(String feature, String version) {
109 return domImpl.hasFeature(feature, version);
BatikTestDocumentBuilderFactory.java 172 * Determines if the implementation supports the specified feature.
173 * @param feature Feature
175 * @return true if implementation supports the feature
177 public boolean hasFeature(String feature, String version) {
178 return getDOMImplementation().hasFeature(feature, version);
DOM4JTestDocumentBuilderFactory.java 130 public boolean hasFeature(String feature, String version) {
131 return domImpl.hasFeature(feature, version);
JAXPDOMTestDocumentBuilderFactory.java 140 public boolean hasFeature(String feature, String version) {
141 return builder.getDOMImplementation().hasFeature(feature, version);
  /dalvik/libcore/xml/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...]
  /external/e2fsprogs/lib/e2p/
Android.mk 5 feature.c \
  /external/webkit/WebCore/WebCore.vcproj/
build-generated-files.sh 62 export FEATURE_DEFINES=`$SDKROOT/tools/scripts/feature-defines.sh $SDKROOT $3`
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
HandleHello.java 23 * Handle the "hello" chunk (HELO) and feature discovery.
155 String feature = getString(data, len); local
156 client.getClientData().addFeature(feature);
158 Log.d("ddm-hello", "Feature: " + feature);
ClientData.java 121 * String for feature enabling starting/stopping method profiling
127 * String for feature enabling direct streaming of method profiling data
133 * String for feature allowing to dump hprof files
139 * String for feature allowing direct streaming of hprof dumps
632 void addFeature(String feature) {
633 mFeatures.add(feature);
637 * Returns true if the {@link Client} supports the given <var>feature</var>
638 * @param feature The feature to test.
639 * @return true if the feature is supporte
    [all...]
  /sdk/eclipse/buildConfig/
build.properties 28 product=/plugin or feature id/path/to/.product
121 #The value to be used for the qualifier of a plugin or feature when you want to override the value computed by pde.
126 #The generated suffix is computed according to the content of the feature
150 #- the location of the jar or folder that is the plugin or feature : /path/to/foo.jar or /path/to/foo
152 #- the location of a feature.xml, or for 2.1 style plugins, the plugin.xml or fragment.xml
  /external/webkit/WebCore/svg/
SVGElement.h 97 virtual bool isSupported(StringImpl* feature, StringImpl* version) const;
  /external/qemu/hw/
bt-hid.c 99 } dataother, datain, dataout, feature, intrdataout; member in struct:bt_hid_device_s
121 s->feature.len = 0;
284 s->feature.buffer, MIN(rlen, s->feature.len));
301 s->feature.len = len - 1;
302 memcpy(s->feature.buffer, data + 1, s->feature.len);
365 memcpy(s->feature.buffer + s->feature.len, data + 1, len - 1);
366 s->feature.len += len - 1
    [all...]
  /frameworks/base/services/java/com/android/server/
ConnectivityService.java 484 FeatureUser(int type, String feature, IBinder binder) {
487 mFeature = feature;
525 public int startUsingNetworkFeature(int networkType, String feature,
529 ": " + feature);
537 FeatureUser f = new FeatureUser(networkType, feature, binder);
546 if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_MMS)) {
548 } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_SUPL)) {
550 } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_DUN)) {
552 } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_HIPRI)) {
607 return network.startUsingNetworkFeature(feature,
647 String feature = u.mFeature; local
    [all...]
  /cts/tests/tests/accounts/src/android/accounts/cts/
MockAccountAuthenticator.java 206 for (String feature: features) {
207 if (!mockFeatureList.contains(feature)) {
  /packages/apps/Browser/src/com/android/browser/
WebsiteSettingsActivity.java 72 // They must be consecutive. To add a new feature, add a new FEATURE_XXX
87 public void addFeature(int feature) {
88 mFeatures |= (1 << feature);
91 public void removeFeature(int feature) {
92 mFeatures &= ~(1 << feature);
95 public boolean hasFeature(int feature) {
96 return (mFeatures & (1 << feature)) != 0;
111 * Gets the ID of the nth (zero-based) feature supported by this site.
112 * The return value is a feature ID - one of the FEATURE_XXX values.
113 * This is required to determine which feature is displayed at a give
    [all...]
  /external/webkit/WebCore/dom/
Node.idl 83 [OldStyleObjC] boolean isSupported(in DOMString feature,
118 DOMObject getFeature(in DOMString feature,
  /dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTMdefaultNamespaceDeclarationNode.java 77 public boolean isSupported(String feature, String version) {return false;}
167 * specialized APIs of the specified feature and version. The
170 * @param feature The name of the feature requested (case-insensitive).
171 * @param version This is the version number of the feature to test. If
173 * any version of the feature will cause the method to return an
174 * object that supports at least one version of the feature.
176 * the specified feature and version, if any, or <code>null</code> if
178 * feature. If the <code>DOMObject</code> returned by this method
185 public Object getFeature(String feature, String version)
    [all...]
  /external/webkit/WebKit/chromium/src/
WebDevToolsAgentImpl.cpp 285 void WebDevToolsAgentImpl::setRuntimeFeatureEnabled(const WebString& feature, bool enabled)
287 if (feature == kApuAgentFeatureName)
289 else if (feature == kTimelineFeatureName)
291 else if (feature == kResourceTrackingFeatureName) {
457 String feature = WebCore::toWebCoreStringWithNullCheck(args[0]); local
459 if (feature.isEmpty() || exceptionCatcher.HasCaught())
462 agent->m_client->runtimeFeatureStateChanged(feature, enabled);
  /dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeProxy.java 247 /** Ask whether we support a given DOM feature.
248 * In fact, we do not _fully_ support any DOM feature -- we're a
258 * @param feature
263 public final boolean supports(String feature, String version)
265 return implementation.hasFeature(feature,version);
269 /** Ask whether we support a given DOM feature.
270 * In fact, we do not _fully_ support any DOM feature -- we're a
273 * @param feature
279 public final boolean isSupported(String feature, String version)
281 return implementation.hasFeature(feature,version)
    [all...]
  /bionic/libc/kernel/common/linux/
hdreg.h 79 task_ioreg_t feature; member in struct:hd_drive_cmd_hdr
85 task_ioreg_t feature; member in struct:hd_drive_task_hdr
96 task_ioreg_t feature; member in struct:hd_drive_hob_hdr
  /external/kernel-headers/original/linux/
hdreg.h 25 #define HD_FEATURE HD_ERROR /* same io address, read=error, write=feature */
136 task_ioreg_t feature; member in struct:hd_drive_cmd_hdr
142 task_ioreg_t feature; member in struct:hd_drive_task_hdr
153 task_ioreg_t feature; member in struct:hd_drive_hob_hdr
344 #define SETFEATURES_DIS_RLA 0x55 /* Disable read look-ahead feature */
356 #define SETFEATURES_EN_RLA 0xAA /* Enable read look-ahead feature */
528 * 3: Power Management Feature Set
529 * 2: Removable Feature Set
530 * 1: Security Feature Set
531 * 0: SMART Feature Se
    [all...]
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
hdreg.h 79 task_ioreg_t feature; member in struct:hd_drive_cmd_hdr
85 task_ioreg_t feature; member in struct:hd_drive_task_hdr
96 task_ioreg_t feature; member in struct:hd_drive_hob_hdr
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
hdreg.h 79 task_ioreg_t feature; member in struct:hd_drive_cmd_hdr
85 task_ioreg_t feature; member in struct:hd_drive_task_hdr
96 task_ioreg_t feature; member in struct:hd_drive_hob_hdr
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/
hdreg.h 79 task_ioreg_t feature; member in struct:hd_drive_cmd_hdr
85 task_ioreg_t feature; member in struct:hd_drive_task_hdr
96 task_ioreg_t feature; member in struct:hd_drive_hob_hdr
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
hdreg.h 79 task_ioreg_t feature; member in struct:hd_drive_cmd_hdr
85 task_ioreg_t feature; member in struct:hd_drive_task_hdr
96 task_ioreg_t feature; member in struct:hd_drive_hob_hdr

Completed in 962 milliseconds

12 3 4 5 6