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

1 2 3 4 5 6 78 91011>>

  /external/skqp/tools/shape/
using_skia_and_harfbuzz.cpp 101 // Config //////////////////////////////////////////////////////////////////////
103 struct Config {
119 Config(int argc, char **argv) {
131 Placement(const Config* conf, SkDocument *doc)
132 : config(conf), document(doc), pageCanvas(nullptr) {
137 glyph_paint.setTextSize(SkDoubleToScalar(config->font_size.value));
144 config->page_width.value - 2*config->left_margin.value);
148 (current_y > config->line_spacing_ratio.value * config->font_size.value &
169 const Config* config; member in class:Placement
    [all...]
  /external/swiftshader/src/OpenGL/libEGL/
Config.h 15 // Config.h: Defines the egl::Config class, describing the format, type
32 class Config
35 Config(sw::Format displayFormat, EGLint minSwapInterval, EGLint maxSwapInterval, sw::Format renderTargetFormat, sw::Format depthStencilFormat, EGLint multiSample);
55 EGLint mConformant; // Whether contexts created with this config are conformant
83 bool operator()(const Config &x, const Config &y) const;
96 const egl::Config *get(EGLConfig configHandle);
99 typedef std::set<Config, CompareConfig> Set;
  /external/v4l2_codec2/vda/
video_decode_accelerator.h 70 // If set, the VDA will use deferred initialization if the config
110 // Config structure contains parameters required for the VDA initialization.
111 struct Config {
123 Config();
124 Config(const Config& config);
126 explicit Config(VideoCodecProfile profile);
128 ~Config();
165 // client (see Config::is_deferred_initialization_allowed), and the initia
    [all...]
  /external/v8/tools/clang/blink_gc_plugin/
Config.h 40 class Config {
  /external/webrtc/webrtc/modules/audio_processing/intelligibility/
intelligibility_enhancer.h 34 struct Config {
39 Config()
60 explicit IntelligibilityEnhancer(const Config& config);
61 IntelligibilityEnhancer(); // Initialize with default config.
  /external/webrtc/webrtc/
video_receive_stream.h 19 #include "webrtc/config.h"
76 struct Config {
77 Config() = delete;
78 explicit Config(Transport* rtcp_send_transport)
118 // disabled if there's no config present.
127 // Map from video RTP payload type -> RTX config.
video_send_stream.h 18 #include "webrtc/config.h"
77 struct Config {
78 Config() = delete;
79 explicit Config(Transport* send_transport)
179 // in the config. Encoder settings are passed on to the encoder instance along
181 virtual bool ReconfigureVideoEncoder(const VideoEncoderConfig& config) = 0;
  /frameworks/native/services/surfaceflinger/DisplayHardware/
HWC2.h 133 class Config
141 std::shared_ptr<const Config> build() {
142 return std::const_pointer_cast<const Config>(
177 std::shared_ptr<Config> mConfig;
190 Config(Display& display, hwc2_config_t id);
208 std::shared_ptr<const Config>* outConfig) const;
225 std::vector<std::shared_ptr<const Config>> getConfigs() const;
241 const std::shared_ptr<const Config>& config);
291 std::unordered_map<hwc2_config_t, std::shared_ptr<const Config>> mConfigs
    [all...]
  /hardware/google/av/media/sfplugin/
CCodec.h 161 typedef CCodecConfig Config;
162 Mutexed<Config> mConfig;
  /packages/apps/Stk/src/com/android/stk/
StkMenuConfig.java 53 private static final Config NO_CONFIG = new Config(0, 0, null, null);
59 private ArrayList<Config> mArray;
60 private Config mConfigs[] = null;
62 private static class Config {
68 public Config(int mcc, int mnc, String label, String icon) {
133 if (DBG) CatLog.d(LOG_TAG, "Return the cached config, slot id: " + slotId);
137 if (DBG) CatLog.d(LOG_TAG, "Find config and create the cached config, slot id: " + slotId);
138 for (Config config : mArray)
175 Config config = new Config(mcc, mnc, label, icon); local
    [all...]
  /prebuilts/go/darwin-x86/src/go/printer/
printer.go 55 Config
94 func (p *printer) init(cfg *Config, fset *token.FileSet, nodeSizes map[ast.Node]int) {
95 p.Config = *cfg
222 n := p.Config.Indent + p.indent // include base indentation
271 if p.Config.Mode&SourcePos != 0 {
    [all...]
  /prebuilts/go/darwin-x86/src/image/
image.go 28 // Config holds an image's color model and dimensions.
29 type Config struct {
  /prebuilts/go/linux-x86/src/go/printer/
printer.go 55 Config
94 func (p *printer) init(cfg *Config, fset *token.FileSet, nodeSizes map[ast.Node]int) {
95 p.Config = *cfg
222 n := p.Config.Indent + p.indent // include base indentation
271 if p.Config.Mode&SourcePos != 0 {
    [all...]
  /prebuilts/go/linux-x86/src/image/
image.go 28 // Config holds an image's color model and dimensions.
29 type Config struct {
  /prebuilts/misc/common/jacoco/src/main/java/com/google/android/jacoco/reporter/
ReportGenerator.java 52 private final Config mConfig;
54 private ReportGenerator(Config config) {
55 mConfig = config;
107 private static class Config {
114 Config(String reportName, List<File> classpath, List<File> sourceDirs,
128 static Config from(CommandLine commandLine) {
141 return new Config(commandLine.getOptionValue(OPT_REPORT_NAME), classpaths, sources,
194 new ReportGenerator(Config.from(commandLine))
  /prebuilts/misc/common/robolectric/3.1.1/lib/
robolectric-annotations-3.1.1.jar 
  /tools/test/connectivity/acts/framework/acts/
keys.py 23 class Config(enum.Enum):
24 """Enum values for test config related lookups.
26 # Keys used to look up values from test config files.
39 # Config names for controllers packaged in ACTS.
51 # Internal keys, used internally, not exposed to user's config files.
94 for name, member in Config.__members__.items():
108 """Translates the name of a controller in config file to its module name.
122 return getattr(Config, target_key_name).value
  /external/deqp/modules/glshared/
glsFboUtil.hpp 194 namespace config namespace in namespace:deqp::gls::FboUtil
197 struct Config
199 virtual ~Config (void) {};
202 struct Image : public Config
255 struct Attachment : public Config
324 } // config
326 class FboBuilder : public config::Framebuffer
330 const config::Attachment* att);
331 glw::GLuint glCreateTexture (const config::Texture& texCfg);
332 glw::GLuint glCreateRbo (const config::Renderbuffer& rbCfg)
    [all...]
  /build/blueprint/
module_ctx.go 126 Config() interface{}
186 config interface{}
211 func (d *baseModuleContext) Config() interface{} {
212 return d.config
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Impl.c 378 EFI_IP4_CONFIG_DATA *Config;
418 Config = &Ip4ModeData->ConfigData;
421 CopyMem (&Config->StationAddress, &Ip, sizeof (EFI_IPv4_ADDRESS));
424 CopyMem (&Config->SubnetMask, &Ip, sizeof (EFI_IPv4_ADDRESS));
454 Config the MNP parameter used by IP. The IP driver use one MNP
573 @param[in] Config The configure data.
589 IN EFI_IP4_CONFIG_DATA *Config
615 CopyMem (&IpInstance->ConfigData, Config, sizeof (IpInstance->ConfigData));
634 CopyMem (&Ip, &Config->StationAddress, sizeof (IP4_ADDR));
635 CopyMem (&Netmask, &Config->SubnetMask, sizeof (IP4_ADDR));
    [all...]
Ip4Input.c 980 EFI_IP4_CONFIG_DATA *Config;
985 Config = &IpInstance->ConfigData;
995 if (Config->ReceiveTimeout == (UINT32)(-1)) {
999 if (Config->AcceptPromiscuous) {
1010 if ((Proto == EFI_IP_PROTO_ICMP) && (!Config->AcceptAnyProtocol) && (Proto != Config->DefaultProtocol)) {
1014 if (!Config->AcceptIcmpErrors) {
1026 if (!Config->AcceptAnyProtocol && (Proto != Config->DefaultProtocol)) {
1037 return Config->AcceptBroadcast;
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Dhcp6Dxe/
Dhcp6Impl.h 119 EFI_DHCP6_CONFIG_DATA *Config;
  /device/linaro/bootloader/edk2/NetworkPkg/DnsDxe/
DnsImpl.c 396 @param Config The DNS configure data
401 IN OUT EFI_DNS4_CONFIG_DATA *Config
404 if (Config->DnsServerList != NULL) {
405 FreePool (Config->DnsServerList);
408 ZeroMem (Config, sizeof (EFI_DNS4_CONFIG_DATA));
414 @param Config The DNS configure data
419 IN OUT EFI_DNS6_CONFIG_DATA *Config
422 if (Config->DnsServerList != NULL) {
423 FreePool (Config->DnsServerList);
426 ZeroMem (Config, sizeof (EFI_DNS6_CONFIG_DATA));
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Input.c     [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/UefiPxeBcDxe/
PxeBcDhcp4.c     [all...]

Completed in 793 milliseconds

1 2 3 4 5 6 78 91011>>