Searched refs:Config (Results 1 - 25 of 388) sorted by relevance

1234567891011>>

/external/chromium_org/tools/gn/
H A Dconfig.cc11 Config::Config(const Settings* settings, const Label& label) function in class:Config
15 Config::~Config() {
18 Config* Config::AsConfig() {
22 const Config* Config::AsConfig() const {
H A Dconfig.h13 class Config : public Item { class in inherits: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);
/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() {
/external/chromium_org/ui/events/gesture_detection/
H A Dgesture_config_helper.cc11 GestureProvider::Config DefaultGestureProviderConfig() {
12 GestureProvider::Config config;
H A Dgesture_config_helper.h15 GESTURE_DETECTION_EXPORT GestureProvider::Config
/external/chromium_org/chrome/browser/prerender/
H A Dprerender_config.cc9 Config::Config() : max_bytes(150 * 1024 * 1024), function in class:prerender::Config
20 Config::~Config() { }
H A Dprerender_config.h15 struct Config { struct in namespace:prerender
16 Config();
17 ~Config();
/external/chromium_org/content/browser/renderer_host/input/
H A Dinput_router_config_helper.h14 InputRouterImpl::Config GetInputRouterConfigForPlatform();
H A Dinput_router_config_helper.cc23 GestureEventQueue::Config GetGestureEventQueueConfig() {
24 GestureEventQueue::Config config;
50 TouchEventQueue::Config GetTouchEventQueueConfig() {
51 TouchEventQueue::Config config;
65 GestureEventQueue::Config GetGestureEventQueueConfig() {
66 GestureEventQueue::Config config;
79 TouchEventQueue::Config GetTouchEventQueueConfig() {
80 TouchEventQueue::Config config;
98 GestureEventQueue::Config GetGestureEventQueueConfig() {
99 return GestureEventQueue::Config();
[all...]
/external/glide/library/tests/src/com/bumptech/glide/load/engine/bitmap_recycle/
H A DSizeStrategyTest.java16 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
[all...]
/external/chromium_org/tools/cr/cr/targets/
H A Dchrome.py12 CONFIG = cr.Config.From(
13 CR_RUN_ARGUMENTS=cr.Config.Optional('-d "{CR_URL!e}"'),
20 CONFIG = cr.Config.From(
H A Dchrome_shell.py12 CONFIG = cr.Config.From(
13 CR_RUN_ARGUMENTS=cr.Config.Optional('-d "{CR_URL!e}"'),
22 CONFIG = cr.Config.From(
H A Dcontent_shell.py12 CONFIG = cr.Config.From(
13 CR_RUN_ARGUMENTS=cr.Config.Optional('-d "{CR_URL!e}"'),
22 CONFIG = cr.Config.From(
/external/chromium_org/v8/src/
H A Dsplay-tree-inl.h14 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, clas
[all...]
H A Dtypes.cc22 template<class Config>
23 typename TypeImpl<Config>::Limits TypeImpl<Config>::Intersect(
33 template<class Config>
34 typename TypeImpl<Config>::Limits TypeImpl<Config>::Union(
44 template<class Config>
45 bool TypeImpl<Config>::Overlap(
46 typename TypeImpl<Config>::RangeType* lhs,
47 typename TypeImpl<Config>
[all...]
/external/chromium_org/third_party/webrtc/
H A Dcall.h63 struct Config { struct in class:webrtc::Call
64 explicit Config(newapi::Transport* send_transport) function in struct:webrtc::Call::Config
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,
100 const VideoReceiveStream::Config& config) = 0;
H A Dcommon.h18 // Class Config is designed to ease passing a set of options across webrtc code.
38 class Config { class in namespace:webrtc
51 Config() {} function in class:webrtc::Config
52 ~Config() {
97 Config(const Config&);
98 void operator=(const Config&);
102 const T& Config::Get() const {
114 void Config::Set(T* value) {
/external/chromium_org/third_party/webrtc/test/
H A Dcommon_unittest.cc34 TEST(Config, ReturnsDefaultInstanceIfNotConfigured) {
35 Config config;
41 TEST(Config, ReturnOptionWhenSet) {
42 Config config;
49 TEST(Config, SetNullSetsTheOptionBackToDefault) {
50 Config config;
74 TEST(Config, SupportsPolymorphism) {
75 Config config;
H A Dfake_network_pipe.h34 struct Config { struct in class:webrtc::FakeNetworkPipe
35 Config() function in struct:webrtc::FakeNetworkPipe::Config
54 explicit FakeNetworkPipe(const FakeNetworkPipe::Config& config);
61 void SetConfig(const FakeNetworkPipe::Config& config);
84 Config config_;
H A Dcall_test.h49 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);
91 virtual Call::Config GetSenderCallConfig();
92 virtual Call::Config GetReceiverCallConfig();
96 VideoSendStream::Config* send_confi
[all...]
H A Dencoder_settings.h20 const VideoSendStream::Config::EncoderSettings& encoder_settings);
/external/chromium_org/third_party/WebKit/Source/platform/
H A DTestingPlatformSupport.h57 struct Config { struct in class:blink::TestingPlatformSupport
58 Config() : hasDiscardableMemorySupport(false) { } function in struct:blink::TestingPlatformSupport::Config
63 explicit TestingPlatformSupport(const Config&);
73 const Config m_config;
/external/chromium_org/ui/android/java/src/org/chromium/ui/gfx/
H A DBitmapHelper.java23 Bitmap.Config bitmapConfig = getBitmapConfigForFormat(bitmapFormatValue);
50 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
79 * Provides a matching integer constant for the Bitmap.Config value passed.
82 * @return Matching integer constant for the Bitmap.Config value passed.
85 private static int getBitmapFormatForConfig(Bitmap.Config bitmapConfig) {
101 * Provides a matching Bitmap.Config for the enum config value passed.
104 * @return Matching Bitmap.Config for the enum value passed.
106 private static Bitmap.Config getBitmapConfigForFormat(int bitmapFormatValue) {
109 return Bitmap.Config.ALPHA_8;
111 return Bitmap.Config
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
H A DLruPoolStrategy.java7 public Bitmap get(int width, int height, Bitmap.Config config);
10 public String logBitmap(int width, int height, Bitmap.Config config);
/external/chromium_org/tools/cr/cr/base/
H A Darch.py9 DEFAULT = cr.Config.From(
31 ACTIVE = cr.Config.From(
38 ACTIVE = cr.Config.From(
49 ACTIVE = cr.Config.From(
60 ACTIVE = cr.Config.From(
75 ACTIVE = cr.Config.From(

Completed in 476 milliseconds

1234567891011>>