/external/deqp/modules/egl/ |
teglQueryConfigTests.cpp | 21 * \brief Config query tests. 203 EGLint getValue (EGLConfig config, EGLenum attrib, bool logValue=true); 205 virtual void executeTest (EGLConfig config) = 0; 249 const EGLConfig config = *m_configsIter; local 252 eglGetConfigAttrib(m_display, config, EGL_CONFIG_ID, &id); 254 log << TestLog::Message << "Config ID " << id << TestLog::EndMessage; 256 executeTest(config); 269 EGLint GetConfigAttribCase::getValue (EGLConfig config, EGLenum attrib, bool logValue) 274 eglGetConfigAttrib(m_display, config, attrib, &value); 350 log << TestLog::Message << "Fail, config IDs should be positive integer values beginning from 1." << TestLog::EndMessage [all...] |
/external/deqp/scripts/ |
run_nightly.py | 24 from build.config import * 150 def parseAsCSV (logPath, config): 151 args = [config.getBinaryPath(LOG_TO_CSV_PATH), "--mode=all", "--format=csv", logPath] 274 def runNightly (config): 275 build(config.buildConfig, config.generator) 279 logDir = os.path.join(BASE_LOGS_DIR, config.name) 283 compareLogPath = os.path.join(BASE_REFS_DIR, config.name + ".csv") 293 binaryName = config.generator.getBinaryPath(config.buildConfig.getBuildType(), os.path.basename(config.binaryName) 477 config = None variable 483 config = curCfg variable [all...] |
/external/dnsmasq/src/ |
lease.c | 147 /* changes to the config may change current leases. */ 150 struct dhcp_config *config; local 154 if ((config = find_config(daemon->dhcp_conf, NULL, lease->clid, lease->clid_len, 156 (config->flags & CONFIG_NAME) && 157 (!(config->flags & CONFIG_ADDR) || config->addr.s_addr == lease->addr.s_addr)) 158 lease_set_hostname(lease, config->hostname, 1); 453 Don't allow a name from the client to override a name from dnsmasq config. */
|
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/ |
Downsampler.java | 193 Bitmap.Config config = getConfig(is, decodeFormat); local 195 options.inPreferredConfig = config; 200 setInBitmap(options, pool.getDirty(targetWidth, targetHeight, config)); 233 private static Bitmap.Config getConfig(InputStream is, DecodeFormat format) { 236 return Bitmap.Config.ARGB_8888; 258 return hasAlpha ? Bitmap.Config.ARGB_8888 : Bitmap.Config.RGB_565;
|
TransformationUtils.java | 63 ? Bitmap.Config.ARGB_8888 : toCrop.getConfig()); 110 Bitmap.Config config = toFit.getConfig() != null ? toFit.getConfig() : Bitmap.Config.ARGB_8888; local 111 Bitmap toReuse = pool.get(targetWidth, targetHeight, config); 113 toReuse = Bitmap.createBitmap(targetWidth, targetHeight, config);
|
/external/guava/guava-tests/benchmark/com/google/common/base/ |
CharMatcherBenchmark.java | 43 @Param SampleMatcherConfig config; field in class:CharMatcherBenchmark 73 this.matcher = precomputed ? config.matcher.precomputed() : config.matcher; 80 this.string = checkString(length, percent, config.matchingChars, [all...] |
/external/guice/extensions/servlet/test/com/google/inject/servlet/ |
FilterDefinitionTest.java | 279 private FilterConfig config; field in class:FilterDefinitionTest.MockFilter 284 this.config = filterConfig; 306 return config;
|
/external/guice/extensions/struts2/src/com/google/inject/struts2/ |
GuiceObjectFactory.java | 29 import com.opensymphony.xwork2.config.ConfigurationException; 30 import com.opensymphony.xwork2.config.entities.InterceptorConfig; 190 final InterceptorConfig config; field in class:GuiceObjectFactory.ProvidedInterceptor 195 ProvidedInterceptor(InterceptorConfig config, Map params, 197 this.config = config; 218 delegate = superBuildInterceptor(config, params);
|
Struts2Factory.java | 26 import com.opensymphony.xwork2.config.ConfigurationException; 27 import com.opensymphony.xwork2.config.entities.InterceptorConfig; 174 private final InterceptorConfig config; field in class:Struts2Factory.ProvidedInterceptor 179 ProvidedInterceptor(InterceptorConfig config, Map<String, String> params, 181 this.config = config; 202 delegate = superBuildInterceptor(config, params);
|
/external/kernel-headers/original/uapi/linux/ |
atmlec.h | 73 struct atmlec_config_msg config; member in union:atmlec_msg::__anon21060
|
sdla.h | 83 short config; member in struct:sdla_conf 102 short config; member in struct:sdla_dlci_conf
|
/external/kernel-headers/original/uapi/linux/netfilter_bridge/ |
ebt_stp.h | 41 struct ebt_stp_config_info config; member in struct:ebt_stp_info
|
/external/libvpx/libvpx/vpx/ |
vpx_codec.h | 208 } config; /**< Configuration pointer aliasing union */ member in struct:vpx_codec_ctx
|
/external/ltp/utils/ffsb-6.0-rc2/ |
parser.h | 120 struct config_options *config; member in struct:container
|
/external/lzma/CPP/7zip/Bundles/SFXSetup/ |
SfxSetup.cpp | 157 AString config;
local 158 if (!ReadDataString(fullPath, kStartID, kEndID, config))
161 ShowErrorMessage(L"Can't load config info");
168 if (!config.IsEmpty())
171 if (!GetTextConfig(config, pairs))
174 ShowErrorMessage(L"Config failed");
|
/external/mesa3d/src/egl/drivers/dri2/ |
platform_wayland.c | 752 const __DRIconfig *config; local 821 config = dri2_dpy->driver_configs[i]; 823 dri2_add_config(disp, config, i + 1, 0, types, NULL, rgb_masks); 825 dri2_add_config(disp, config, i + 1, 0, types, NULL, argb_masks);
|
/external/mesa3d/src/gallium/drivers/nouveau/ |
nouveau_mm.c | 31 union nouveau_bo_config config; member in struct:nouveau_mman 131 ret = nouveau_bo_new(cache->dev, cache->domain, 0, size, &cache->config, 167 ret = nouveau_bo_new(cache->dev, cache->domain, 0, size, &cache->config, 171 size, cache->config.nv50.memtype, ret); 237 union nouveau_bo_config *config) 247 cache->config = *config;
|
/external/mesa3d/src/gallium/state_trackers/egl/drm/ |
native_drm.h | 61 struct drm_config *config; member in struct:drm_display
|
/external/mesa3d/src/gallium/state_trackers/egl/fbdev/ |
native_fbdev.c | 68 struct native_config config; member in struct:fbdev_display 381 configs[0] = &fbdpy->config; 437 fbdpy->config.color_format, PIPE_TEXTURE_2D, 0, 451 struct native_config *nconf = &fbdpy->config; 499 fbdpy->config.scanout_bit = TRUE;
|
/external/mesa3d/src/gallium/state_trackers/egl/wayland/ |
native_wayland.c | 375 struct wayland_config *config = wayland_config(nconf); local 385 surface->color_format = config->base.color_format;
|
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/ |
xvmc_bench.c | 51 struct Config 62 void ParseArgs(int argc, char **argv, struct Config *config); 64 void ParseArgs(int argc, char **argv, struct Config *config) 69 config->input_width = DEFAULT_INPUT_WIDTH; 70 config->input_height = DEFAULT_INPUT_HEIGHT; 71 config->output_width = 0; 72 config->output_height = 0; 73 config->pipeline = 0 177 struct Config config; local [all...] |
/external/parameter-framework/upstream/test/functional-tests/ |
Handle.cpp | 31 #include "Config.hpp" 97 Config getConfig() 99 Config config; local 100 config.components = nodeDesc("ComponentType", "component_type", getBasicParams()); 101 config.instances = 107 return config; 575 Config getConfig() 577 Config config; local [all...] |
/external/pdfium/testing/ |
embedder_test.cpp | 98 FPDF_LIBRARY_CONFIG config; local 99 config.version = 2; 100 config.m_pUserFontPaths = nullptr; 101 config.m_v8EmbedderSlot = 0; 102 config.m_pIsolate = external_isolate_; 103 FPDF_InitLibraryWithConfig(&config);
|
/external/replicaisland/src/com/replica/replicaisland/ |
KeyboardConfigDialogPreference.java | 169 View config = null; local 172 config = mLeftBorder; 175 config = mRightBorder; 178 config = mJumpBorder; 181 config = mAttackBorder; 185 return config; 234 selectId(0); // deselect the current config box;
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/ |
RobolectricPackageManager.java | 29 private RobolectricConfig config; field in class:RobolectricPackageManager 32 public RobolectricPackageManager(ContextWrapper contextWrapper, RobolectricConfig config) { 34 this.config = config; 50 if (config.getPackageName().equals(packageName)) { 53 applicationInfo.flags = config.getApplicationFlags(); 54 applicationInfo.targetSdkVersion = config.getSdkVersion(); 55 applicationInfo.packageName = config.getPackageName(); 56 applicationInfo.processName = config.getProcessName(); 57 applicationInfo.name = config.getApplicationName() [all...] |