Searched defs:config (Results 276 - 300 of 982) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dlinux.py37 from webkitpy.layout_tests.port import config namespace
57 config_object = config.Config(host.executive, host.filesystem)
148 result = self._check_file_exists(self.path_to_apache_config_file(), "apache2 config file") and result
/external/chromium_org/third_party/angle/tests/deqp_tests/
H A Ddeqp_tests.cpp100 void SetCurrentConfig(const DEQPConfig& config) argument
102 kCurrentConfig = config;
110 void RunDEQPTest(const std::string &testPath, const DEQPConfig& config) argument
119 std::vector<char> visibilityArg = FormatArg("--deqp-visibility=%s", config.hidden ? "hidden" : "windowed");
122 std::vector<char> widthArg = FormatArg("--deqp-surface-width=%u", config.width);
125 std::vector<char> heightArg = FormatArg("--deqp-surface-height=%u", config.height);
139 de::UniquePtr<tcu::Platform> platform(new Win32EglCustomDisplayPlatform(config.displayType));
/external/chromium_org/third_party/mesa/src/src/glx/apple/
H A Dapple_glx_pbuffer.c120 apple_glx_pbuffer_create(Display * dpy, GLXFBConfig config, argument
130 struct glx_config *modes = (struct glx_config *) config;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
H A Dnouveau_screen.c69 __DRIconfig **config; local
71 config = driCreateConfigs(fb_formats[i].format,
80 assert(config);
82 configs = driConcatConfigs(configs, config);
H A Dnv10_state_fb.c65 union nouveau_bo_config config = { local
72 &config, &nfb->hierz.bo); local
/external/chromium_org/third_party/skia/dm/
H A DDMWriteTask.cpp14 DEFINE_bool(nameByHash, false, "If true, write .../hash.png instead of .../mode/config/name.png");
82 SkString config; // "gpu", "8888" member in struct:DM::JsonData
99 SkString config = fSuffixes.back(); local
105 JsonData entry = { fBaseName, config, mode, fSourceType, md5 };
131 // Nested by mode, config, etc.
186 result["key"]["config"] = gJsonData[i].config.c_str();
/external/chromium_org/third_party/skia/include/gpu/
H A DGrColor.h130 static inline uint32_t GrPixelConfigComponentMask(GrPixelConfig config) { argument
131 SkASSERT(config >= 0 && config < kGrPixelConfigCnt);
146 return kFlags[config];
/external/chromium_org/third_party/skia/platform_tools/android/app/src/com/skia/
H A DSkiaSampleView.java279 throw new IllegalArgumentException("Could not get config data");
283 EGLConfig config = configs[i];
284 if (findConfigAttrib(egl, display, config , EGL10.EGL_RED_SIZE, 0) == 8 &&
285 findConfigAttrib(egl, display, config, EGL10.EGL_BLUE_SIZE, 0) == 8 &&
286 findConfigAttrib(egl, display, config, EGL10.EGL_GREEN_SIZE, 0) == 8 &&
287 findConfigAttrib(egl, display, config, EGL10.EGL_ALPHA_SIZE, 0) == 8 &&
288 findConfigAttrib(egl, display, config, EGL10.EGL_STENCIL_SIZE, 0) == 8) {
289 return config;
293 throw new IllegalArgumentException("Could not find suitable EGL config");
297 EGLConfig config, in
296 findConfigAttrib(EGL10 egl, EGLDisplay display, EGLConfig config, int attribute, int defaultValue) argument
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrDrawTargetCaps.h74 bool isConfigRenderable(GrPixelConfig config, bool withMSAA) const { argument
75 SkASSERT(kGrPixelConfigCnt > config);
76 return fConfigRenderSupport[config][withMSAA];
79 bool isConfigTexturable(GrPixelConfig config) const {
80 SkASSERT(kGrPixelConfigCnt > config);
81 return fConfigTextureSupport[config];
113 // The first entry for each config is without msaa and the second is with.
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLCaps.cpp467 // If we don't support MSAA then undo any places above where we set a config as renderable with
722 GrPixelConfig config,
727 SkASSERT((unsigned)config < (unsigned)kGrPixelConfigCnt);
736 fStencilVerifiedColorConfigs[i].markVerified(config);
745 GrPixelConfig config,
750 SkASSERT((unsigned)config < (unsigned)kGrPixelConfigCnt);
758 return fStencilVerifiedColorConfigs[i].isVerified(config);
721 markColorConfigAndStencilFormatAsVerified( GrPixelConfig config, const GrGLStencilBuffer::Format& format) argument
/external/chromium_org/third_party/skia/tools/bug_chomper/res/third_party/
H A Djquery.tablednd.js104 var config = table.tableDnDConfig;
115 if (config.onDragStart) {
117 config.onDragStart(table, this);
180 var config = jQuery.tableDnD.currentTable.tableDnDConfig; variable
198 if (mousePos.y-yOffset < config.scrollAmount) {
199 window.scrollBy(0, -config.scrollAmount);
203 if (windowHeight-(mousePos.y-yOffset) < config.scrollAmount) {
204 window.scrollBy(0, config.scrollAmount);
215 if (config.onDragClass) {
216 dragObj.addClass(config
277 var config = jQuery.tableDnD.currentTable.tableDnDConfig; variable
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
H A Dacm_receiver_unittest.cc50 AudioCoding::Config config; local
51 config.transport = this;
52 acm_.reset(new AudioCodingImpl(config));
53 receiver_.reset(new AcmReceiver(config.ToOldConfig()));
H A Dacm_receiver_unittest_oldapi.cc50 AudioCodingModule::Config config; local
51 acm_.reset(new AudioCodingModuleImpl(config));
52 receiver_.reset(new AcmReceiver(config));
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
H A Dneteq_performance_test.cc39 NetEq::Config config; local
40 config.sample_rate_hz = kSampRateHz;
41 NetEq* neteq = NetEq::Create(config);
/external/chromium_org/third_party/webrtc/modules/audio_processing/
H A Decho_control_mobile_impl.cc285 AecmConfig config; local
286 config.cngMode = comfort_noise_enabled_;
287 config.echoMode = MapSetting(routing_mode_);
289 return WebRtcAecm_set_config(static_cast<Handle*>(handle), config);
/external/chromium_org/third_party/webrtc/modules/audio_processing/test/android/apmtest/jni/
H A Dmain.c80 EGLConfig config; local
91 eglChooseConfig(display, attribs, &config, 1, &numConfigs);
97 eglGetConfigAttrib(display, config, EGL_NATIVE_VISUAL_ID, &format);
101 surface = eglCreateWindowSurface(display, config, engine->app->window, NULL);
102 context = eglCreateContext(display, config, NULL, NULL);
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/
H A Dremote_bitrate_estimators_test.cc64 const DefaultBweTestConfig& config = GetParam(); local
65 SetupTestFromConfig(config.bwe_test_config);
66 for (size_t i = 0; i < config.number_of_senders; ++i) {
245 BweTestConfig config; local
246 config.estimator_configs.push_back(EstimatorConfigs(kAbsSendTime, 0));
247 SetupTestFromConfig(config);
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/tools/
H A Dvideo_quality_measurement.cc111 int HandleCommandLineFlags(webrtc::test::TestConfig* config) { argument
117 config->name = FLAGS_test_name;
118 config->description = FLAGS_test_description;
129 config->input_filename = FLAGS_input_filename;
139 config->output_dir = FLAGS_output_dir;
157 config->output_filename = FLAGS_output_filename;
159 config->output_filename = FLAGS_output_dir + "/"+ FLAGS_output_filename;
161 test_file = fopen(config->output_filename.c_str(), "wb");
164 config->output_filename.c_str());
170 config
262 CalculateSsimVideoMetrics(webrtc::test::TestConfig* config, webrtc::test::QualityMetricsResult* result) argument
274 CalculatePsnrVideoMetrics(webrtc::test::TestConfig* config, webrtc::test::QualityMetricsResult* result) argument
286 PrintConfigurationSummary(const webrtc::test::TestConfig& config) argument
342 PrintPythonOutput(const webrtc::test::TestConfig& config, const webrtc::test::Stats& stats, const webrtc::test::QualityMetricsResult& ssim_result, const webrtc::test::QualityMetricsResult& psnr_result) argument
448 webrtc::test::TestConfig config; local
[all...]
/external/chromium_org/third_party/webrtc/video/
H A Dsend_statistics_proxy.cc20 const VideoSendStream::Config& config)
21 : config_(config),
19 SendStatisticsProxy( const VideoSendStream::Config& config) argument
H A Dvideo_receive_stream.cc36 const VideoReceiveStream::Config& config,
41 encoded_frame_proxy_(config.pre_decode_callback),
42 config_(config),
169 if (config.pre_decode_callback) {
175 if (config.rtp.rtcp_xr.receiver_reference_time_report) {
35 VideoReceiveStream(webrtc::VideoEngine* video_engine, const VideoReceiveStream::Config& config, newapi::Transport* transport, webrtc::VoiceEngine* voice_engine, int base_channel) argument
/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_network_impl.cc165 int video_channel, const webrtc::Config& config) {
168 video_channel, config);
164 SetBandwidthEstimationConfig( int video_channel, const webrtc::Config& config) argument
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dchannel_manager.cc48 ChannelManager::ChannelManager(uint32_t instance_id, const Config& config) argument
52 config_(config) {}
62 ChannelOwner ChannelManager::CreateChannelInternal(const Config& config) { argument
64 Channel::CreateChannel(channel, ++last_channel_id_, instance_id_, config);
H A Dvoice_engine_impl.cc34 VoiceEngine* GetVoiceEngine(const Config* config, bool owns_config) argument
46 delete config;
53 VoiceEngineImpl* self = new VoiceEngineImpl(config, owns_config);
88 Config* config = new Config(); local
89 return GetVoiceEngine(config, true);
92 VoiceEngine* VoiceEngine::Create(const Config& config) { argument
93 return GetVoiceEngine(&config, false);
/external/chromium_org/tools/telemetry/telemetry/
H A Dtest_runner.py211 for base_dir in config.base_paths:
226 for base_dir in config.base_paths:
237 for base_dir in config.base_paths:
256 if input_test_name in config.test_aliases:
257 exact_match = config.test_aliases[input_test_name]
354 config = environment.Environment([util.GetBaseDir()]) variable
/external/chromium_org/tools/telemetry/telemetry/unittest/
H A Drun_tests.py111 config = None variable
197 test_suite = DiscoverTests(config.test_dirs, config.top_level_dir,
201 result = runner.run(test_suite, config.progress_reporters,

Completed in 422 milliseconds

<<11121314151617181920>>