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

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/server/cros/faft/config/
config.py 9 from autotest_lib.server.cros.faft.config import DEFAULTS
12 class Config(object):
19 the config package and the overrides come from module files named
40 the requested config attribute.
55 logging.debug("No config overrides found for platform: %s.",
83 str_list.append("--[ Raw FAFT Config Dump ]--------------------------")
87 str_list.append("--[ Resolved FAFT Config Values ]-------------------")
  /external/swiftshader/src/OpenGL/libEGL/
Config.cpp 15 // Config.cpp: Implements the egl::Config class, describing the format, type
19 #include "Config.h"
38 Config::Config(sw::Format displayFormat, EGLint minInterval, EGLint maxInterval, sw::Format renderTargetFormat, sw::Format depthStencilFormat, EGLint multiSample)
190 // Although we could support any format as an Android HWComposer compatible config by converting when necessary,
196 EGLConfig Config::getHandle() const
201 // This ordering determines the config ID
202 bool CompareConfig::operator()(const Config &x, const Config &y) cons
    [all...]
  /external/testng/src/test/java/test/dependent/functionality1/
Config.java 5 public class Config {
  /build/blueprint/bootstrap/minibp/
main.go 32 type Config struct {
36 func (c Config) GeneratingPrimaryBuilder() bool {
40 func (c Config) RemoveAbandonedFilesUnder() []string {
52 config := Config{
56 bootstrap.Main(ctx, config)
  /external/autotest/client/cros/faft/
config.py 6 class Config(object):
7 """Client side services config. Accessible by server side code as well."""
  /external/autotest/site_utils/lxc/
unittest_setup.py 52 class Config(object):
83 config = Config() variable
88 config.parse_options()
92 log_level = logging.DEBUG if config.verbose else logging.INFO
  /external/webrtc/webrtc/modules/audio_coding/codecs/pcm16b/
audio_encoder_pcm16b.h 23 struct Config : public AudioEncoderPcm::Config {
25 Config() : AudioEncoderPcm::Config(107), sample_rate_hz(8000) {}
31 explicit AudioEncoderPcm16B(const Config& config)
32 : AudioEncoderPcm(config, config.sample_rate_hz) {}
  /packages/apps/DocumentsUI/src/com/android/documentsui/picker/
Config.java 34 final class Config extends ActivityConfig {
  /external/parameter-framework/upstream/test/functional-tests/include/
Config.hpp 40 struct Config
42 Config() = default;
45 * { .instances = "fuu" } <=> { &Config::instances, "fuu" }
48 Config(M(Config::*member), T &&value)
  /external/webrtc/webrtc/
audio_state.h 30 struct Config {
42 const AudioState::Config& config);
  /frameworks/base/core/java/android/util/
Config.java 24 public final class Config {
25 /** @hide */ public Config() {}
  /packages/apps/DocumentsUI/src/com/android/documentsui/files/
Config.java 26 public final class Config extends ActivityConfig {
  /system/extras/perfprofd/
config.h 26 struct Config {
27 virtual ~Config() {}
48 // Config directory (where to read configs).
87 // For unit testing only: if set to 1, emit info messages on config
  /cts/tests/tests/drm/src/android/drm/cts/
Config.java 21 public interface Config {
  /development/vndk/tools/sourcedr/sourcedr/
project.py 20 class Config(object):
56 raise ValueError('unknown config name: ' + key)
62 config = collections.OrderedDict()
63 config['source_dir'] = self.source_dir
65 config[key] = sorted(getattr(self, key))
66 json.dump(config, config_fp, indent=2)
82 config_path = Config.get_default_path(project_dir)
83 self.config = Config(config_path)
84 self.config.load(
    [all...]
  /external/deqp/modules/egl/
teglRenderCase.hpp 44 struct Config
46 eglw::EGLConfig config; member in struct:deqp::egl::RenderCase::Config
50 Config (eglw::EGLConfig config_, eglw::EGLint surfaceTypeBit_, eglw::EGLint apiBits_)
51 : config (config_)
58 virtual void executeForConfig (eglw::EGLDisplay display, eglw::EGLConfig config);
59 virtual void executeForSurface (eglw::EGLDisplay display, eglw::EGLSurface surface, const Config& config) = DE_NULL;
71 virtual void executeForSurface (eglw::EGLDisplay display, eglw::EGLSurface surface, const Config& config);
72 virtual void executeForContext (eglw::EGLDisplay display, eglw::EGLContext context, eglw::EGLSurface surface, const Config& config) = DE_NULL
    [all...]
  /external/deqp/scripts/
run_internal_tests.py 45 class Config:
57 def initBuildDir (config):
58 if os.path.exists(config.buildPath):
59 shutil.rmtree(config.buildPath)
61 os.makedirs(config.buildPath)
62 execute(["cmake", os.path.realpath(config.srcPath)] + config.genParams, workDir = config.buildPath)
64 def prepareBuildDir (config):
66 if os.path.exists(config.buildPath)
    [all...]
  /external/v4l2_codec2/vda/
video_decode_accelerator.cc 12 VideoDecodeAccelerator::Config::Config() = default;
13 VideoDecodeAccelerator::Config::Config(const Config& config) = default; member in class:media::VideoDecodeAccelerator::Config
15 VideoDecodeAccelerator::Config::Config(VideoCodecProfile video_codec_profile)
18 VideoDecodeAccelerator::Config::~Config() = default
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
audio_encoder_ilbc.h 24 struct Config {
33 explicit AudioEncoderIlbc(const Config& config);
53 const Config config_;
  /external/webrtc/webrtc/modules/audio_coding/codecs/red/
audio_encoder_copy_red.h 28 struct Config {
35 explicit AudioEncoderCopyRed(const Config& config);
  /external/webrtc/webrtc/modules/audio_coding/include/
audio_coding_module.h 63 struct Config {
64 Config() : id(0), neteq_config(), clock(Clock::GetRealTimeClock()) {
71 NetEq::Config neteq_config;
84 static AudioCodingModule* Create(const Config& config);
  /frameworks/rs/tests/lldb/
config.py 17 This file contains the default test suite config which will be used in the
24 class Config(object):
27 The Config class is used by the test suite to abstract the specifics of a
28 user's local setup. This config can be overridden by specifying a custom
29 config on the command line.'''
  /hardware/google/av/media/sfplugin/
InputSurfaceWrapper.h 52 struct Config {
75 * \param config configuration. This can be updated during this call to provide output
79 virtual status_t configure(Config &config) = 0;
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
config.go 16 // A Config holds readonly compilation information.
19 type Config struct {
158 func NewConfig(arch string, types Types, ctxt *obj.Link, optimize bool) *Config {
159 c := &Config{arch: arch, Types: types}
318 func (c *Config) Set387(b bool) {
323 func (c *Config) SparsePhiCutoff() uint64 { return c.sparsePhiCutoff }
324 func (c *Config) Ctxt() *obj.Link { return c.ctxt }
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
config.go 16 // A Config holds readonly compilation information.
19 type Config struct {
158 func NewConfig(arch string, types Types, ctxt *obj.Link, optimize bool) *Config {
159 c := &Config{arch: arch, Types: types}
318 func (c *Config) Set387(b bool) {
323 func (c *Config) SparsePhiCutoff() uint64 { return c.sparsePhiCutoff }
324 func (c *Config) Ctxt() *obj.Link { return c.ctxt }

Completed in 768 milliseconds

1 2 3 4 5 6 7 8 91011>>