/frameworks/base/core/java/android/util/ |
Config.java | 24 public final class Config { 25 /** @hide */ public Config() {}
|
/cts/tests/tests/drm/src/android/drm/cts/ |
Config.java | 21 public interface Config {
|
/external/webkit/Source/ThirdParty/ANGLE/src/libEGL/ |
Config.cpp | 7 // 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) 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) cons [all...] |
Config.h | 7 // Config.h: Defines the egl::Config class, describing the format, type 26 class Config 29 Config(D3DDISPLAYMODE displayMode, EGLint minSwapInterval, EGLint maxSwapInterval, D3DFORMAT renderTargetFormat, D3DFORMAT depthStencilFormat, EGLint multiSample); 52 EGLint mConformant; // Whether contexts created with this config are conformant 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 [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
Config.java | 26 final class Config {
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
config.py | 33 # common/config/ports.py . 58 class Config(object):
|
/external/chromium/chrome/browser/net/websocket_experiment/ |
websocket_experiment_runner.h | 30 class Config { 32 Config() 38 WebSocketExperimentTask::Config ws_config[6]; 67 Config config_;
|
websocket_experiment_task.cc | 36 const Config& config, URLFetcher::Delegate* delegate) { 45 new URLFetcher(config.http_url, URLFetcher::GET, delegate); 55 const Config& config, net::WebSocketDelegate* delegate) { 64 new net::WebSocket::Request(config.url, 65 config.ws_protocol, 66 config.ws_origin, 67 config.ws_location, 68 config.protocol_version [all...] |
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/aac/libSYS/src/mips/ |
genericStds_mips.cpp | 96 /* value below is defined in simulator config (MipsMemIntf-{24KE,4KE}.cfg) */ 186 unsigned int Config; 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/ |
extensions_quota_service.h | 85 struct Config { 114 void Reset(const Config& config, const base::TimeTicks& start); 145 explicit QuotaLimitHeuristic(const Config& config, BucketMapper* map); 155 const Config& config() { return config_; } function in class:QuotaLimitHeuristic 164 const Config config_; 176 explicit TimedLimit(const Config& config, BucketMapper* map [all...] |
extensions_quota_service_unittest.cc | 15 typedef QuotaLimitHeuristic::Config Config; 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) };
|
extension_bookmarks_module.cc | 42 typedef QuotaLimitHeuristic::Config Config; 779 static const Config kShortLimitConfig; 780 static const Config kLongLimitConfig; 785 const Config BookmarksQuotaLimitFactory::kShortLimitConfig = { 790 const Config BookmarksQuotaLimitFactory::kLongLimitConfig = {
|
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
Log.java | 154 static final class Config {
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
Config.java | 34 public class Config { 36 private static final String TAG = "QSB.Config"; 83 * Creates a new config that uses hard-coded default values. 85 public Config(Context context) {
|
/external/skia/include/core/ |
SkBitmap.h | 32 and height, and a format (config), and a pointer to the actual pixels. 43 enum Config { 67 Its config is set to kNo_Config. 96 /** Return the config for the bitmap. 98 Config config() const { return (Config)fConfig; } function in class:SkBitmap 99 /** DEPRECATED, use config() 101 Config getConfig() const { return this->config(); } [all...] |
/external/sonivox/jet_tools/JetCreator/ |
eas.py | 587 self.Config()
601 AudioBufferType = c_ubyte * (2 * self.config.mixBufferSize * self.config.numChannels)
603 self.buf_size = self.config.mixBufferSize
605 def Config (self):
607 if not hasattr(self, 'config'):
610 self.config = eas_dll.EAS_Config()[0]
612 (self.config.libVersion, self.config.maxVoices, self.config.numChannels, self.config.sampleRate, self.config.mixBufferSize)) [all...] |
/frameworks/base/graphics/java/android/graphics/ |
Bitmap.java | 278 public enum Config { 336 private static Config sConfigs[] = { 340 Config(int ni) { 344 static Config nativeToConfig(int ni) { 417 * setting the new bitmap's config to the one specified, and then copying 422 * @param config The desired config for the resulting bitmap 427 public Bitmap copy(Config config, boolean isMutable) { 429 Bitmap b = nativeCopy(mNativeBitmap, config.nativeInt, isMutable) 555 final Config config = source.getConfig(); local [all...] |
/external/llvm/lib/Transforms/Vectorize/ |
BBVectorize.cpp | 156 const VectorizeConfig Config; 159 : BasicBlockPass(ID), Config(C) { 164 : BasicBlockPass(ID), Config(C) { 312 v <= Config.VectorBits && (!Config.MaxIter || n <= Config.MaxIter); 378 if (!Config.NoMemOpBoost && (isa<LoadInst>(V) || isa<StoreInst>(V))) 379 return Config.ReqChainDepth/2; 452 return Config.VectorizeMath; 454 return Config.VectorizeFMA [all...] |
/external/quake/src/com/android/quake/ |
DownloaderActivity.java | 132 Config config = getLocalConfig(dest, LOCAL_CONFIG_FILE); local 133 if (config != null) { 134 return config.version.equals(expectedVersion); 139 private static Config getLocalConfig(File destPath, String configFilename) { 148 Config config = ConfigHandler.parse(is); local 149 return config; 151 Log.e(LOG_TAG, "Unable to read local config file", e); 307 private static class Config { 436 Config config = getConfig(); local 552 Config config = null; local [all...] |
/frameworks/base/services/java/com/android/server/net/ |
NetworkStatsService.java | 183 public static class Config { 188 public Config(long bucketDuration, long rotateAgeMillis, long deleteAgeMillis) { 195 public Config getDevConfig(); 196 public Config getXtConfig(); 197 public Config getUidConfig(); 198 public Config getUidTagConfig(); 345 String prefix, NetworkStatsSettings.Config config, boolean includeTags) { 349 mBaseDir, prefix, config.rotateAgeMillis, config.deleteAgeMillis) [all...] |
/gdk/samples/quake/src/com/android/quake/llvm/ |
DownloaderActivity.java | 132 Config config = getLocalConfig(dest, LOCAL_CONFIG_FILE); local 133 if (config != null) { 134 return config.version.equals(expectedVersion); 139 private static Config getLocalConfig(File destPath, String configFilename) { 148 Config config = ConfigHandler.parse(is); local 149 return config; 151 Log.e(LOG_TAG, "Unable to read local config file", e); 307 private static class Config { 436 Config config = getConfig(); local 552 Config config = null; local [all...] |
/external/v8/src/ |
jsregexp.h | 389 class Config { 417 ZoneSplayTree<Config>* tree() { return &tree_; } 418 ZoneSplayTree<Config> tree_; [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/lib/ |
pdebuild-ant.jar | |
/prebuilt/common/ddmlib/ |
ddmlib-prebuilt.jar | |