HomeSort by relevance Sort by last modified time
    Searched defs:config (Results 176 - 200 of 606) sorted by null

1 2 3 4 5 6 78 91011>>

  /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 98 const EglConfig* config = (EglConfig*)match; local
101 config->getConfAttrib(EGL_BUFFER_SIZE,&bSize);
117 EglConfig* newConfig = new EglConfig(*config,max_config_id+1,5,6,5,0);
333 // Create that context using the first config
335 // Should not happen! config list should be initialized at this point
  /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());
  /bootable/diskinstaller/
installer.c 67 ALOGE("Could not read config file %s", fn);
382 cnode *config; local
440 ALOGE("Errors encountered while processing disk config from %s",
451 /* This doesnt do anything but load the config file */
452 if (!(config = read_conf_file(inst_conf_file)))
459 /* Now process the installer config file and write the images to disk */
460 if (!(images = config_find(config, "images"))) {
484 ALOGI("Done processing installer config. Configured %d images", cnt);
  /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/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 193 EGLConfig config = (EGLConfig)i; local
196 if (getConfigNativePixelFormat(config, &format)) {
197 setConfigAttrib(config, EGL_NATIVE_VISUAL_ID, format);
394 /* To get the value of attribute <a> of config <c> use the following formula:
397 EGLBoolean eglDisplay::getAttribValue(EGLConfig config, EGLint attribIdx, EGLint * value)
404 *value = *(m_configs + (int)config*m_numConfigAttribs + attribIdx);
408 EGLBoolean eglDisplay::getConfigAttrib(EGLConfig config, EGLint attrib, EGLint * value)
412 EGLBoolean ret = getAttribValue(config, m_attribs.valueFor(attrib), value);
417 void eglDisplay::dumpConfig(EGLConfig config)
420 DBG("^^^^^^^^^^ dumpConfig %d ^^^^^^^^^^^^^^^^^^", (int)config);
    [all...]
  /external/aac/libMpegTPEnc/src/
tpenc_asc.cpp 120 PCE_CONFIGURATION pce_configuration; /*!< Program config element description. */
159 * \brief Get program config element description for existing channel mode.
225 const PCE_CONFIGURATION* config = NULL; local
234 if ((config=getPceEntry(channelMode))==NULL) {
239 pEl_list = &config->el_list[0];
245 FDKwriteBits(hBs, config->num_front_channel_elements, 4); /* Front channel Elements */
246 FDKwriteBits(hBs, config->num_side_channel_elements , 4); /* No Side Channel Elements */
247 FDKwriteBits(hBs, config->num_back_channel_elements , 4); /* No Back channel Elements */
248 FDKwriteBits(hBs, config->num_lfe_channel_elements , 2); /* No Lfe channel elements */
264 for(i=0; i<config->num_front_channel_elements; i++)
306 const PCE_CONFIGURATION* config = NULL; local
    [all...]
tpenc_lib.cpp 117 CODER_CONFIG config; member in struct:TRANSPORTENC
206 /* matrixMixdownCoefficient can only be written if 5.0 and 5.1 config present. */
244 FDKmemcpy(&hTpEnc->config, cconfig, sizeof(CODER_CONFIG));
258 if ( (hTpEnc->config.aot != AOT_AAC_LC)
259 ||(hTpEnc->config.samplesPerFrame != 1024))
264 hTpEnc->writer.adif.samplingRate = hTpEnc->config.samplingRate;
265 hTpEnc->writer.adif.bitRate = hTpEnc->config.bitRate;
266 hTpEnc->writer.adif.profile = ((int)hTpEnc->config.aot) - 1;
267 hTpEnc->writer.adif.cm = hTpEnc->config.channelMode;
274 if ( ( hTpEnc->config.aot != AOT_AAC_LC
    [all...]
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/login/
DefaultConfigParserTest.java 73 Map<String, List<AppConfigurationEntry>> config = null; local
74 config = DefaultConfigurationParser.configParser(url, p, new HashMap<String, List<AppConfigurationEntry>>());
75 entriesList = config.get("Login1");
77 entriesList = config.get("other");
79 entriesList = config.get("Login2");
81 entriesList = config.get("Login3");
83 entriesList = config.get("Login4");
85 entriesList = config.get("Login5");
87 entriesList = config.get("Login6");
89 entriesList = config.get("Login7")
101 Map<String, List<AppConfigurationEntry>> config = DefaultConfigurationParser.configParser(url, p, new HashMap<String, List<AppConfigurationEntry>>()); local
    [all...]
  /external/chromium/chrome/browser/chromeos/
proxy_config_service_impl_unittest.cc 252 // Instantiate proxy config service with |init_config|.
260 ProxyConfigServiceImpl::ProxyConfig* config,
262 config->mode = mode;
273 ProxyConfigServiceImpl::ProxyConfig* config,
277 config->mode = mode;
315 // Init config from |source|.
320 ProxyConfigServiceImpl::ProxyConfig config; local
321 config_service()->UIGetProxyConfig(&config);
323 // For owner, write access to config should be equal CanBeWrittenByOwner().
324 // For non-owner, config is never writeable
373 ProxyConfigServiceImpl::ProxyConfig config; local
433 net::ProxyConfig config; local
550 const net::ProxyConfig& config() const { function in class:chromeos::ProxyChangedObserver
    [all...]
  /external/chromium/chrome/browser/net/
pref_proxy_config_service_unittest.cc 26 // Testing proxy config service that allows us to fire notifications at will.
29 TestProxyConfigService(const net::ProxyConfig& config,
31 : config_(config),
34 void SetProxyConfig(const net::ProxyConfig config,
36 config_ = config;
39 OnProxyConfigChanged(config, availability));
52 net::ProxyConfig* config) {
53 *config = config_;
151 MATCHER_P(ProxyConfigMatches, config, "") {
152 net::ProxyConfig reference(config);
327 net::ProxyConfig config; local
    [all...]
  /external/chromium/chrome/browser/net/websocket_experiment/
websocket_experiment_task.h 77 class Config {
79 Config();
80 ~Config();
107 const Config& config, URLFetcher::Delegate* delegate);
109 const Config& config, net::WebSocketDelegate* delegate);
132 WebSocketExperimentTask(const Config& config,
148 const Config& config() const { return config_; function in class:chrome_browser_net_websocket_experiment::WebSocketExperimentTask
    [all...]
  /external/chromium/net/proxy/
proxy_service_unittest.cc 31 explicit MockProxyConfigService(const ProxyConfig& config)
33 config_(config) {
55 void SetConfig(const ProxyConfig& config) {
57 config_ = config;
737 ProxyConfig config; local
738 config.proxy_rules().ParseFromString("foopy1:8080;foopy2:9090");
739 config.set_auto_detect(false);
740 config.proxy_rules().bypass_rules.ParseFromString("*.org");
743 new MockProxyConfigService(config), new MockAsyncProxyResolver, NULL));
762 ProxyConfig config; local
819 ProxyConfig config; local
1179 ProxyConfig config; local
1250 ProxyConfig config; local
1326 ProxyConfig config; local
1383 ProxyConfig config; local
1454 ProxyConfig config = local
1542 ProxyConfig config = ProxyConfig::CreateAutoDetect(); local
    [all...]
  /external/chromium/webkit/glue/media/
video_renderer_impl.cc 137 // Get the pixel config of the device.
138 const SkBitmap::Config config = device->config(); local
145 if (config == SkBitmap::kARGB_8888_Config && device->isOpaque() &&
  /external/dnsmasq/src/
lease.c 147 /* changes to the config may change current leases. */
150 struct dhcp_config *config; local
154 if ((config = find_config(daemon->dhcp_conf, NULL, lease->clid, lease->clid_len,
156 (config->flags & CONFIG_NAME) &&
157 (!(config->flags & CONFIG_ADDR) || config->addr.s_addr == lease->addr.s_addr))
158 lease_set_hostname(lease, config->hostname, 1);
453 Don't allow a name from the client to override a name from dnsmasq config. */
  /external/jmonkeyengine/engine/src/android/com/jme3/system/android/
AndroidConfigChooser.java 12 * AndroidConfigChooser is used to determine the best suited EGL Config
39 * Turn off config chooser and use hardcoded
51 * Gets called by the GLSurfaceView class to return the best config
55 logger.info("GLSurfaceView asks for egl config, returning: ");
61 * findConfig is used to locate the best config and init the chooser with
65 * @return true if successfull, false if no config was found
94 logger.info("JME3 using choosen config: ");
100 logger.severe("###ERROR### Unable to get a valid OpenGL ES 2.0 config, nether Fastest nor Best found! Bug. Please report this.");
148 * log output with egl config details
223 EGLConfig config = chooseConfig(egl, display, configs) local
    [all...]
  /external/libnfc-nxp/src/
phHciNfc_AdminMgmt.c 299 uint8_t config = 0x00; local
305 NFC_ADDRESS_UICC_SESSION , config );
    [all...]
phHciNfc_Sequence.c 1056 static uint8_t config = 0; local
    [all...]
  /external/libvpx/libvpx/vpx/
vpx_codec.h 205 } config; /**< Configuration pointer aliasing union */ member in struct:vpx_codec_ctx
  /external/openssl/apps/
apps.h 145 CONF *config=NULL; variable
148 extern CONF *config;
155 extern CONF *config;
openssl.c 150 CONF *config=NULL; variable
340 config=NCONF_new(NULL);
341 i=NCONF_load(config,p,&errline);
349 "WARNING: can't open config file: %s\n",p);
352 NCONF_free(config);
353 config = NULL;
358 NCONF_free(config);
431 if (config != NULL)
433 NCONF_free(config);
434 config=NULL
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
KeyboardConfigDialogPreference.java 169 View config = null; local
172 config = mLeftBorder;
175 config = mRightBorder;
178 config = mJumpBorder;
181 config = mAttackBorder;
185 return config;
234 selectId(0); // deselect the current config box;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
RobolectricPackageManager.java 28 private RobolectricConfig config; field in class:RobolectricPackageManager
31 public RobolectricPackageManager(ContextWrapper contextWrapper, RobolectricConfig config) {
33 this.config = config;
49 if (config.getPackageName().equals(packageName)) {
52 applicationInfo.flags = config.getApplicationFlags();
53 applicationInfo.targetSdkVersion = config.getSdkVersion();
54 applicationInfo.packageName = config.getPackageName();
55 applicationInfo.processName = config.getProcessName();
56 applicationInfo.name = config.getApplicationName()
    [all...]

Completed in 637 milliseconds

1 2 3 4 5 6 78 91011>>