HomeSort by relevance Sort by last modified time
    Searched refs:configs (Results 176 - 200 of 461) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/skia/tests/
ImageDecodingTest.cpp 147 // Arbitrary list of Configs. The important thing about
150 const SkBitmap::Config configs[] = { local
158 this->setPrefConfigTable(configs);
159 REPORTER_ASSERT(reporter, configs[0] == this->getPrefConfig(kIndex_SrcDepth, false));
160 REPORTER_ASSERT(reporter, configs[1] == this->getPrefConfig(kIndex_SrcDepth, true));
161 REPORTER_ASSERT(reporter, configs[4] == this->getPrefConfig(k32Bit_SrcDepth, false));
162 REPORTER_ASSERT(reporter, configs[5] == this->getPrefConfig(k32Bit_SrcDepth, true));
  /external/markdown/markdown/
__init__.py 196 * extension-configs: Configuration setting for extensions.
312 configs = extension_configs)
316 def registerExtensions(self, extensions, configs):
324 * configs: A dictionary mapping module names to config options.
329 ext = load_extension(ext, configs.get(ext, []))
467 def __init__(self, configs = {}):
472 * configs: A dict of configuration setting used by an Extension.
474 self.config = configs
508 def load_extension(ext_name, configs = []):
517 configs = dict(configs
    [all...]
  /frameworks/native/opengl/tests/gl2_copyTexImage/
gl2_copyTexImage.cpp 343 EGLConfig* configs = (EGLConfig*) malloc(sizeof(EGLConfig) * numConfig); local
344 if (! configs) {
345 printf("Could not allocate configs.\n");
349 returnVal = eglGetConfigs(dpy, configs, numConfig, &numConfig);
352 free(configs);
358 printEGLConfiguration(dpy, configs[i]);
361 free(configs);
413 EGLConfig* const configs = new EGLConfig[numConfigs]; local
414 eglChooseConfig(dpy, s_configAttribs, configs, numConfigs, &n);
415 myConfig = configs[0]
    [all...]
  /external/ceres-solver/internal/ceres/
system_test.cc 283 vector<SolverConfig> configs; local
285 configs.push_back(SolverConfig(linear_solver, \
306 RunSolversAndCheckTheyMatch<PowellsFunction>(configs, kMaxAbsoluteDifference);
486 vector<SolverConfig> configs; local
489 configs.push_back(SolverConfig(linear_solver, \
533 RunSolversAndCheckTheyMatch<BundleAdjustmentProblem>(configs,
538 for (int i = 0; i < configs.size(); ++i) {
539 configs[i].num_threads = 2;
541 RunSolversAndCheckTheyMatch<BundleAdjustmentProblem>(configs,
  /external/skia/gm/
gmmain.cpp 1835 SkTDArray<size_t> configs; local
    [all...]
  /cts/tests/tests/opengl/src/android/opengl/cts/
WrapperTest.java 261 EGLConfig[] configs = new EGLConfig[1]; local
263 if (!EGL14.eglChooseConfig(mEGLDisplay, attribList, 0, configs, 0, configs.length,
273 mEGLContext = EGL14.eglCreateContext(mEGLDisplay, configs[0], EGL14.EGL_NO_CONTEXT,
286 mEGLSurface = EGL14.eglCreatePbufferSurface(mEGLDisplay, configs[0], surfaceAttribs, 0);
  /external/markdown/markdown/extensions/
footnotes.py 37 def __init__ (self, configs):
38 """ Setup configs. """
47 for key, value in configs:
304 def makeExtension(configs=[]):
306 return FootnoteExtension(configs=configs)
rss.py 112 def makeExtension(configs):
114 return RssExtension(configs)
  /cts/tests/tests/graphics/src/android/opengl/cts/
OpenGlEsVersionTest.java 112 EGLConfig[] configs = new EGLConfig[numConfigs[0]]; local
113 if (egl.eglGetConfigs(display, configs, numConfigs[0], numConfigs)) {
117 if (egl.eglGetConfigAttrib(display, configs[i],
136 Log.e(TAG, "Getting configs with EGL10#eglGetConfigs failed: "
141 Log.e(TAG, "Getting number of configs with EGL10#eglGetConfigs failed: "
  /frameworks/base/tools/aapt/
StringPool.cpp 63 if (configs.size() > 0) {
64 for (size_t j=0; j<configs.size(); j++) {
66 configStr.append(configs[j].toString());
89 const size_t LHN = configs.size();
90 const size_t RHN = o.configs.size();
93 comp = configs[i].compareLogical(o.configs[i]);
145 // Add this to the set of configs associated with the string.
148 for (addPos=0; addPos<ent.configs.size(); addPos++) {
149 int cmp = ent.configs.itemAt(addPos).compareLogical(*config)
    [all...]
StringPool.h 46 configTypeName(o.configTypeName), configs(o.configs) { }
53 Vector<ResTable_config> configs; member in struct:StringPool::entry
  /external/chromium_org/native_client_sdk/src/build_tools/
generate_make.py 119 def ProcessHTML(srcroot, dstroot, desc, toolchains, configs, first_toolchain):
132 'data-name="%s" data-tools="%s" data-configs="%s" data-path="%s"' % (
133 nmf, ' '.join(tools), ' '.join(configs), path),
177 def ProcessProject(pepperdir, srcroot, dstroot, desc, toolchains, configs=None,
179 if not configs:
180 configs = ['Debug', 'Release']
228 ProcessHTML(srcroot, dstroot, desc, toolchains, configs,
  /external/chromium_org/tools/gn/
command_desc.cc 106 // Configs (don't sort since the order determines how things are processed).
111 const std::vector<const Config*>& configs = target->configs(); local
112 for (size_t i = 0; i < configs.size(); i++) {
114 configs[i]->label().GetUserVisibleName(toolchain_label) + "\n");
193 // Then write the configs in order.
194 for (size_t i = 0; i < target->configs().size(); i++) {
195 const Config* config = target->configs()[i];
231 " configs\n"
232 " Shows configs applied to the given target, sorted in the order\n
    [all...]
  /external/jmonkeyengine/engine/src/android/com/jme3/system/android/
AndroidConfigChooser.java 213 //throw new IllegalArgumentException("No configs match configSpec");
218 EGLConfig[] configs = new EGLConfig[numConfigs]; local
219 if (!egl.eglChooseConfig(display, mConfigSpec, configs, numConfigs,
223 EGLConfig config = chooseConfig(egl, display, configs);
231 EGLConfig[] configs);
292 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display, EGLConfig[] configs) {
293 for (EGLConfig config : configs) {
  /frameworks/native/opengl/tests/gl2_basic/
gl2_basic.cpp 239 EGLConfig* configs = (EGLConfig*) malloc(sizeof(EGLConfig) * numConfig); local
240 if (! configs) {
241 printf("Could not allocate configs.\n");
245 returnVal = eglGetConfigs(dpy, configs, numConfig, &numConfig);
248 free(configs);
254 printEGLConfiguration(dpy, configs[i]);
257 free(configs);
  /frameworks/native/opengl/tests/gl_basic/
gl_basic.cpp 170 EGLConfig* configs = (EGLConfig*) malloc(sizeof(EGLConfig) * numConfig); local
171 if (! configs) {
172 printf("Could not allocate configs.\n");
176 returnVal = eglGetConfigs(dpy, configs, numConfig, &numConfig);
179 free(configs);
185 printEGLConfiguration(dpy, configs[i]);
188 free(configs);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/x11/
native_dri2.c 60 struct dri2_config *configs; member in struct:dri2_display
513 dri2dpy->configs[i].base.color_format);
517 nconf = &dri2dpy->configs[i].base;
578 /* only interested in native renderable configs */
582 /* fast/slow configs are probably not relevant */
648 const struct native_config **configs; local
652 if (!dri2dpy->configs) {
661 dri2dpy->configs = CALLOC(num_modes, sizeof(*dri2dpy->configs));
662 if (!dri2dpy->configs)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/templates/headless-build/
build.properties 16 # configs - the list of {os, ws, arch} configurations to build.
41 # configs=win32,win32,x86 & linux,motif,x86
43 configs = *, *, *
44 #configs=win32, win32, x86 & \
61 # By default PDE creates one archive (result) per entry listed in the configs property.
63 # artifacts for all the platforms listed in the configs property.
102 #jnlp.configs=${configs} #uncomment to filter the content of the generated jnlp files based on the configuration being built
  /external/mesa3d/src/gallium/state_trackers/egl/x11/
native_dri2.c 60 struct dri2_config *configs; member in struct:dri2_display
513 dri2dpy->configs[i].base.color_format);
517 nconf = &dri2dpy->configs[i].base;
578 /* only interested in native renderable configs */
582 /* fast/slow configs are probably not relevant */
648 const struct native_config **configs; local
652 if (!dri2dpy->configs) {
661 dri2dpy->configs = CALLOC(num_modes, sizeof(*dri2dpy->configs));
662 if (!dri2dpy->configs)
    [all...]
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
buildbin.sh 18 CONFIGSDIR=../configs/
  /packages/apps/Settings/src/com/android/settings/drawable/
DrawableWrapper.java 54 public void setChangingConfigurations(int configs) {
55 mDrawable.setChangingConfigurations(configs);
  /sdk/eclipse/buildConfig/
build.properties 22 # configs - the list of {os, ws, arch} configurations to build.
43 # configs=win32,win32,x86 & linux,motif,x86
45 configs = *, *, *
46 #configs=win32, win32, x86 & \
57 # By default PDE creates one archive (result) per entry listed in the configs property.
59 # artifacts for all the platforms listed in the configs property.
85 #jnlp.configs=${configs} #uncomment to filter the content of the generated jnlp files based on the configuration being built
  /sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/
DebuggerConnector.java 121 ILaunchConfiguration[] configs = manager.getLaunchConfigurations(type); local
124 for (ILaunchConfiguration config : configs) {
  /cts/tests/src/android/opengl/cts/
EglConfigGLSurfaceView.java 65 EGLConfig[] configs = new EGLConfig[1]; local
66 if (egl.eglChooseConfig(display, attributeList, configs, 1, new int[] {1})) {
68 printConfig(egl, display, configs[0]);
69 return configs[0];
  /external/chromium_org/gpu/config/
gpu_test_config.h 63 // Check if two configs overlap, i.e., if there exists a config that matches
64 // both configs.
116 // Check if this bot's config matches |config_data| or any of the |configs|.
118 static bool CurrentConfigMatches(const std::vector<std::string>& configs);

Completed in 3718 milliseconds

1 2 3 4 5 6 78 91011>>