/frameworks/base/core/java/android/ddm/ |
D | DdmHandleHello.java | 150 final String[] features = Debug.getVmFeatureList(); in handleFEAT() local 155 int size = 4 + 4 * features.length; in handleFEAT() 156 for (int i = features.length-1; i >= 0; i--) in handleFEAT() 157 size += features[i].length() * 2; in handleFEAT() 161 out.putInt(features.length); in handleFEAT() 162 for (int i = features.length-1; i >= 0; i--) { in handleFEAT() 163 out.putInt(features[i].length()); in handleFEAT() 164 putString(out, features[i]); in handleFEAT()
|
/frameworks/base/docs/html/guide/topics/manifest/ |
D | uses-feature-element.jd | 14 <li><a href="#declared">Filtering based on explicitly declared features</a></li> 15 <li><a href="#implicit">Filtering based on implicit features</a></li> 17 <li><a href="#testing">Testing the features required by your application</a></li> 20 <li><a href="#features-reference">Features Reference</a> 22 <li><a href="#hw-features">Hardware features</a></li> 23 <li><a href="#sw-features">Software features</a></li> 57 each user, based on a comparison with the features available on the user's 60 <p style="margin-top:1em;">By specifying the features that your application requires, 66 Android Market uses features as the basis for filtering, please read <a 77 any external entity of the set of hardware and software features on which your [all …]
|
D | uses-permission-element.jd | 24 hardware features in <code><uses-feature></code> elements, rather than 32 hardware features, see the documentation for the <a 33 href="{@docRoot}guide/topics/manifest/uses-feature-element.html#permissions-features">
|
/frameworks/base/core/java/android/accounts/ |
D | AbstractAccountAuthenticator.java | 119 String authTokenType, String[] features, Bundle options) in addAccount() argument 124 + ", features " + (features == null ? "[]" : Arrays.toString(features))); in addAccount() 130 accountType, authTokenType, features, options); in addAccount() 252 Account account, String[] features) throws RemoteException { in hasFeatures() argument 256 new AccountAuthenticatorResponse(response), account, features); in hasFeatures() 450 Account account, String[] features) throws NetworkErrorException; in hasFeatures() argument
|
D | IAccountManager.aidl | 34 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
|
D | AccountManager.java | 431 final String[] features, in hasFeatures() argument 434 if (features == null) throw new IllegalArgumentException("features is null"); in hasFeatures() 437 mService.hasFeatures(mResponse, account, features); in hasFeatures() 476 final String type, final String[] features, 481 mService.getAccountsByFeatures(mResponse, type, features); 1569 final String[] features, Activity activityForPrompting, 1576 mFeatures = features; 1761 final String accountType, final String authTokenType, final String[] features, 1768 new GetAuthTokenByTypeAndFeaturesTask(accountType, authTokenType, features,
|
D | IAccountAuthenticator.aidl | 67 in String[] features); in hasFeatures() argument
|
D | AccountManagerService.java | 457 Account account, String[] features) { in hasFeatures() argument 461 + ", features " + stringArrayToString(features) in hasFeatures() 467 if (features == null) throw new IllegalArgumentException("features is null"); in hasFeatures() 471 new TestFeaturesSession(response, account, features).bind(); in hasFeatures() 482 Account account, String[] features) { in TestFeaturesSession() argument 485 mFeatures = features; in TestFeaturesSession() 1262 String type, String[] features) { in GetAccountsByTypeAndFeatureSession() argument 1265 mFeatures = features; in GetAccountsByTypeAndFeatureSession() 1366 String type, String[] features) { in getAccountsByFeatures() argument 1370 + ", features " + stringArrayToString(features) in getAccountsByFeatures() [all …]
|
/frameworks/base/docs/html/guide/practices/ |
D | compatibility.jd | 65 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 …]
|
D | optimizing-for-3.0.jd | 45 <li><a href="#Telephony">Using telephony or other variable features</a></li> 63 <p>Android 3.0 introduces several features that allow 91 This section introduces some of the key features and APIs you should use to make an 280 to help you add features from Android 3.0 without requiring you to change your <a 298 the new features you should use.</p> 336 navigation features to the Action Bar, such as tabs, and use the application icon to navigate to 408 <h3>Add other new features</h3> 420 <p>Many of the new features and APIs that are described above and in the <a 438 >Action Bar</a>: Samples that demonstrate various Action Bar features, such as tabs, logos, and 539 that each deliver different features for different screen configurations, so you don't want [all …]
|
/frameworks/base/docs/html/guide/developing/tools/ |
D | adt.jd | 46 tools that are integrated with the Eclipse IDE. It offers you access to many features that help 52 along with Android-specific features that are bundled with ADT. The following 53 describes important features of Eclipse and ADT:</p> 69 <dd>The Java programming language editor contains common IDE features such as compile time 79 <p>You can find the most up-to-date and more detailed information about changes and new features 105 the Android SDK and AVD Manager. Other <code>android</code> features such as creating or 118 debugging features including: screen capturing, thread and heap information, and logcat 122 a device from your development system. Some features of 125 features of <code>adb</code>, such as shell commands, from the command line.</li> 134 <p>In addition to Eclipse's standard editor features, ADT provides custom XML editors to help [all …]
|
/frameworks/base/policy/src/com/android/internal/policy/impl/ |
D | PhoneWindow.java | 212 final int features = getFeatures(); in requestFeature() local 213 if ((features != DEFAULT_FEATURES) && (featureId == FEATURE_CUSTOM_TITLE)) { in requestFeature() 218 if (((features & (1 << FEATURE_CUSTOM_TITLE)) != 0) && in requestFeature() 224 if ((features & (1 << FEATURE_NO_TITLE)) != 0 && featureId == FEATURE_ACTION_BAR) { in requestFeature() 227 if ((features & (1 << FEATURE_ACTION_BAR)) != 0 && featureId == FEATURE_NO_TITLE) { in requestFeature() 1279 final int features = getLocalFeatures(); in updateProgressBars() local 1281 if ((features & (1 << FEATURE_PROGRESS)) != 0) { in updateProgressBars() 1287 if ((features & (1 << FEATURE_INDETERMINATE_PROGRESS)) != 0) { in updateProgressBars() 1291 if ((features & (1 << FEATURE_PROGRESS)) != 0) { in updateProgressBars() 1294 if ((features & (1 << FEATURE_INDETERMINATE_PROGRESS)) != 0) { in updateProgressBars() [all …]
|
/frameworks/base/docs/html/guide/topics/testing/ |
D | index.jd | 19 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
|
/frameworks/base/docs/html/guide/webapps/ |
D | index.jd | 21 <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/sdk/ |
D | android-1.5-highlights.jd | 9 <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></a> to indicate to the Android system what hardware features
|
D | android-2.1.jd | 13 <li><a href="#features">Platform Highlights</a></li> 62 <h2 id="features">Platform Highlights</h2> 64 <p>Android {@sdkPlatformVersion} does not add significant user features, see the <a 66 2.0 Platform Highlights</a> document for the latest user features.</p> 96 Eclipse plugin. This revision allows for more drawing features in ADT and fixes several 97 bugs in the previous rendering library. It also unlocks several editor features that were added in
|
D | android-2.0.1.jd | 13 <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 …
|
D | android-1.6.jd | 13 <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
|
D | android-2.0.jd | 13 <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 …
|
D | android-2.3-highlights.jd | 51 <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
|
D | android-2.2.jd | 13 <li><a href="#features">Platform Highlights</a></li> 44 features, developer features, API changes, and bug 45 fixes. For information on developer features and API changes, see the 63 <h2 id="features">Platform Highlights</h2> 65 <p>For a list of new user features and platform highlights, see the <a 97 Eclipse plugin. This revision allows for more drawing features in ADT and fixes several 98 bugs in the previous rendering library. It also unlocks several editor features that were added in 277 administrator" applications that can control security features of the device,
|
/frameworks/base/docs/html/resources/ |
D | index.jd | 21 information to help you quickly implement the features you want in your 60 that has the specific features you want.</p>
|
/frameworks/base/docs/html/guide/developing/debugging/ |
D | debugging-projects.jd | 20 DDMS, Eclipse displays the debugger and DDMS features as perspectives, which are customized 45 <p>The DDMS Perspective in Eclipse lets you access all of the features
|
/frameworks/base/docs/html/guide/topics/wireless/ |
D | index.jd | 20 features.</p>
|
/frameworks/base/opengl/tests/angeles/ |
D | README.txt | 13 The demonstration features a sightseeing of a futuristic city 37 * How to use the basic features of OpenGL ES 1.0/1.1
|