HomeSort by relevance Sort by last modified time
    Searched defs:Config (Results 1 - 25 of 31) sorted by null

1 2

  /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...]
  /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...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
Config.java 26 final class Config {
  /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 {
  /external/skia/include/core/
SkBitmap.h 39 and height, and a format (config), and a pointer to the actual pixels.
50 enum Config {
74 Its config is set to kNo_Config.
103 /** Return the config for the bitmap.
105 Config config() const { return (Config)fConfig; } function in class:SkBitmap
106 /** DEPRECATED, use config()
108 Config getConfig() const { return this->config(); }
    [all...]
  /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/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 252 public enum Config {
310 private static Config sConfigs[] = {
314 Config(int ni) {
318 static Config nativeToConfig(int ni) {
391 * setting the new bitmap's config to the one specified, and then copying
396 * @param config The desired config for the resulting bitmap
401 public Bitmap copy(Config config, boolean isMutable) {
403 Bitmap b = nativeCopy(mNativeBitmap, config.nativeInt, isMutable)
520 final Config config = source.getConfig(); local
    [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...]
  /external/v8/src/
jsregexp.h 385 class Config {
412 ZoneSplayTree<Config>* tree() { return &tree_; }
413 ZoneSplayTree<Config> tree_;
    [all...]
  /prebuilt/common/ddmlib/
ddmlib-prebuilt.jar 
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/14/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 

Completed in 378 milliseconds

1 2