Searched defs:Config (Results 1 - 25 of 56) sorted by relevance

123

/external/chromium_org/chrome/browser/prerender/
H A Dprerender_config.cc9 Config::Config() : max_bytes(100 * 1024 * 1024), function in class:prerender::Config
21 Config::~Config() { }
H A Dprerender_config.h15 struct Config { struct in namespace:prerender
16 Config();
17 ~Config();
/external/chromium_org/chrome/test/functional/perf/endure_graphs/
H A Dconfig.js5 var Config = {
/external/chromium_org/content/browser/speech/
H A Dspeech_recognition_engine.cc15 SpeechRecognitionEngine::Config::Config() function in class:content::SpeechRecognitionEngine::Config
24 SpeechRecognitionEngine::Config::~Config() {
H A Dspeech_recognition_engine.h48 struct CONTENT_EXPORT Config { struct in class:content::SpeechRecognitionEngine
49 Config();
50 ~Config();
68 virtual void SetConfig(const Config& config) = 0;
108 typedef SpeechRecognitionEngine::Config SpeechRecognitionEngineConfig;
/external/chromium_org/gpu/gles2_conform_support/egl/
H A Dconfig.cc9 Config::Config() function in class:egl::Config
44 Config::~Config() {
47 bool Config::GetAttrib(EGLint attribute, EGLint* value) const {
H A Dconfig.h14 class Config { class in namespace:egl
16 Config();
17 ~Config();
87 DISALLOW_COPY_AND_ASSIGN(Config);
/external/chromium_org/tools/gn/
H A Dconfig.h18 class Config : public Item { class in inherits:Item
20 Config(const Label& label);
21 virtual ~Config();
23 virtual Config* AsConfig() OVERRIDE;
24 virtual const Config* AsConfig() const OVERRIDE;
33 static Config* GetConfig(const Settings* settings,
42 DISALLOW_COPY_AND_ASSIGN(Config);
H A Dconfig.cc13 Config::Config(const Label& label) : Item(label) { function in class:Config
16 Config::~Config() {
19 Config* Config::AsConfig() {
23 const Config* Config::AsConfig() const {
28 Config* Config
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dconfig.py39 class Config(object): class in inherits:object
/external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/
H A Dconfig.py29 class Config(dict): class in inherits:dict
53 raise AttributeError('Config does not contain: %s' % name)
65 logging.info('Source \"%s\" already in Config.' % (source,))
71 logging.warn('Source \"%s\" not in Config.' % (source,))
/external/chromium_org/chrome/test/mini_installer/
H A Dtest_installer.py21 class Config: class in inherits:
46 config: The Config object.
137 directory: The directory where the Config file and all Property files
156 config_filename: A Config filename.
159 A Config object.
164 config = Config()
175 """Tests the installer using the given Config object.
178 config: A Config object.
/external/chromium_org/third_party/angle_dx11/src/libEGL/
H A DConfig.cpp7 // Config.cpp: Implements the egl::Config class, describing the format, type
11 #include "libEGL/Config.h"
25 Config::Config(rx::ConfigDesc desc, EGLint minInterval, EGLint maxInterval, EGLint texWidth, EGLint texHeight) function in class:egl::Config
127 EGLConfig Config::getHandle() const
159 EGLint SortConfig::wantedComponentsSize(const Config &config) const
172 bool SortConfig::operator()(const Config *x, const Config *y) const
177 bool SortConfig::operator()(const Config
[all...]
/external/chromium/chrome/browser/net/websocket_experiment/
H A Dwebsocket_experiment_runner.h30 class Config { class in class:chrome_browser_net_websocket_experiment::WebSocketExperimentRunner
32 Config() function in class:chrome_browser_net_websocket_experiment::WebSocketExperimentRunner::Config
38 WebSocketExperimentTask::Config ws_config[6];
67 Config config_;
/external/chromium_org/third_party/mesa/src/src/egl/main/
H A Deglcontext.h52 _EGLConfig *Config; member in struct:_egl_context
H A Deglsurface.h50 _EGLConfig *Config; member in struct:_egl_surface
/external/mesa3d/src/egl/main/
H A Deglcontext.h52 _EGLConfig *Config; member in struct:_egl_context
H A Deglsurface.h50 _EGLConfig *Config; member in struct:_egl_surface
/external/skia/tools/
H A Dbench_pictures_cfg_helper.py9 def Config(**kwargs): function
24 return Config(config='8888', **kwargs)
28 return Config(config='gpu', **kwargs)
41 return Config(**dict(TileArgs(tile_x, tile_y,
/external/aac/libSYS/src/mips/
H A DgenericStds_mips.cpp186 unsigned int Config; local
188 Config = mips_getconfig();
189 hasISPRAM = (Config >> 24) & 1;
190 hasDSPRAM = (Config >> 23) & 1;
192 FDKprintf("Config ISP/DSP: %d/%d\n", hasISPRAM, hasDSPRAM);
/external/chromium/chrome/browser/extensions/
H A Dextensions_quota_service.h85 struct Config { struct in class:QuotaLimitHeuristic
114 void Reset(const Config& config, const base::TimeTicks& start);
145 explicit QuotaLimitHeuristic(const Config& config, BucketMapper* map);
155 const Config& config() { return config_; }
164 const Config config_;
176 explicit TimedLimit(const Config& config, BucketMapper* map)
187 const Config& config,
/external/chromium_org/content/renderer/p2p/
H A Dport_allocator.h30 struct Config { struct in class:content::P2PPortAllocator
31 Config();
32 ~Config();
61 const Config& config);
75 Config config_;
111 P2PPortAllocator::Config::RelayServerConfig config;
/external/chromium_org/net/quic/crypto/
H A Dcrypto_server_config.h197 // Config represents a server config: a collection of preferences and
199 class NET_EXPORT_PRIVATE Config : public QuicCryptoConfig, class in class:net::QuicCryptoServerConfig
200 public base::RefCounted<Config> {
202 Config();
237 friend class base::RefCounted<Config>;
238 virtual ~Config();
240 DISALLOW_COPY_AND_ASSIGN(Config);
243 typedef std::map<ServerConfigID, scoped_refptr<Config> > ConfigMap;
247 static bool ConfigPrimaryTimeLessThan(const scoped_refptr<Config>& a,
248 const scoped_refptr<Config>
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DDebugCheckers.cpp162 const AnalyzerOptions::ConfigTable &Config = mgr.options.Config; local
164 Config.begin(), E = Config.end();
173 I = Config.find(Key);
/external/clang/tools/clang-format/
H A DClangFormat.cpp321 std::string Config = clang::format::configurationAsText( local
323 llvm::outs() << Config << "\n";

Completed in 516 milliseconds

123