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

/external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
H A DConfig.cpp7 // Config.cpp: Implements the egl::Config class, describing the format, type
11 #include "libEGL/Config.h"
22 Config::Config(D3DDISPLAYMODE displayMode, EGLint minInterval, EGLint maxInterval, D3DFORMAT renderTargetFormat, D3DFORMAT depthStencilFormat, EGLint multiSample) function in class:egl::Config
28 void Config::setDefaults()
65 void Config::set(D3DDISPLAYMODE displayMode, EGLint minInterval, EGLint maxInterval, D3DFORMAT renderTargetFormat, D3DFORMAT depthStencilFormat, EGLint multiSample)
179 EGLConfig Config::getHandle() const
211 EGLint SortConfig::wantedComponentsSize(const Config &config) const
224 bool SortConfig::operator()(const Config *
[all...]
H A DConfig.h7 // Config.h: Defines the egl::Config class, describing the format, type
26 class Config class in namespace:egl
29 Config(D3DDISPLAYMODE displayMode, EGLint minSwapInterval, EGLint maxSwapInterval, D3DFORMAT renderTargetFormat, D3DFORMAT depthStencilFormat, EGLint multiSample);
81 bool operator()(const Config *x, const Config *y) const;
82 bool operator()(const Config &x, const Config &y) const;
86 EGLint wantedComponentsSize(const Config &config) const;
105 const egl::Config *ge
[all...]
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dconfig.py58 class Config(object): class in inherits:object
/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_;
H A Dwebsocket_experiment_task.cc36 const Config& config, URLFetcher::Delegate* delegate) {
55 const Config& config, net::WebSocketDelegate* delegate) {
98 WebSocketExperimentTask::Config::Config() function in class:chrome_browser_net_websocket_experiment::WebSocketExperimentTask::Config
117 WebSocketExperimentTask::Config::~Config() {}
120 const Config& config,
141 const WebSocketExperimentTask::Config& config, const std::string& name) {
163 const WebSocketExperimentTask::Config& config,
181 const WebSocketExperimentTask::Config
[all...]
H A Dwebsocket_experiment_task.h77 class Config { class in class:chrome_browser_net_websocket_experiment::WebSocketExperimentTask
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_; }
190 Config config_;
/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,
H A Dextensions_quota_service_unittest.cc15 typedef QuotaLimitHeuristic::Config Config; typedef
20 static const Config kFrozenConfig = { 0, TimeDelta::FromDays(0) };
21 static const Config k2PerMinute = { 2, TimeDelta::FromMinutes(1) };
22 static const Config k20PerHour = { 20, TimeDelta::FromHours(1) };
H A Dextension_bookmarks_module.cc42 typedef QuotaLimitHeuristic::Config Config; typedef
779 static const Config kShortLimitConfig;
780 static const Config kLongLimitConfig;
785 const Config BookmarksQuotaLimitFactory::kShortLimitConfig = {
790 const Config BookmarksQuotaLimitFactory::kLongLimitConfig = {
/external/clang/include/clang/StaticAnalyzer/Core/
H A DAnalyzerOptions.h114 ConfigTable Config; member in class:clang::AnalyzerOptions
/external/libvorbis/doc/
H A D01-introduction.tex146 \subsubsection{Global Config}
/external/skia/include/core/
H A DSkBitmap.h43 enum Config { enum in class:SkBitmap
98 Config config() const { return (Config)fConfig; }
101 Config getConfig() const { return this->config(); }
204 static int ComputeRowBytes(Config c, int width);
209 static int ComputeBytesPerPixel(Config c);
214 static int ComputeShiftPerPixel(Config c) {
218 static Sk64 ComputeSize64(Config, int width, int height);
219 static size_t ComputeSize(Config, int width, int height);
225 void setConfig(Config, in
[all...]
/external/quake/src/com/android/quake/
H A DDownloaderActivity.java132 Config config = getLocalConfig(dest, LOCAL_CONFIG_FILE);
139 private static Config getLocalConfig(File destPath, String configFilename) {
148 Config config = ConfigHandler.parse(is);
307 private static class Config { class in class:DownloaderActivity
360 public static Config parse(InputStream is) throws SAXException,
368 mConfig = new Config();
381 mConfig.mFiles.add(new Config.File(src, dest, md5, size));
389 new Config.File.Part(src, md5, size));
413 public Config mConfig;
436 Config confi
[all...]
/external/sonivox/jet_tools/JetCreator/
H A Deas.py587 self.Config()
605 def Config (self): member in class:EAS
/external/clang/bindings/python/clang/
H A Dcindex.py2989 class Config: class in inherits:
2998 if Config.loaded:
3002 Config.library_path = path
3007 if Config.loaded:
3011 Config.library_file = path
3031 if Config.loaded:
3035 Config.compatibility_check = check_status
3040 register_functions(lib, not Config.compatibility_check)
3041 Config.loaded = True
3045 if Config
[all...]
/external/clang/include/clang/AST/
H A DExprCXX.h136 CUDAKernelCallExpr(ASTContext &C, Expr *fn, CallExpr *Config, argument
140 setConfig(Config);
/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp170 const VectorizeConfig Config; member in struct:__anon9168::BBVectorize
173 : BasicBlockPass(ID), Config(C) {
178 : BasicBlockPass(ID), Config(C) {
339 v <= Config.VectorBits && (!Config.MaxIter || n <= Config.MaxIter);
352 for (; !Config.MaxIter || n <= Config.MaxIter; ++n) {
443 if (!Config.NoMemOpBoost && (isa<LoadInst>(V) || isa<StoreInst>(V)))
444 return Config
[all...]
/external/v8/src/
H A Djsregexp.h389 class Config { class in class:v8::internal::DispatchTable
417 ZoneSplayTree<Config>* tree() { return &tree_; }
418 ZoneSplayTree<Config> tree_;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/lib/
H A Dpdebuild-ant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/internal/ ...
/external/clang/lib/Sema/
H A DSemaExpr.cpp3945 Expr *Config, bool IsExecConfig) {
3967 if (Config)
3969 cast<CallExpr>(Config),
4012 if (Config) {
3941 BuildResolvedCallExpr(Expr *Fn, NamedDecl *NDecl, SourceLocation LParenLoc, Expr **Args, unsigned NumArgs, SourceLocation RParenLoc, Expr *Config, bool IsExecConfig) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
H A Dpdebuild.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/build/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.mortbay.jetty.server_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-nodeps.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 886 milliseconds