HomeSort by relevance Sort by last modified time
    Searched defs:config (Results 351 - 375 of 1439) sorted by null

<<11121314151617181920>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
config.py 1 """distutils.command.config
3 Implements the Distutils 'config' command, a (mostly) empty command class
5 applications. The idea is that while every "config" command is different,
6 at least they're all named the same, and users always see "config" in the
24 class config(Command): class in inherits:Command
51 # The three standard command methods: since the "config" command
89 # Utility methods for actual "config" commands. The interfaces are
170 # info. My inclination is to make it up to the real config command to
283 # when implementing a real-world config command!)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
tkFont.py 83 # if font config info supplied, apply it
131 return self._call("font", "config", self.name, "-"+option)
133 def config(self, **options): member in class:Font
136 self._call("font", "config", self.name,
140 self._split(self._call("font", "config", self.name))
143 configure = config
192 print f.config()
212 fb.config(weight=BOLD)
214 w.config(font=fb)
  /sdk/apps/DeviceConfig/src/com/example/android/deviceconfig/
MyActivity.java 60 Configuration config = getResources().getConfiguration(); local
64 String separator = config.orientation == Configuration.ORIENTATION_PORTRAIT ? "\n" : "";
66 if (config.keyboardHidden == Configuration.KEYBOARDHIDDEN_NO) {
68 } else if (config.keyboardHidden == Configuration.KEYBOARDHIDDEN_YES) {
70 } else if (config.keyboardHidden == Configuration.KEYBOARDHIDDEN_UNDEFINED) {
76 if (config.hardKeyboardHidden == Configuration.HARDKEYBOARDHIDDEN_NO) {
78 } else if (config.hardKeyboardHidden == Configuration.HARDKEYBOARDHIDDEN_YES) {
80 } else if (config.hardKeyboardHidden == Configuration.HARDKEYBOARDHIDDEN_UNDEFINED) {
91 if (config.navigationHidden == Configuration.NAVIGATIONHIDDEN_NO) {
93 } else if (config.navigationHidden == Configuration.NAVIGATIONHIDDEN_YES)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/
NdkHelper.java 161 public static void setLaunchConfigDefaults(ILaunchConfigurationWorkingCopy config) {
162 config.setAttribute(IGDBLaunchConfigurationConstants.ATTR_REMOTE_TCP, true);
163 config.setAttribute(NdkLaunchConstants.ATTR_NDK_GDB, NdkLaunchConstants.DEFAULT_GDB);
164 config.setAttribute(IGDBLaunchConfigurationConstants.ATTR_GDB_INIT,
166 config.setAttribute(IGDBLaunchConfigurationConstants.ATTR_PORT,
168 config.setAttribute(IGDBLaunchConfigurationConstants.ATTR_HOST, "localhost"); //$NON-NLS-1$
169 config.setAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_STOP_AT_MAIN, false);
170 config.setAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE,
172 config.setAttribute(ICDTLaunchConfigurationConstants.ATTR_PROGRAM_NAME,
175 config.setAttribute(ICDTLaunchConfigurationConstants.ATTR_DEBUGGER_START_MODE
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/
DebuggerConnector.java 55 // get the config for the remote launch config.
61 // look for an existing launch config
62 ILaunchConfiguration config = findConfig(manager, configType, projectName, local
65 if (config == null) {
66 // Didn't find a matching config, so we make one.
89 // save the working copy to get the launch config object which we return.
90 config = wc.doSave();
98 if (config != null) {
99 DebugUITools.launch(config, ILaunchManager.DEBUG_MODE)
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglDisplay.cpp 97 const EglConfig* config = (EglConfig*)match; local
100 config->getConfAttrib(EGL_BUFFER_SIZE,&bSize);
116 EglConfig* newConfig = new EglConfig(*config,max_config_id+1,5,6,5,0);
332 // Create that context using the first config
334 // Should not happen! config list should be initialized at this point
  /system/extras/f2fs_utils/
f2fs_ioutils.c 87 struct f2fs_configuration config; variable in typeref:struct:f2fs_configuration
100 if (lseek64(config.fd, (off64_t)offset, SEEK_SET) < 0)
102 if (write(config.fd, buf, len) != len)
158 if (config.fd >= 0) {
169 if (config.fd >= 0) {
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiConfigStore.java 121 * removeNetwork(). For these calls, the config is not persisted
124 * These calls persist the supplicant config to disk.
149 * map supplicant config to IP configuration. */
167 private static final String CONFIG_KEY = "CONFIG: ";
554 if (DBG) log("Loading config and enabling all networks ");
565 for(WifiConfiguration config : mConfiguredNetworks.values()) {
566 WifiConfiguration newConfig = new WifiConfiguration(config);
567 if (config.autoJoinStatus == WifiConfiguration.AUTO_JOIN_DELETED) {
575 if (pskMap != null && config.allowedKeyManagement != null
576 && config.allowedKeyManagement.get(WifiConfiguration.KeyMgmt.WPA_PSK
656 WifiConfiguration config = getWifiConfiguration(info.getNetworkId()); local
786 WifiConfiguration config = new WifiConfiguration(); local
875 WifiConfiguration config = getWifiConfiguration(info.getNetworkId()); local
918 WifiConfiguration config = mConfiguredNetworks.get(netId); local
1009 WifiConfiguration config = mConfiguredNetworks.get(netId); local
1121 WifiConfiguration config = mConfiguredNetworks.get(netId); local
1167 WifiConfiguration config = mConfiguredNetworks.get(netId); local
1267 WifiConfiguration config = mConfiguredNetworks.get(netId); local
1278 WifiConfiguration config = mConfiguredNetworks.get(netId); local
1288 WifiConfiguration config = mConfiguredNetworks.get(netId); local
1302 WifiConfiguration config = mConfiguredNetworks.get(netId); local
1315 WifiConfiguration config = mConfiguredNetworks.get(netId); local
1371 WifiConfiguration config = new WifiConfiguration(); local
1768 WifiConfiguration config = null; local
2484 WifiConfiguration config = mConfiguredNetworks.get(mNetworkIds.get(id)); local
2999 WifiConfiguration config = null; local
3575 WifiConfiguration config = new WifiConfiguration(); local
3669 WifiConfiguration config; local
3761 WifiConfiguration config = mConfiguredNetworks.get(netId); local
3816 WifiConfiguration config = mConfiguredNetworks.get(netId); local
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-compiler-jdt/0.20.0/
tycho-compiler-jdt-0.20.0.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/maven-archiver/2.5/
maven-archiver-2.5.jar 
  /development/apps/CustomLocale/src/com/android/customlocale2/
CustomLocaleActivity.java 265 Configuration config = am.getConfiguration(); local
267 if (config.locale != null) {
269 config.locale.toString(),
270 config.locale.getDisplayName());
273 checkLocaleInList(config.locale.toString());
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/xml/
XmlMessageBuilder.java 95 private static final String MESSAGE_CONTAINER_NAME_CONFIG = "config";
540 JSONObject config = new JSONObject(); local
542 config.put(ENCODING_SUBFIELD_ENCODING, encoding);
543 config.put(CONFIG_FIELD_CLIENT_ROLE, message.getClientRole().ordinal());
544 jsonObj.put(MESSAGE_CONTAINER_NAME_CONFIG, config);
  /frameworks/opt/net/ims/src/java/com/android/ims/
ImsManager.java 145 // Interface to get/set ims config items
479 * Gets the config interface to get/set service/capability parameters.
490 IImsConfig config = mImsService.getConfigInterface(); local
491 if (config == null) {
495 mConfig = new ImsConfig(config);
630 ImsConfig config = getConfigInterface(); local
631 if (config != null) {
632 config.setFeatureValue(ImsConfig.FeatureConstants.FEATURE_TYPE_VOICE_OVER_LTE,
634 config.setFeatureValue(ImsConfig.FeatureConstants.FEATURE_TYPE_VIDEO_OVER_LTE,
  /bionic/libc/kernel/uapi/linux/
atmlec.h 85 struct atmlec_config_msg config; member in union:atmlec_msg::__anon296
mic_common.h 31 __le64 config[0]; member in struct:mic_device_desc
sdla.h 72 short config; member in struct:sdla_conf
94 short config; member in struct:sdla_dlci_conf
  /bionic/libc/kernel/uapi/linux/netfilter_bridge/
ebt_stp.h 60 struct ebt_stp_config_info config; member in struct:ebt_stp_info
  /cts/tests/tests/drm/src/android/drm/cts/
DRMTest.java 44 private ArrayList<Config> mConfigs = new ArrayList<Config>();
56 Config config = ConfigFactory.getConfig(plugInName); local
57 if (null != config) {
58 mConfigs.add(config);
63 private void register(Config config) throws Exception {
65 config.getInfoOfRegistration(),
66 config.getMimeType())
    [all...]
  /development/ndk/platforms/android-L/include/linux/
atmlec.h 85 struct atmlec_config_msg config; member in union:atmlec_msg::__anon1915
sdla.h 72 short config; member in struct:sdla_conf
94 short config; member in struct:sdla_dlci_conf
  /development/ndk/platforms/android-L/include/linux/netfilter_bridge/
ebt_stp.h 60 struct ebt_stp_config_info config; member in struct:ebt_stp_info
  /development/ndk/sources/android/native_app_glue/
android_native_app_glue.h 129 AConfiguration* config; member in struct:android_app
  /development/tools/recovery_l10n/src/com/android/recovery_l10n/
Main.java 94 savedBitmaps.put(thisLocale, b.copy(Bitmap.Config.ARGB_8888, false));
110 Configuration config = new Configuration(standardResources.getConfiguration()); local
111 config.locale = locale;
112 Resources defaultResources = new Resources(assets, metrics, config);
230 Bitmap out = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
  /device/generic/goldfish/opengl/system/egl/
eglDisplay.cpp 205 EGLConfig config = (EGLConfig)i; local
208 if (getConfigNativePixelFormat(config, &format)) {
209 setConfigAttrib(config, EGL_NATIVE_VISUAL_ID, format);
406 /* To get the value of attribute <a> of config <c> use the following formula:
409 EGLBoolean eglDisplay::getAttribValue(EGLConfig config, EGLint attribIdx, EGLint * value)
416 *value = *(m_configs + (intptr_t)config*m_numConfigAttribs + attribIdx);
420 EGLBoolean eglDisplay::getConfigAttrib(EGLConfig config, EGLint attrib, EGLint * value)
424 EGLBoolean ret = getAttribValue(config, m_attribs.valueFor(attrib), value);
429 void eglDisplay::dumpConfig(EGLConfig config)
432 DBG("^^^^^^^^^^ dumpConfig %d ^^^^^^^^^^^^^^^^^^", (int)config);
    [all...]
  /device/moto/shamu/camera/QCamera2/HAL/
QCameraChannel.cpp 218 * FUNCTION : config
228 int32_t QCameraChannel::config() function in class:qcamera::QCameraChannel
767 * @config : pp feature configuration
781 cam_pp_feature_config_t &config,
819 uint32_t feature_mask = config.feature_mask;
884 streamInfo->reprocess_config.pp_feature_config = config;
    [all...]

Completed in 1364 milliseconds

<<11121314151617181920>>