/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
|
/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 | 24 GestureEventQueue::Config GetGestureEventQueueConfig() { 25 GestureEventQueue::Config config; local 27 config.debounce_interval = base::TimeDelta::FromMilliseconds( 30 config.touchscreen_tap_suppression_config.enabled = true; 31 config.touchscreen_tap_suppression_config.max_cancel_to_down_time = 35 config.touchscreen_tap_suppression_config.max_tap_gap_time = 39 config.touchpad_tap_suppression_config.enabled = true; 40 config.touchpad_tap_suppression_config.max_cancel_to_down_time = 44 config.touchpad_tap_suppression_config.max_tap_gap_time 52 TouchEventQueue::Config config; local 133 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...] |
/frameworks/base/core/java/android/util/ |
Config.java | 24 public final class Config { 25 /** @hide */ public Config() {}
|
/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/ |
call.h | 59 struct Config { 60 explicit Config(newapi::Transport* send_transport) 67 webrtc::Config* webrtc_config; 84 static Call* Create(const Call::Config& config); 86 static Call* Create(const Call::Config& config, 87 const webrtc::Config& webrtc_config); 89 virtual VideoSendStream::Config GetDefaultSendConfig() = 0; 92 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/WebKit/Source/build/scripts/ |
preprocessor.pm | 24 use Config; 47 require Config; 50 } elsif (($Config::Config{'osname'}) =~ /solaris/i) { 66 if ($Config{osname} eq "cygwin" || $Config{osname} eq 'MSWin32') {
|
/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/test/ |
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_;
|
/frameworks/compile/mclinker/include/mcld/Support/ |
SystemUtils.h | 13 #include <mcld/Config/Config.h>
|
/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_;
|