Searched defs:config (Results 1 - 25 of 402) sorted by relevance

1234567891011>>

/external/chromium-trace/trace-viewer/third_party/webapp2/tests/resources/
H A Di18n.py1 from webapp2_extras import config namespace
7 'required': config.REQUIRED_VALUE,
/external/libxml2/macos/src/
H A Dlibxml2_GUSIConfig.cp71 /**************** BEGIN GUSI CONFIGURATION **************************** * * GUSI Configuration section generated by GUSI Configurator * last modified: Wed Oct 31 17:07:45 2001 * * This section will be overwritten by the next run of Configurator. */ #define GUSI_SOURCE #include <GUSIConfig.h> #include <sys/cdefs.h> /* Declarations of Socket Factories */ __BEGIN_DECLS void GUSIwithInetSockets(); void GUSIwithLocalSockets(); void GUSIwithMTInetSockets(); void GUSIwithMTTcpSockets(); void GUSIwithMTUdpSockets(); void GUSIwithOTInetSockets(); void GUSIwithOTTcpSockets(); void GUSIwithOTUdpSockets(); void GUSIwithPPCSockets(); void GUSISetupFactories(); __END_DECLS /* Configure Socket Factories */ void GUSISetupFactories() { #ifdef GUSISetupFactories_BeginHook GUSISetupFactories_BeginHook #endif GUSIwithInetSockets(); #ifdef GUSISetupFactories_EndHook GUSISetupFactories_EndHook #endif } /* Declarations of File Devices */ __BEGIN_DECLS void GUSIwithNullSockets(); void GUSISetupDevices(); __END_DECLS /* Configure File Devices */ void GUSISetupDevices() { #ifdef GUSISetupDevices_BeginHook GUSISetupDevices_BeginHook #endif GUSIwithNullSockets(); #ifdef GUSISetupDevices_EndHook GUSISetupDevices_EndHook #endif } #ifndef __cplusplus #error GUSISetupConfig() needs to be written in C++ #endif GUSIConfiguration::FileSuffix sSuffices[] = { "", '????', '????' }; extern "C" void GUSISetupConfig() { GUSIConfiguration * config = GUSIConfiguration::CreateInstance(GUSIConfiguration::kNoResource); config->ConfigureDefaultTypeCreator('TEXT', 'CWIE'); config->ConfigureSuffices( sizeof(sSuffices)/sizeof(GUSIConfiguration::FileSuffix)-1, sSuffices); } /* (…)
1 /**************** BEGIN GUSI CONFIGURATION **************************** local
/external/wpa_supplicant_8/wpa_supplicant/
H A Dconfig_none.c16 #include "config.h"
22 struct wpa_config *config; local
27 config = cfgp;
29 config = wpa_config_alloc_empty(NULL, NULL);
30 if (config == NULL)
33 return config;
37 int wpa_config_write(const char *name, struct wpa_config *config) argument
44 /* TODO: write global config parameters */
47 for (ssid = config->ssid; ssid; ssid = ssid->next) {
51 for (blob = config
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/config/
H A DPKCS12StoreParameter.java1 package org.bouncycastle.jcajce.provider.config;
H A DProviderConfiguration.java1 package org.bouncycastle.jcajce.provider.config;
/external/deqp/framework/egl/
H A DegluConfigInfo.cpp21 * \brief EGL config dst->
73 void queryConfigInfo (const Library& egl, EGLDisplay display, EGLConfig config, ConfigInfo* dst) argument
75 egl.getConfigAttrib(display, config, EGL_BUFFER_SIZE, &dst->bufferSize);
76 egl.getConfigAttrib(display, config, EGL_RED_SIZE, &dst->redSize);
77 egl.getConfigAttrib(display, config, EGL_GREEN_SIZE, &dst->greenSize);
78 egl.getConfigAttrib(display, config, EGL_BLUE_SIZE, &dst->blueSize);
79 egl.getConfigAttrib(display, config, EGL_LUMINANCE_SIZE, &dst->luminanceSize);
80 egl.getConfigAttrib(display, config, EGL_ALPHA_SIZE, &dst->alphaSize);
81 egl.getConfigAttrib(display, config, EGL_ALPHA_MASK_SIZE, &dst->alphaMaskSize);
82 egl.getConfigAttrib(display, config, EGL_BIND_TO_TEXTURE_RG
[all...]
H A DegluNativePixmap.cpp68 NativePixmap* NativePixmapFactory::createPixmap (NativeDisplay* nativeDisplay, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, int width, int height) const argument
70 DE_UNREF(display && config && attribList);
/external/deqp/scripts/
H A Dlaunchcontrol_build.py55 "--config",
56 dest="config",
72 print "# %s %s BUILD" % (options.config.upper(), options.buildType.upper())
76 config = BuildConfig(buildDir, options.buildType, BUILD_CONFIGS[options.config]) variable
77 initBuildDir(config, MAKEFILE_GENERATOR)
/external/mockito/src/org/mockito/internal/exceptions/stacktrace/
H A DConditionalStackTraceFilter.java16 private IMockitoConfiguration config = new GlobalConfiguration(); field in class:ConditionalStackTraceFilter
20 if (!config.cleansStackTrace()) {
/external/skia/dm/
H A DDMJsonWriter.h27 SkString config; // "gpu", "8888", "serialize", "pipe" member in struct:DM::JsonWriter::BitmapResult
/external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/
H A Djinja2.py93 config = None variable in class:Jinja2
95 def __init__(self, app, config=None):
100 :param config:
104 self.config = config = app.config.load_config(self.config_key,
105 default_values=default_config, user_values=config,
107 kwargs = config['environment_args'].copy()
111 template_path = config['template_path']
112 compiled_path = config['compiled_pat
[all...]
H A Dmako.py61 config = None variable in class:Mako
63 def __init__(self, app, config=None):
64 self.config = config = app.config.load_config(self.config_key,
65 default_values=default_config, user_values=config,
68 directories = config.get('template_path')
/external/deqp/framework/platform/null/
H A DtcuNullPlatform.cpp42 glu::RenderContext* createContext (const glu::RenderConfig& config, const tcu::CommandLine&) const argument
44 return new RenderContext(config);
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
H A DLruPoolStrategy.java7 Bitmap get(int width, int height, Bitmap.Config config); argument
10 String logBitmap(int width, int height, Bitmap.Config config); argument
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
H A DGifBitmapProvider.java17 public Bitmap obtain(int width, int height, Bitmap.Config config) { argument
18 return bitmapPool.getDirty(width, height, config);
/external/libcxx/test/libcxx/ndk/test/
H A Dconfig.py3 import libcxx.test.config namespace
8 class Configuration(libcxx.test.config.Configuration):
9 def __init__(self, lit_config, config):
10 super(Configuration, self).__init__(lit_config, config)
42 self.config.available_features.add('long_tests')
49 tmp_dir = getattr(self.config, 'device_dir', '/data/local/tmp/')
58 getattr(self.config, 'timeout', '300'),
/external/mesa3d/src/glx/
H A Dcreate_context.c37 glXCreateContextAttribsARB(Display *dpy, GLXFBConfig config, argument
42 struct glx_config *const cfg = (struct glx_config *) config;
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_surface.c39 union nouveau_bo_config config = {}; local
55 config.nv04.surf_pitch = s->pitch;
58 config.nv04.surf_flags = NV04_BO_32BPP;
60 config.nv04.surf_flags = NV04_BO_16BPP;
63 config.nv04.surf_flags |= NV04_BO_ZETA;
71 &config, &s->bo);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/internal/
H A DRobolectricTestRunnerInterface.java15 void setRobolectricConfig(RobolectricConfig config); argument
/external/skia/include/gpu/
H A DGrSurface.h47 * Retrieves the pixel config specified when the surface was created.
50 * config that isn't equivalent with one of our configs.
52 GrPixelConfig config() const { return fDesc.fConfig; } function in class:GrSurface
77 * @param config the pixel config of the destination buffer
84 * pixel config.
87 GrPixelConfig config,
99 * @param config the pixel config of the source buffer
106 * pixel config
[all...]
/external/vboot_reference/futility/
H A Dcmd_dump_kernel_config.c35 char *config = NULL; local
80 config = FindKernelConfig(infile, kernel_body_load_address);
81 if (!config)
84 printf("%s", config);
86 free(config);
/external/webp/src/enc/
H A Dconfig.c20 int WebPConfigInitInternal(WebPConfig* config, argument
25 if (config == NULL) return 0;
27 config->quality = quality;
28 config->target_size = 0;
29 config->target_PSNR = 0.;
30 config->method = 4;
31 config->sns_strength = 50;
32 config->filter_strength = 60; // mid-filtering
33 config->filter_sharpness = 0;
34 config
88 WebPValidateConfig(const WebPConfig* config) argument
157 WebPConfigLosslessPreset(WebPConfig* config, int level) argument
[all...]
/external/aac/libMpegTPEnc/src/
H A Dtpenc_adts.cpp148 INT adtsWrite_Init(HANDLE_ADTS hAdts, CODER_CONFIG *config) argument
151 if ( config->nSubFrames < 1
152 || config->nSubFrames > 4
153 || (int)config->aot > 4
154 || (int)config->aot < 1 ) {
159 if (config->flags & CC_MPEG_ID) {
165 hAdts->protection_absent = ! (config->flags & CC_PROTECTION);
166 hAdts->profile = ((int)config->aot) - 1;
167 hAdts->sample_freq_index = getSamplingRateIndex(config->samplingRate);
168 hAdts->sample_freq = config
[all...]
/external/boringssl/src/ssl/test/
H A Dtest_config.cc34 // it returns a pointer to the corresponding field in |config|. Otherwise, it
37 T *FindField(TestConfig *config, const Flag<T> (&flags)[N], const char *flag) { argument
40 return &(config->*(flags[i].member));
/external/deqp/framework/opengl/
H A DgluRenderConfig.cpp31 void parseConfigBitsFromName (RenderConfig* config, const char* renderCfgName) argument
35 DE_ASSERT(config->redBits == RenderConfig::DONT_CARE &&
36 config->greenBits == RenderConfig::DONT_CARE &&
37 config->blueBits == RenderConfig::DONT_CARE &&
38 config->alphaBits == RenderConfig::DONT_CARE &&
39 config->depthBits == RenderConfig::DONT_CARE &&
40 config->stencilBits == RenderConfig::DONT_CARE &&
41 config->numSamples == RenderConfig::DONT_CARE);
62 config->redBits = colorCfgs[ndx].redBits;
63 config
143 parseRenderConfig(RenderConfig* config, const tcu::CommandLine& cmdLine) argument
[all...]

Completed in 2079 milliseconds

1234567891011>>