HomeSort by relevance Sort by last modified time
    Searched full:feature (Results 201 - 225 of 2827) sorted by null

1 2 3 4 5 6 7 891011>>

  /packages/wallpapers/NoiseField/
AndroidManifest.xml 8 <uses-feature android:name="android.software.live_wallpaper" />
  /packages/wallpapers/PhaseBeam/
AndroidManifest.xml 8 <uses-feature android:name="android.software.live_wallpaper" />
  /system/media/wilhelm/tests/native-media/
AndroidManifest.xml 5 <uses-feature android:glEsVersion="0x00020000" />
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
DeviceInfoInstrument.java 215 * Return a summary of the device's feature as a semi-colon-delimited list of colon separated
256 * @return list of feature names from sdk
264 String feature = (String) field.get(null); local
265 features.add(feature);
300 // Null feature name means this feature is the open gl es version feature.
306 return "No feature for Open GL ES version.";
  /external/chromium/chrome/browser/resources/gpu_internals/
info_view.html 7 <h3>Graphics Feature Status</h3>
8 <ul class="feature-status-list">
  /external/chromium/chrome/browser/ui/cocoa/
confirm_quit_panel_controller.h 18 // The user quit without having the feature enabled.
47 // Checks whether the |event| should trigger the feature.
  /external/icu4c/layout/
HanLayoutEngine.cpp 73 // FIXME: do we want to add the 'trad' feature for 'ZHT' and the
74 // 'smpl' feature for 'ZHS'? If we do this, we can remove the exact
OpenTypeLayoutEngine.h 27 * feature tags to each one. It may also change, remove or add characters, and change
172 * A set of mappings from feature tags to feature masks. These may
181 * The length of the feature map.
189 * feature map are in the order in which they
249 * This method does the OpenType character processing. It assigns the OpenType feature
266 * @param featureTags - the output feature tag array
291 * @param featureTags - the feature tag array
379 * This method frees the feature tag array so that the
  /external/webkit/Source/WebCore/bindings/objc/
DOMImplementationFront.h 47 bool hasFeature(const String& feature, const String& version) const;
50 DOMImplementationFront* getInterface(const String& feature);
  /ndk/sources/host-tools/make-3.81/tests/scripts/options/
dash-B 38 # Test -B with the re-exec feature: we don't want to re-exec forever
53 # Test -B with the re-exec feature: we DO want -B in the "normal" part of the
  /sdk/eclipse/buildConfig/
allElements.xml 2 <!-- Feature build ant targets -->
18 <property name="type" value="feature" />
23 <property name="type" value="feature" />
28 <property name="type" value="feature" />
33 <property name="type" value="feature" />
47 <property name="type" value="feature" />
52 <property name="type" value="feature" />
57 <property name="type" value="feature" />
  /system/media/mca/samples/CameraEffectsRecordingSample/
AndroidManifest.xml 25 <uses-feature android:name="android.hardware.camera" />
26 <uses-feature android:name="android.hardware.camera.autofocus" />
  /development/samples/CubeLiveWallpaper/
_index.html 55 <p>If you are developing a live wallpaper, remember that the feature is
68 <li><code>&lt;uses-feature android:name="android.software.live_wallpaper" /&gt;</code>,
70 Android Market uses this feature as a filter, when presenting users lists of
71 available applications. When you declaring this feature, Android Market
75 <a href="../../../guide/topics/manifest/uses-feature-element.html"><code>&lt;uses-feature&gt;</code></a>
  /external/harfbuzz/src/
harfbuzz-open.h 37 /* Use this if a feature applies to all glyphs */
49 HB_UShort* FeatureIndex; /* array of Feature indices */
52 HB_UShort FeatureCount; /* number of Feature indices */
95 /* Feature list related structures */
110 HB_Feature Feature; /* Feature table */
  /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);
  /frameworks/base/docs/html/resources/articles/
live-wallpapers.jd 75 <p>If you are developing a live wallpaper, remember that the feature is
88 <li><code>&lt;uses-feature android:name="android.software.live_wallpaper" /&gt;</code>,
90 Android Market uses this feature as a filter, when presenting users lists of
91 available applications. When you declaring this feature, Android Market
96 href="{@docRoot}guide/topics/manifest/uses-feature-element.html">{@code
97 &lt;uses-feature&gt;</a>
  /libcore/dom/src/test/java/org/w3c/domts/
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);
  /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...]
  /libcore/luni/src/main/java/javax/xml/transform/
TransformerFactory.java 229 * <p>Set a feature for this <code>TransformerFactory</code> and <code>Transformer</code>s
233 * Feature names are fully qualified {@link java.net.URI}s.
236 * <code>Transformer</code>s or <code>Template</code>s it creates cannot support the feature.
237 * It is possible for an <code>TransformerFactory</code> to expose a feature value but be unable to change its state.
240 * <p>All implementations are required to support the {@link javax.xml.XMLConstants#FEATURE_SECURE_PROCESSING} feature.
241 * When the feature is:</p>
257 * @param name Feature name.
258 * @param value Is feature state <code>true</code> or <code>false</code>.
261 * or the <code>Transformer</code>s or <code>Template</code>s it creates cannot support this feature.
268 * Look up the value of a feature
    [all...]
  /external/e2fsprogs/misc/
mke2fs.conf.5.in 260 initial feature set with the sparse_super, filetype, resize_inode, and
265 the resize_inode feature, resulting in a filesystem feature set
284 requests which modify the feature set
289 that is, a feature can be prefixed by a caret ('^') symbol to disable
290 a named feature. Each
291 .I feature
312 be lazily initialized. It only has meaning if the uninit_bg feature is
313 enabled. If lazy_itable_init is true and the uninit_bg feature is
344 specified if the flex_bg filesystem feature is enabled
    [all...]
  /external/libnfc-nxp/inc/
phNfcConfig.h 308 *************** FEATURE SPECIFIC MACROS *************************
314 /**< Macro to Enable SMX Feature During
329 /**< Macro to Enable the Peer to Peer Feature */
335 /**< Macro to Enable the ISO14443-B Feature */
338 /**< Macro to Enable the Felica Feature */
341 /**< Macro to Enable the JEWEL Feature */
344 /**< Macro to Enable the ISO15693 Feature */
351 * SAK to be merged with the TYPE A Card RF Feature :3.1*/
375 /**< Macro to Enable the Card Emulation Feature */
380 /**< Macro to Enable the Download Mode Feature */
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebpage.h 210 enum Feature {
317 void setFeaturePermission(QWebFrame* frame, Feature feature, PermissionPolicy policy);
403 void featurePermissionRequested(QWebFrame* frame, QWebPage::Feature feature);
404 void featurePermissionRequestCanceled(QWebFrame* frame, QWebPage::Feature feature);
  /libcore/luni/src/main/java/org/xml/sax/helpers/
XMLFilterImpl.java 109 * or to set or get a feature or property will fail.</p>
140 * Set the value of a feature.
144 * @param name The feature name.
145 * @param value The requested feature value.
146 * @exception org.xml.sax.SAXNotRecognizedException If the feature
149 * parent recognizes the feature name but
158 throw new SAXNotRecognizedException("Feature: " + name);
164 * Look up the value of a feature.
168 * @param name The feature name.
169 * @return The current value of the feature
    [all...]
  /bionic/libc/include/sys/
limits.h 154 #define _POSIX_PRIORITY_SCHEDULING 1 /* priority scheduling is a Linux feature */
167 #define _POSIX_THREAD_PRIO_INHERIT 200112L /* linux feature */
168 #define _POSIX_THREAD_PRIO_PROTECT 200112L /* linux feature */
174 #define _POSIX_SAVED_IDS 1 /* saved user ids is a Linux feature */
175 #define _POSIX_JOB_CONTROL 1 /* job control is a Linux feature */
  /development/ndk/platforms/android-3/include/sys/
limits.h 154 #define _POSIX_PRIORITY_SCHEDULING 1 /* priority scheduling is a Linux feature */
167 #define _POSIX_THREAD_PRIO_INHERIT 200112L /* linux feature */
168 #define _POSIX_THREAD_PRIO_PROTECT 200112L /* linux feature */
174 #define _POSIX_SAVED_IDS 1 /* saved user ids is a Linux feature */
175 #define _POSIX_JOB_CONTROL 1 /* job control is a Linux feature */

Completed in 1261 milliseconds

1 2 3 4 5 6 7 891011>>