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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/gn/
config.cc 5 #include "tools/gn/config.h"
11 Config::Config(const Settings* settings, const Label& label)
15 Config::~Config() {
18 Config* Config::AsConfig() {
22 const Config* Config::AsConfig() const {
config.h 12 // Represents a named config in the dependency graph.
13 class Config : public Item {
15 Config(const Settings* settings, const Label& label);
16 virtual ~Config();
18 virtual Config* AsConfig() OVERRIDE;
19 virtual const Config* AsConfig() const OVERRIDE;
27 DISALLOW_COPY_AND_ASSIGN(Config);
  /cts/tests/tests/graphics/src/android/graphics/cts/
Bitmap_ConfigTest.java 20 import android.graphics.Bitmap.Config;
25 assertEquals(Config.ALPHA_8, Config.valueOf("ALPHA_8"));
26 assertEquals(Config.RGB_565, Config.valueOf("RGB_565"));
27 assertEquals(Config.ARGB_4444, Config.valueOf("ARGB_4444"));
28 assertEquals(Config.ARGB_8888, Config.valueOf("ARGB_8888"));
32 Config[] config = Config.values() local
    [all...]
  /external/chromium_org/content/browser/speech/
speech_recognition_engine.cc 15 SpeechRecognitionEngine::Config::Config()
24 SpeechRecognitionEngine::Config::~Config() {
speech_recognition_engine.h 48 struct CONTENT_EXPORT Config {
49 Config();
50 ~Config();
68 virtual void SetConfig(const Config& config) = 0;
108 typedef SpeechRecognitionEngine::Config SpeechRecognitionEngineConfig;
  /external/chromium_org/ui/events/gesture_detection/
gesture_config_helper.cc 11 GestureProvider::Config DefaultGestureProviderConfig() {
12 GestureProvider::Config config; local
13 config.display = gfx::Screen::GetNativeScreen()->GetPrimaryDisplay();
14 return config;
gesture_config_helper.h 15 GESTURE_DETECTION_EXPORT GestureProvider::Config
gesture_provider.h 30 struct GESTURE_DETECTION_EXPORT Config {
31 Config();
32 ~Config();
34 GestureDetector::Config gesture_detector_config;
35 ScaleGestureDetector::Config scale_gesture_detector_config;
60 GestureProvider(const Config& config, GestureProviderClient* client);
  /external/chromium_org/chrome/browser/prerender/
prerender_config.cc 9 Config::Config() : max_bytes(150 * 1024 * 1024),
20 Config::~Config() { }
prerender_config.h 15 struct Config {
16 Config();
17 ~Config();
  /external/chromium_org/content/browser/renderer_host/input/
input_router_config_helper.h 14 InputRouterImpl::Config GetInputRouterConfigForPlatform();
input_router_config_helper.cc 23 GestureEventQueue::Config GetGestureEventQueueConfig() {
24 GestureEventQueue::Config config; local
26 config.debounce_interval = base::TimeDelta::FromMilliseconds(
29 config.touchscreen_tap_suppression_config.enabled = true;
30 config.touchscreen_tap_suppression_config.max_cancel_to_down_time =
34 config.touchscreen_tap_suppression_config.max_tap_gap_time =
38 config.touchpad_tap_suppression_config.enabled = true;
39 config.touchpad_tap_suppression_config.max_cancel_to_down_time =
43 config.touchpad_tap_suppression_config.max_tap_gap_time
51 TouchEventQueue::Config config; local
129 InputRouterImpl::Config config; local
    [all...]
  /external/glide/library/tests/src/com/bumptech/glide/load/engine/bitmap_recycle/
SizeStrategyTest.java 16 assertNull(strategy.get(100, 100, Bitmap.Config.ARGB_8888));
20 Bitmap bitmap = Bitmap.createBitmap(100, 100, Bitmap.Config.ARGB_8888);
22 assertEquals(bitmap, strategy.get(bitmap.getWidth(), bitmap.getHeight(), Bitmap.Config.ARGB_8888));
26 Bitmap original = Bitmap.createBitmap(400, 400, Bitmap.Config.ARGB_8888);
28 assertEquals(original, strategy.get(800, 400, Bitmap.Config.RGB_565));
32 Bitmap original = Bitmap.createBitmap(400, 400, Bitmap.Config.ARGB_8888);
34 assertEquals(original, strategy.get(200, 800, Bitmap.Config.ARGB_8888));
38 Bitmap original = Bitmap.createBitmap(400, 400, Bitmap.Config.ARGB_8888);
40 assertEquals(original, strategy.get(200, 200, Bitmap.Config.ARGB_8888));
44 Bitmap original = Bitmap.createBitmap(401, 401, Bitmap.Config.ARGB_8888)
    [all...]
  /external/chromium_org/tools/cr/cr/targets/
chrome.py 12 CONFIG = cr.Config.From(
13 CR_RUN_ARGUMENTS=cr.Config.Optional('-d "{CR_URL!e}"'),
20 CONFIG = cr.Config.From(
chrome_shell.py 12 CONFIG = cr.Config.From(
13 CR_RUN_ARGUMENTS=cr.Config.Optional('-d "{CR_URL!e}"'),
22 CONFIG = cr.Config.From(
content_shell.py 12 CONFIG = cr.Config.From(
13 CR_RUN_ARGUMENTS=cr.Config.Optional('-d "{CR_URL!e}"'),
22 CONFIG = cr.Config.From(
  /external/chromium_org/third_party/webrtc/test/
call_test.h 49 void CreateCalls(const Call::Config& sender_config,
50 const Call::Config& receiver_config);
51 void CreateSenderCall(const Call::Config& config);
52 void CreateReceiverCall(const Call::Config& config);
67 VideoSendStream::Config send_config_;
72 std::vector<VideoReceiveStream::Config> receive_configs_;
83 BaseTest(unsigned int timeout_ms, const FakeNetworkPipe::Config& config);
    [all...]
common_unittest.cc 34 TEST(Config, ReturnsDefaultInstanceIfNotConfigured) {
35 Config config; local
36 const MyExperiment& my_exp = config.Get<MyExperiment>();
41 TEST(Config, ReturnOptionWhenSet) {
42 Config config; local
43 config.Set<MyExperiment>(new MyExperiment(5, 1));
44 const MyExperiment& my_exp = config.Get<MyExperiment>();
49 TEST(Config, SetNullSetsTheOptionBackToDefault)
50 Config config; local
75 Config config; local
    [all...]
fake_network_pipe.h 34 struct Config {
35 Config()
54 explicit FakeNetworkPipe(const FakeNetworkPipe::Config& config);
61 void SetConfig(const FakeNetworkPipe::Config& config);
84 Config config_;
  /external/chromium_org/third_party/WebKit/Source/platform/
TestingPlatformSupport.h 57 struct Config {
58 Config() : hasDiscardableMemorySupport(false) { }
63 explicit TestingPlatformSupport(const Config&);
73 const Config m_config;
  /external/chromium_org/v8/src/
splay-tree-inl.h 14 template<typename Config, class Allocator>
15 SplayTree<Config, Allocator>::~SplayTree() {
21 template<typename Config, class Allocator>
22 bool SplayTree<Config, Allocator>::Insert(const Key& key,
26 root_ = new(allocator_) Node(key, Config::NoValue());
32 int cmp = Config::Compare(key, root_->key_);
38 Node* node = new(allocator_) Node(key, Config::NoValue());
46 template<typename Config, class Allocator>
47 void SplayTree<Config, Allocator>::InsertInternal(int cmp, Node* node) {
61 template<typename Config, class Allocator
    [all...]
  /external/chromium_org/third_party/webrtc/
call.h 63 struct Config {
64 explicit Config(newapi::Transport* send_transport)
71 webrtc::Config* webrtc_config;
88 static Call* Create(const Call::Config& config);
90 static Call* Create(const Call::Config& config,
91 const webrtc::Config& webrtc_config);
94 const VideoSendStream::Config& config,
    [all...]
common.h 18 // Class Config is designed to ease passing a set of options across webrtc code.
29 // config.Get<Algo1_CostFunction>().cost(value);
35 // config.Set<Algo1_CostFunction>(new SqrCost());
38 class Config {
51 Config() {}
52 ~Config() {
97 Config(const Config&);
98 void operator=(const Config&);
102 const T& Config::Get() const
    [all...]
  /external/chromium_org/third_party/webrtc/video_engine/
vie_channel_group.h 22 class Config;
35 const Config* config);
45 void SetBandwidthEstimationConfig(const webrtc::Config& config);
61 const Config* config_;
62 // Placeholder for the case where this owns the config.
63 scoped_ptr<Config> own_config_;
  /external/chromium_org/third_party/angle/src/libEGL/
Config.h 7 // Config.h: Defines the egl::Config class, describing the format, type
25 class Config
28 Config(rx::ConfigDesc desc, EGLint minSwapInterval, EGLint maxSwapInterval, EGLint texWidth, EGLint texHeight);
48 EGLint mConformant; // Whether contexts created with this config are conformant
77 bool operator()(const Config *x, const Config *y) const;
78 bool operator()(const Config &x, const Config &y) const;
82 EGLint wantedComponentsSize(const Config &config) const
    [all...]

Completed in 1436 milliseconds

1 2 3 4 5 6 7 8 91011>>