HomeSort by relevance Sort by last modified time
    Searched refs:config (Results 401 - 425 of 5780) sorted by null

<<11121314151617181920>>

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/config/
forwarding.hpp 17 #include <boost/mpl/aux_/config/workaround.hpp>
overload_resolution.hpp 17 #include <boost/mpl/aux_/config/workaround.hpp>
pp_counter.hpp 18 # include <boost/mpl/aux_/config/msvc.hpp>
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
integral_c_tag.hpp 19 #include <boost/mpl/aux_/config/static_constant.hpp>
size_t_fwd.hpp 18 #include <boost/config.hpp> // make sure 'size_t' is placed into 'std'
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/vector/aux_/
include_preprocessed.hpp 16 #include <boost/mpl/aux_/config/typeof.hpp>
17 #include <boost/mpl/aux_/config/ctps.hpp>
18 #include <boost/mpl/aux_/config/preprocessor.hpp>
19 #include <boost/mpl/aux_/config/workaround.hpp>
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/
trace.hpp 19 #include <boost/test/utils/runtime/config.hpp>
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
basic_iterator.h 36 #include <bits/c++config.h>
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
memoryfwd.h 48 #include <bits/c++config.h>
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/
complex.h 29 #include <bits/c++config.h>
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/parallel/
basic_iterator.h 36 #include <bits/c++config.h>
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
AndroidJUnitLaunchShortcut.java 41 ILaunchConfigurationWorkingCopy config = super.createLaunchConfiguration(element); local
46 config.setAttribute(AndroidJUnitLaunchConfigDelegate.ATTR_INSTR_NAME,
53 AndroidJUnitLaunchConfigDelegate.setJUnitDefaults(config);
54 return config;
  /sdk/emulator/opengl/tests/ut_renderer/
RendererSurface.h 34 static RendererSurface * create(EGLDisplay eglDisplay, SurfaceConfig config, NativeWindowing *nw);
35 static EGLConfig getEglConfig(EGLDisplay eglDisplay, SurfaceConfig config);
40 RendererSurface(EGLDisplay display, NativeWindowType window, EGLSurface surface, EGLConfig config) :
42 m_config(config),
  /external/chromium/net/proxy/
polling_proxy_config_service.cc 39 bool GetLatestProxyConfig(ProxyConfig* config) {
48 *config = last_config_;
99 ProxyConfig config; local
100 func(&config);
106 NewRunnableMethod(this, &Core::GetConfigCompleted, config));
111 void GetConfigCompleted(const ProxyConfig& config) {
120 if (!has_config_ || !last_config_.Equals(config)) {
123 last_config_ = config;
125 OnProxyConfigChanged(config,
168 PollingProxyConfigService::GetLatestProxyConfig(ProxyConfig* config) {
    [all...]
proxy_config.h 110 // Indicates an invalid proxy config.
114 ProxyConfig(const ProxyConfig& config);
116 ProxyConfig& operator=(const ProxyConfig& config);
123 // Returns true if the given config is equivalent to this config.
126 // Returns true if this config contains any "automatic" settings. See the
171 ProxyConfig config; local
172 config.set_auto_detect(true);
173 return config;
177 ProxyConfig config; local
    [all...]
  /external/chromium_org/chrome/tools/build/win/
scan_server_dlls.py 34 """Reads config information from input file after setting default value of
44 config = ConfigParser.SafeConfigParser(variables)
48 config.read(input_file)
49 return config
86 def ScanServerDlls(config, distribution, output_dir):
87 """Scans for DLLs in the specified section of config that are in the
95 ScanDllsInSection(config, 'GENERAL', output_dir, registered_dll_list)
99 ScanDllsInSection(config, distribution.upper(), output_dir,
105 def ScanDllsInSection(config, section, output_dir, registered_dll_list):
106 """Scans for DLLs in the specified section of config that are in th
    [all...]
  /external/chromium_org/media/base/
audio_decoder_config.cc 94 bool AudioDecoderConfig::Matches(const AudioDecoderConfig& config) const {
95 return ((codec() == config.codec()) &&
96 (bytes_per_channel() == config.bytes_per_channel()) &&
97 (channel_layout() == config.channel_layout()) &&
98 (samples_per_second() == config.samples_per_second()) &&
99 (extra_data_size() == config.extra_data_size()) &&
100 (!extra_data() || !memcmp(extra_data(), config.extra_data(),
102 (is_encrypted() == config.is_encrypted()) &&
103 (sample_format() == config.sample_format()) &&
104 (seek_preroll() == config.seek_preroll()) &
    [all...]
  /external/chromium_org/net/proxy/
polling_proxy_config_service.cc 41 bool GetLatestProxyConfig(ProxyConfig* config) {
50 *config = last_config_;
104 ProxyConfig config; local
105 func(&config);
110 FROM_HERE, base::Bind(&Core::GetConfigCompleted, this, config));
115 void GetConfigCompleted(const ProxyConfig& config) {
124 if (!has_config_ || !last_config_.Equals(config)) {
127 last_config_ = config;
129 OnProxyConfigChanged(config,
172 PollingProxyConfigService::GetLatestProxyConfig(ProxyConfig* config) {
    [all...]
  /frameworks/native/opengl/tests/swapinterval/
swapinterval.cpp 41 EGLConfig config; local
56 dpy, configAttribs, window, &config);
64 eglGetConfigAttrib(dpy, config, EGL_RED_SIZE, &r);
65 eglGetConfigAttrib(dpy, config, EGL_GREEN_SIZE, &g);
66 eglGetConfigAttrib(dpy, config, EGL_BLUE_SIZE, &b);
67 eglGetConfigAttrib(dpy, config, EGL_ALPHA_SIZE, &a);
68 eglGetConfigAttrib(dpy, config, EGL_NATIVE_VISUAL_ID, &vid);
70 surface = eglCreateWindowSurface(dpy, config, window, NULL);
73 fprintf(stderr, "error: %s, config=%p, format = %d-%d-%d-%d, visual-id = %d\n",
74 EGLUtils::strerror(err), config, r,g,b,a, vid)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
config.py 57 config = ConfigParser()
58 config.read(rc)
59 sections = config.sections()
62 index_servers = config.get('distutils', 'index-servers')
76 current['username'] = config.get(server, 'username')
83 if config.has_option(server, key):
84 current[key] = config.get(server, key)
93 if config.has_option(server, 'repository'):
94 repository = config.get(server, 'repository')
97 return {'username': config.get(server, 'username')
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
config.py 57 config = ConfigParser()
58 config.read(rc)
59 sections = config.sections()
62 index_servers = config.get('distutils', 'index-servers')
76 current['username'] = config.get(server, 'username')
83 if config.has_option(server, key):
84 current[key] = config.get(server, key)
93 if config.has_option(server, 'repository'):
94 repository = config.get(server, 'repository')
97 return {'username': config.get(server, 'username')
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
AutoTextTest.java 34 Configuration config = getContext().getResources().getConfiguration(); local
35 if (!config.locale.equals(Locale.getDefault())) {
36 config.locale = Locale.getDefault();
37 getContext().getResources().updateConfiguration(config, null);
80 Configuration config = getContext().getResources().getConfiguration(); local
81 if (!config.locale.equals(Locale.getDefault())) {
82 config.locale = Locale.getDefault();
83 getContext().getResources().updateConfiguration(config, null);
  /external/chromium/chrome/browser/chromeos/
proxy_config_service.h 29 virtual ConfigAvailability GetLatestProxyConfig(net::ProxyConfig* config) {
30 return impl_->IOGetProxyConfig(config);
  /external/chromium_org/chrome/browser/chromeos/
ui_proxy_config_service.h 23 // Before reading/setting a proxy config, a network has to be selected using
45 // the last proxy config of the current network or the one last set by
47 void GetProxyConfig(UIProxyConfig* config) const;
50 // and persists |config| to shill for the current network.
51 void SetProxyConfig(const UIProxyConfig& config);
54 // Determines effective proxy config based on prefs from config tracker,
55 // |network| and if user is using shared proxies. The effective config is
  /external/chromium_org/chrome/browser/safe_browsing/
ping_manager_unittest.cc 36 SafeBrowsingProtocolConfig config; local
37 config.client_name = kClient;
38 config.url_prefix = kUrlPrefix;
39 SafeBrowsingPingManager pm(NULL, config);
102 SafeBrowsingProtocolConfig config; local
103 config.client_name = kClient;
104 config.url_prefix = kUrlPrefix;
105 SafeBrowsingPingManager pm(NULL, config);

Completed in 1665 milliseconds

<<11121314151617181920>>