/external/qemu/docs/ |
ANDROID-CONFIG-FILES.TXT | 7 The Android emulator supports several file formats for its configuration 11 I. Android .ini configuration files: 15 format for some configuration files. Here's the BNF for it: 48 II. Android 'aconfig' configuration files: 51 Alternatively, another configuration file format is supported by the code
|
/external/stlport/etc/ |
ReleaseNote.txt | 38 * Folder architecture: All configuration files are now in stlport/stl/config folder. 41 STLport configuration now also try to seperate platform configuration from compiler 132 * Creation of configuration scripts to make STLport configuration easier.
|
/external/webkit/WebKitTools/Scripts/ |
run-sunspider | 34 # determine configuration, but default to "Release" instead of last-used configuration 37 my $configuration = configuration(); 90 push(@ARGV, "--" . $configuration);
|
webkitdirs.pm | 55 my $configuration; 186 return if defined $configuration; 188 if (open CONFIGURATION, "$baseProductDir/Configuration") { 189 $configuration = <CONFIGURATION>; 190 close CONFIGURATION; 192 if ($configuration) { 193 chomp $configuration; 194 # compatibility for people who have old Configuration file 333 sub configuration() subroutine [all...] |
/frameworks/base/core/tests/coretests/src/android/app/activity/ |
ActivityManagerTest.java | 22 import android.content.res.Configuration; 99 // Validate values against configuration retrieved from resources 100 Configuration vconfig = mContext.getResources().getConfiguration(); 105 if (vconfig.navigation == Configuration.NAVIGATION_NONAV) { 108 if (vconfig.keyboard != Configuration.KEYBOARD_UNDEFINED) {
|
/frameworks/base/media/java/android/media/ |
AudioFormat.java | 21 * channel configuration constants. They are for instance used 39 /** Invalid audio channel configuration */ 42 /** Default audio channel configuration */ 45 /** Mono audio configuration */ 48 /** Stereo (2 channel) audio configuration */
|
/packages/apps/Mms/src/com/android/mms/ui/ |
AttachmentEditor.java | 26 import android.content.res.Configuration; 180 final Configuration configuration = mContext.getResources().getConfiguration(); local 181 return configuration.orientation == Configuration.ORIENTATION_PORTRAIT;
|
/cts/tests/tests/content/src/android/content/res/cts/ |
ResourcesTest.java | 34 import android.content.res.Configuration; 74 args = {AssetManager.class, DisplayMetrics.class, Configuration.class} 94 final Configuration cfg = new Configuration(); 95 cfg.keyboard = Configuration.KEYBOARDHIDDEN_YES; 100 final Configuration c = r.getConfiguration(); 101 assertEquals(Configuration.KEYBOARDHIDDEN_YES, c.keyboard); 167 private Resources getResources(final Configuration config, final int mcc, final int mnc, 190 assertNotNull("Returned wrong configuration-based simple value: expected <nothing>, " 193 assertEquals("Returned wrong configuration-based simple value: expected " + expectedValu [all...] |
PluralResourcesTest.java | 22 import android.content.res.Configuration; 43 final Configuration config = new Configuration();
|
/external/proguard/src/proguard/gui/ |
GUIResources.properties | 59 command line using your saved configuration. \ 71 or you can run ProGuard from the command line using your saved configuration. 117 note = Note potential mistakes in the configuration 127 printConfiguration = Print configuration 281 Print out the configuration. 356 Optionally add a comment for this option in the configuration file. 515 selectConfigurationFile = Select a configuration file... 516 saveConfigurationFile = Save configuration... 525 cantOpenConfigurationFile = Can''t open the configuration file [{0}] 526 cantParseConfigurationFile = Can''t parse the configuration file [{0} [all...] |
/external/kernel-headers/original/asm-x86/ |
mpspec_def.h | 10 * This tag identifies where the SMP configuration 22 unsigned long mpf_physptr; /* Configuration table address */ 26 unsigned char mpf_feature1; /* Standard or configuration ? */
|
/external/qemu/android/utils/ |
ini.h | 17 /* the emulator supports a simple .ini file format for its configuration 21 /* an opaque structure used to model an .ini configuration file */ 58 * NULL if the key is not assigned in the corresponding configuration file
|
/packages/apps/Settings/src/com/android/settings/ |
Display.java | 21 import android.content.res.Configuration; 137 private Configuration mCurConfig = new Configuration();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/ |
MainLaunchConfigTab.java | 58 * Class for the main launch configuration tab. 211 public void performApply(ILaunchConfigurationWorkingCopy configuration) { 212 configuration.setAttribute( 214 configuration.setAttribute( 218 configuration.setAttribute(LaunchConfigDelegate.ATTR_LAUNCH_ACTION, mLaunchAction); 223 configuration.setAttribute(LaunchConfigDelegate.ATTR_ACTIVITY, 228 mapResources(configuration); 231 public void setDefaults(ILaunchConfigurationWorkingCopy configuration) { 232 configuration.setAttribute(LaunchConfigDelegate.ATTR_LAUNCH_ACTION, 307 * launch configuration. This method is called whe [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
layout-devices.xsd | 100 Specifies the configuration is for a particular Mobile Country Code. 114 Specifies the configuration is for a particular Mobile Network Code. 128 Specifies that the configuration is for a particular class of screen. 143 Specifies that the configuration is for a taller/wider than traditional 160 Specifies that the configuration is for a screen that is tall (port) or 176 Specifies the screen density the configuration is defined for. The medium 197 Specifies the touch type the configuration is defined for. 212 If your configuration uses a soft keyboard, use the keyssoft value. 228 Specifies the primary text input method the configuration is designed for. 243 Specifies the primary non-touchscreen navigation method the configuration [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/utils/ |
wpa_debug.h | 82 * configuration. 98 * configuration. The contents of buf is printed out has hex dump. 117 * configuration. The contents of buf is printed out has hex dump. This works 138 * configuration. The contents of buf is printed out has hex dump with both 154 * configuration. The contents of buf is printed out has hex dump with both 180 * configuration. This function is like wpa_printf(), but it also sends the
|
/frameworks/base/docs/html/guide/topics/manifest/ |
uses-configuration-element.jd | 1 page.title=<uses-configuration> 17 <dd><pre class="stx"><uses-configuration android:<a href="#five">reqFiveWayNav</a>=["true" | "false"] 37 should include separate {@code <uses-configuration>} declarations for 42 with two {@code <uses-configuration>} elements as follows: 45 <pre><uses-configuration android:reqFiveWayNav="true" android:reqTouchScreen="finger" 47 <uses-configuration android:reqFiveWayNav="true" android:reqTouchScreen="finger"
|
/frameworks/base/docs/html/resources/articles/ |
faster-screen-orientation-change.jd | 19 devices, like the T-Mobile G1, can change their hardware configuration 40 configuration change events and restarts the current activity with the new 41 configuration. This is the default behavior that lets you declare 46 automatically to the device's configuration at runtime, it is sometimes 50 <p>Facing this "issue," some developers choose to handle configuration changes 70 <p>Photostream lets Android take care of the configuration change when the
|
/hardware/ti/wlan/wl1271/TWD/MacServices/ |
PowerSrv_API.h | 187 * enter in to configuration of the driver that in higher priority from the user.\n 188 * the configuration is:\n 211 * enter in to configuration of the driver that in higher priority from the user.\n 212 * the configuration is:\n 213 * end the user mode configuration (driver mode priority) and returns the user configuration
|
/sdk/eclipse/scripts/ |
build_plugins.sh | 125 # -- Configuration directory -- 128 # The "configuration directory" will hold the workspace for this build. 131 CONFIG_DIR="../../../out/eclipse-configuration-$BUILD_VERSION" 170 # -- Print configuration used and actually execute the build -- 173 echo "Eclipse configuration found:" 192 -configuration "$CONFIG_DIR" \
|
/system/wlan/ti/wilink_6_1/TWD/MacServices/ |
PowerSrv_API.h | 187 * enter in to configuration of the driver that in higher priority from the user.\n 188 * the configuration is:\n 211 * enter in to configuration of the driver that in higher priority from the user.\n 212 * the configuration is:\n 213 * end the user mode configuration (driver mode priority) and returns the user configuration
|
/build/core/ |
proguard.flags | 16 # Add this flag in your package's own configuration if it's needed. 47 # Please specify classes to be kept explicitly in your package's configuration.
|
/cts/tests/tests/app/src/android/app/cts/ |
ApplicationTest.java | 46 args = {android.content.res.Configuration.class} 81 // make sure the configuration has been changed.
|
/dalvik/libcore/xml/src/main/java/javax/xml/transform/ |
TransformerConfigurationException.java | 23 * Indicates a serious configuration error. 32 super("Configuration Error");
|
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ |
DTMConfigurationException.java | 26 * Indicates a serious configuration error. 36 super("Configuration Error");
|