Home
last modified time | relevance | path

Searched refs:features (Results 1 – 25 of 122) sorted by relevance

12345

/frameworks/base/core/java/android/ddm/
DDdmHandleHello.java151 final String[] features = Debug.getVmFeatureList(); in handleFEAT() local
156 int size = 4 + 4 * features.length; in handleFEAT()
157 for (int i = features.length-1; i >= 0; i--) in handleFEAT()
158 size += features[i].length() * 2; in handleFEAT()
162 out.putInt(features.length); in handleFEAT()
163 for (int i = features.length-1; i >= 0; i--) { in handleFEAT()
164 out.putInt(features[i].length()); in handleFEAT()
165 putString(out, features[i]); in handleFEAT()
/frameworks/base/docs/html/guide/topics/manifest/
Duses-feature-element.jd29 each user, based on a comparison with the features available on the user's
32 <p style="margin-top:1em;">By specifying the features that your application requires,
38 Android Market uses features as the basis for filtering, please read <a
49 any external entity of the set of hardware and software features on which your
55 application describe the device-variable features that it uses.</p>
57 <p>The set of available features that your application declares corresponds to
60 convenience in the <a href="#features-reference">Features Reference</a> tables
64 element, so if your application requires multiple features, it would declare
66 that requires both Bluetooth and camera features in the device would declare
75 <code>&lt;uses-feature&gt;</code> elements for all of the features that your
[all …]
Duses-permission-element.jd22 hardware features in <code>&lt;uses-feature&gt;</code> elements, rather than
30 hardware features, see the documentation for the <a
31 href="{@docRoot}guide/topics/manifest/uses-feature-element.html#permissions-features">
Dpermission-element.jd19 to specific components or features of this or other applications.
84 applications access to isolated application-level features, with
118 to share specific features explicitly because they are being built
/frameworks/base/core/java/android/accounts/
DAbstractAccountAuthenticator.java120 String authTokenType, String[] features, Bundle options) in addAccount() argument
125 + ", features " + (features == null ? "[]" : Arrays.toString(features))); in addAccount()
131 accountType, authTokenType, features, options); in addAccount()
300 Account account, String[] features) throws RemoteException { in hasFeatures() argument
304 new AccountAuthenticatorResponse(response), account, features); in hasFeatures()
478 Account account, String[] features) throws NetworkErrorException; in hasFeatures() argument
DIAccountManager.aidl34 void hasFeatures(in IAccountManagerResponse response, in Account account, in String[] features); in hasFeatures() argument
35 …tAccountsByFeatures(in IAccountManagerResponse response, String accountType, in String[] features); in getAccountsByFeatures() argument
DAccountManager.java422 final String[] features, in hasFeatures() argument
425 if (features == null) throw new IllegalArgumentException("features is null"); in hasFeatures()
428 mService.hasFeatures(mResponse, account, features); in hasFeatures()
467 final String type, final String[] features,
472 mService.getAccountsByFeatures(mResponse, type, features);
1461 final String[] features, Activity activityForPrompting,
1468 mFeatures = features;
1653 final String accountType, final String authTokenType, final String[] features,
1660 new GetAuthTokenByTypeAndFeaturesTask(accountType, authTokenType, features,
DIAccountAuthenticator.aidl67 in String[] features); in hasFeatures() argument
DAccountManagerService.java458 Account account, String[] features) { in hasFeatures() argument
461 if (features == null) throw new IllegalArgumentException("features is null"); in hasFeatures()
465 new TestFeaturesSession(response, account, features).bind(); in hasFeatures()
476 Account account, String[] features) { in TestFeaturesSession() argument
479 mFeatures = features; in TestFeaturesSession()
1171 String type, String[] features) { in GetAccountsByTypeAndFeatureSession() argument
1174 mFeatures = features; in GetAccountsByTypeAndFeatureSession()
1262 String type, String[] features) { in getAccountsByFeatures() argument
1266 if (features != null && type == null) { in getAccountsByFeatures()
1278 if (features == null || features.length == 0) { in getAccountsByFeatures()
[all …]
/frameworks/base/docs/html/resources/
Dindex.jd6 information to help you quickly implement the features you want in your
15 features or functionality to your app. The articles are drawn from posts to the
21 that has the specific features you want. </dd>
/frameworks/base/docs/html/guide/practices/
Dcompatibility.jd65 Android to prevent apps from being visible to devices which don’t have features
79 <li>You state the features your app requires by declaring <a
82 <li>Devices are required to declare the features they include to Android
117 each user, based on a comparison with the features available on the user's
127 <p>Android includes support for a lot of features, some hardware and some
140 feature is supported at runtime. As Android adds support for new features in
143 <p>When you write your application, you specify which features your app requires
151 declare these features. Consider an example involving cameras.</p>
159 runtime and disable the camera-related features if there’s no camera
194 introduces a new feature or changes how existing features are handled, what
[all …]
/frameworks/base/docs/html/guide/topics/testing/
Dindex.jd19 activity-specific features you should test, and it provides tips for testing Android
26 can be tested, and lists provider-specific features you should test.
30 Service Testing</a> focuses on testing services. It also lists service-specific features
Dwhat_to_test.jd7 documentation for the features that you use for more ideas. The
73 unavailable, or disable network-related features, or do both. For GPS, it can switch to
/frameworks/base/policy/src/com/android/internal/policy/impl/
DPhoneWindow.java183 final int features = getFeatures(); in requestFeature() local
184 if ((features != DEFAULT_FEATURES) && (featureId == FEATURE_CUSTOM_TITLE)) { in requestFeature()
189 … if (((features & (1 << FEATURE_CUSTOM_TITLE)) != 0) && (featureId != FEATURE_CUSTOM_TITLE)) { in requestFeature()
1038 final int features = getLocalFeatures(); in updateProgressBars() local
1040 if ((features & (1 << FEATURE_PROGRESS)) != 0) { in updateProgressBars()
1046 if ((features & (1 << FEATURE_INDETERMINATE_PROGRESS)) != 0) { in updateProgressBars()
1050 if ((features & (1 << FEATURE_PROGRESS)) != 0) { in updateProgressBars()
1053 if ((features & (1 << FEATURE_INDETERMINATE_PROGRESS)) != 0) { in updateProgressBars()
1080 final int features = getLocalFeatures(); in showProgressBars() local
1081 if ((features & (1 << FEATURE_INDETERMINATE_PROGRESS)) != 0 && in showProgressBars()
[all …]
/frameworks/base/docs/html/guide/webapps/
Dindex.jd21 <li>CSS and JavaScript features that allow you to provide different styles and images
43 screens), Android 2.0 added features to the WebKit framework to allow web pages to specify
45 and image assets, as mentioned above. Because these features are a part of Android's WebKit
47 {@link android.webkit.WebView} support the same viewport and screen density features.</p>
/frameworks/base/docs/html/
Doffline.jd38 content and features as the online documentation. Because some features
/frameworks/base/docs/html/sdk/
Dandroid-1.5-highlights.jd9 <p>The Android 1.5 platform introduces many new features for users and developers.
15 <li><a href="#features">New Features</a>
52 <h2 id="features">New Features</h2>
179 configuration&gt;</a> to indicate to the Android system what hardware features
Dandroid-2.0.1.jd13 <li><a href="#features">Platform Highlights</a></li>
18 <li><a href="#dev-features">Developer Features</a></li>
63 <h2 id="features">Platform Highlights</h2>
65 <p>For a list of new user features and platform highlights, see the <a
242 <h2 id="dev-features">Developer Features</h2>
244 <p>The sections below provide information about new developer features offered by the downloadable …
Dandroid-1.6.jd13 <li><a href="#features">Platform Highlights</a></li>
45 The platform includes new features for users and developers, as well as changes
62 <h2 id="features">Platform Highlights</h2>
64 <p>For a list of new user features and platform highlights, see the <a
335 features that it requires to function normally. When an application
336 specifies such features, the system allows the application to be installed only
337 on devices that offer the required features. The element supports these
352 disable compatibility code that is not required or enable newer features that are not
Dandroid-2.0.jd13 <li><a href="#features">Platform Highlights</a></li>
18 <li><a href="#dev-features">Developer Features</a></li>
40 The release includes new features for users and developers, as well as changes
56 <h2 id="features">Platform Highlights</h2>
58 <p>For a list of new user features and platform highlights, see the <a
231 <h2 id="dev-features">Developer Features</h2>
233 <p>The sections below provide information about new developer features offered by the downloadable …
Dandroid-2.3-highlights.jd51 <p>The Android 2.3 platform introduces many new and exciting features for
52 users and developers. This document provides a glimpse at some of the new features
75 settings make it easier for the user to navigate and control the features
161 Additionally, support for the platform's SIP and internet calling features on
175 technology in the device hardware, so support for the platform's NFC features on
195 <p>Android 2.3 delivers a variety of features and APIs that
320 <p>Developers can now add SIP-based internet telephony features to their
326 <p>Support for the platform's SIP and internet calling features on specific
349 support for the platform's NFC features on specific devices is determined by
Dandroid-1.5.jd13 <li><a href="#features">Platform Highlights</a></li>
45 The release includes new features for users and developers, as well as changes
61 <h2 id="features">Platform Highlights</h2>
63 <p>For a list of new user features and platform highlights, see the <a
235 to indicate to the Android system what hardware features
Dandroid-1.6-highlights.jd36 <p>The Android 1.6 platform introduces new features for users and developers.
37 This page provides an overview of some new features and technologies.</p>
156 <p>Android 1.6 features a multi-lingual speech synthesis engine called Pico.
/frameworks/base/docs/html/guide/topics/wireless/
Dindex.jd20 features.</p>
/frameworks/base/opengl/tests/angeles/
DREADME.txt13 The demonstration features a sightseeing of a futuristic city
37 * How to use the basic features of OpenGL ES 1.0/1.1

12345