HomeSort by relevance Sort by last modified time
    Searched full:features (Results 126 - 150 of 2617) sorted by null

1 2 3 4 56 7 8 91011>>

  /ndk/build/platforms/android-5/arch-x86/usr/include/
features.h 31 /* certain Linux-specific programs expect a <features.h> header file
32 * that defines various features macros
  /ndk/build/platforms/android-8/arch-arm/usr/include/
features.h 31 /* certain Linux-specific programs expect a <features.h> header file
32 * that defines various features macros
  /ndk/build/platforms/android-8/arch-x86/usr/include/
features.h 31 /* certain Linux-specific programs expect a <features.h> header file
32 * that defines various features macros
  /cts/tests/tests/accounts/src/android/accounts/cts/
MockAccountAuthenticator.java 50 // Create some mock features
190 * Checks if the account supports all the specified authenticator specific features.
194 String[] features) throws NetworkErrorException {
198 this.mFeatures = features;
201 if (null == features) {
206 for (String feature: features) {
  /external/e2fsprogs/misc/
mke2fs.conf.5.in 102 This relation specifies the filesystems features which are enabled in
111 This relation specifies a set of features that should be added or
112 removed to the features listed in the
171 This relation specifies the features which are enabled for this
175 This relation specifies set of features which should be enabled or
176 disabled to the features listed in the
  /frameworks/base/docs/html/sdk/
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&gt;</a> to indicate to the Android system what hardware features
  /external/qemu/distrib/sdl-1.2.12/src/cpuinfo/
SDL_cpuinfo.c 148 int features = 0; local
158 " cpuid # Get family/model/stepping/features\n"
162 : "=m" (features)
174 cpuid ; Get family/model/stepping/features
175 mov features, edx local
196 return features;
201 int features = 0; local
214 : "=m" (features)
226 mov features,edx local
247 return features;
    [all...]
  /dalvik/libcore/xml/src/test/java/tests/api/javax/xml/parsers/
DocumentBuilderFactoryTest.java 139 // String[] features = { "http://xml.org/sax/features/namespaces",
140 // "http://xml.org/sax/features/validation",
141 // "http://xml.org/sax/features/external-general-entities" };
143 // for (int i = 0; i < features.length; i++) {
144 // dbf.setFeature(features[i], true);
145 // assertTrue(dbf.getFeature(features[i]));
152 // for (int i = 0; i < features.length; i++) {
153 // dbf.setFeature(features[i], false);
154 // assertFalse(dbf.getFeature(features[i]))
606 String[] features = { "http:\/\/xml.org\/sax\/features\/namespaces", local
    [all...]
  /external/webkit/WebKit/android/WebCoreSupport/
ChromeClientAndroid.cpp 160 const WindowFeatures& features)
170 bool dialog = features.dialog || !features.resizable
171 || (features.heightSet && features.height < screen.get()->height()
172 && features.widthSet && features.width < screen.get()->width())
173 || (!features.menuBarVisible && !features.statusBarVisible
174 && !features.toolBarVisible && !features.locationBarVisibl
    [all...]
  /development/pdk/docs/porting/
bluetooth.jd 73 hciconfig -a # print BT chipset address and features. Useful to check if you can communicate with your BT chipset.
100 <p>This section provides a change history of Bluetooth features added in each Android release and provides some rough guidance as to future features. </p>
102 <h5>Platform features</h5>
128 <h4>Platform features</h4>
163 <p>This section offers a rough guide of which features the team is developing for the next release. This feature list may change without notice. It isn't possible to post scheduling advice to the mailing lists.</p>
174 </strong>Cupcake features some early work&#151;Bluez has an HID plugin, <code>external/bluez/utils/input/Android.mk</code>, which gets compiled. <br />
180 Cupcake features some early work&#151;Bluez has has DUN and PAN daemons which get compiled and <code>external/bluez/utils/dun/Android.mk
192 In order to support these features, Android needs to move to a Bluez 4.x version. This change is not scheduled at this time.</li>
  /sdk/eclipse/buildConfig/
build.properties 14 # Environment > Guide > Tasks > Building features and customized for building the
84 #jnlp.generateOfflineAllowed=true or false generate <offlineAllowed/> attribute in the generated features
122 #The value will only be applied to plugin or features indicating build.properties, qualifier = context
125 #Enable / disable the generation of a suffix for the features that use .qualifier.
142 #this property indicates whether you want the set of plug-ins and features to be considered during the build to be limited to the ones reachable from the features / plugins being built
148 #pluginPath is a list of locations in which to find plugins and features. This list is separated by the platform file separator (; or :)
151 #- a directory that contains a /plugins or /features subdirectory
176 # bundles and features are being obtained from.
  /ndk/samples/hello-neon/jni/
helloneon.c 21 #include <cpu-features.h>
84 uint64_t features; local
120 features = android_getCpuFeatures();
121 if ((features & ANDROID_CPU_ARM_FEATURE_ARMv7) == 0) {
128 if ((features & ANDROID_CPU_ARM_FEATURE_NEON) == 0) {
  /external/webkit/WebKit/win/WebCoreSupport/
WebChromeClient.cpp 166 static COMPtr<IPropertyBag> createWindowFeaturesPropertyBag(const WindowFeatures& features)
169 if (features.xSet)
170 map.set(WebWindowFeaturesXKey, features.x);
171 if (features.ySet)
172 map.set(WebWindowFeaturesYKey, features.y);
173 if (features.widthSet)
174 map.set(WebWindowFeaturesWidthKey, features.width);
175 if (features.heightSet)
176 map.set(WebWindowFeaturesHeightKey, features.height);
177 map.set(WebWindowFeaturesMenuBarVisibleKey, features.menuBarVisible)
    [all...]
  /development/apps/Development/src/com/android/development/
AccountsTester.java 289 String[] features = TextUtils.split(authTokenType, ",");
290 mAccountManager.hasFeatures(account, features,
313 AccountManagerCallback<Bundle> newAccountsCallback(String type, String[] features) {
314 return new GetAccountsCallback(type, features);
321 public GetAccountsCallback(String type, String[] features) {
322 mFeatures = features;
328 + ", features "
347 AccountManagerCallback<Bundle> newAuthTokensCallback(String type, String authTokenType, String[] features) {
348 return new GetAuthTokenCallback(type, authTokenType, features);
356 public GetAuthTokenCallback(String type, String authTokenType, String[] features) {
    [all...]
  /external/bluetooth/bluez/src/
bluetoothd.8.in 65 .I @STORAGEDIR@/nn:nn:nn:nn:nn:nn/features
66 Default location for the features cache. The directory
73 \fInnnnnnnnnnnnnnnn\fP Remote device LMP features coded as an 8 byte bitfield.
  /external/grub/
MAINTENANCE 47 1. Don't add features unnecessarily! You may think it is a Good Thing to
48 have more features, but you must be prepared for more burdens.
51 break existing features. Otherwise you would receive a lot of
  /external/webkit/JavaScriptCore/
wscript 72 full_dirs = get_dirs_for_features(jscore_dir, features=[build_port], dirs=jscore_dirs)
80 features = 'cxx cstaticlib',
91 features = 'cxx cprogram',
  /external/webkit/WebCore/css/
MediaQueryEvaluator.h 44 * evaluated without knowledge of the medium features. This can happen
56 * for any media features
62 * for any media features
  /frameworks/base/docs/html/guide/practices/
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, wha
    [all...]
  /external/bluetooth/bluez/tools/
hciconfig.c 111 di->features[0], di->features[1], di->features[2],
112 di->features[3], di->features[4], di->features[5],
113 di->features[6], di->features[7]);
116 char *tmp = lmp_featurestostr(di->features, "\t\t", 63);
367 uint8_t features[8], max_page = 0 local
    [all...]
  /external/webkit/WebCore/
wscript 116 features = [build_port]
119 features.append('curl')
124 features.append('cf')
128 full_dirs = get_dirs_for_features(webcore_dir, features=features, dirs=webcore_dirs)
149 features = 'cc cxx cstaticlib',
  /bionic/libc/
README 14 Bionic doesn't want to implement all features of a traditional C library, we only
15 add features to it as we need them, and we try to keep things as simple and small
  /dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/parsers/
DocumentBuilderFactoryImpl.java 32 "http://xml.org/sax/features/namespaces";
35 "http://xml.org/sax/features/validation";
  /external/e2fsprogs/debugfs/
debug_cmds.ct 16 request do_features, "Set/print superblock features",
17 feature, features;
  /external/e2fsprogs/tests/m_dasd_bs/
expect.1 18 Filesystem features: ext_attr resize_inode dir_index filetype sparse_super
32 Filesystem features: ext_attr resize_inode dir_index filetype sparse_super

Completed in 3681 milliseconds

1 2 3 4 56 7 8 91011>>