HomeSort by relevance Sort by last modified time
    Searched refs:configs (Results 1 - 25 of 174) sorted by null

1 2 3 4 5 6 7

  /external/markdown/markdown/extensions/
extra.py 48 def makeExtension(configs={}):
49 return ExtraExtension(configs=dict(configs))
html_tidy.py 10 Note than any Tidy [options][] can be passed in as extension configs. So,
36 def __init__(self, configs):
41 # Merge in user defined configs overriding any present if nessecary.
42 for c in configs:
61 def makeExtension(configs=None):
62 return TidyExtension(configs=configs)
meta.py 85 def makeExtension(configs={}):
86 return MetaExtension(configs=configs)
codehilite.py 203 def __init__(self, configs):
204 # define default configs
212 for key, value in configs:
222 def makeExtension(configs={}):
223 return CodeHiliteExtension(configs=configs)
toc.py 105 def __init__(self, configs):
119 for key, value in configs:
135 def makeExtension(configs={}):
136 return TocExtension(configs=configs)
wikilinks.py 91 def __init__(self, configs):
101 for key, value in configs :
148 def makeExtension(configs=None) :
149 return WikiLinkExtension(configs=configs)
  /cts/tests/tests/drm/src/android/drm/cts/
ConfigFactory.java 21 import android.drm.cts.configs.PassthruConfig;
22 import android.drm.cts.configs.FwdLockConfig;
  /frameworks/native/opengl/tests/include/
EGLUtils.h 90 // Get all the "potential match" configs...
94 EGLConfig* const configs = (EGLConfig*)malloc(sizeof(EGLConfig)*numConfigs); local
95 if (eglChooseConfig(dpy, attrs, configs, numConfigs, &n) == EGL_FALSE) {
96 free(configs);
104 eglGetConfigAttrib(dpy, configs[i], EGL_NATIVE_VISUAL_ID, &nativeVisualId);
106 config = configs[i];
111 free(configs);
  /frameworks/native/opengl/tools/glgen/specs/egl/
checks.spec 2 eglGetConfigs check configs config_size
3 eglChooseConfig check configs config_size check num_config 1 sentinel attrib_list EGL_NONE
  /frameworks/native/opengl/tests/configdump/
configdump.cpp 68 EGLConfig* configs; local
74 configs = new EGLConfig[n];
75 eglGetConfigs(dpy, configs, n, &n);
81 eglGetConfigAttrib(dpy, configs[i], attributes[attr].attribute, &value);
86 delete [] configs;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/tests/
build.properties 21 configs=*,*,*
  /external/webkit/Source/WebCore/platform/graphics/gtk/
GraphicsContext3DInternal.cpp 132 GLXFBConfig* configs = glXChooseFBConfig(sharedDisplay(), 0, fbConfigAttributes, &returnedElements); local
133 if (!configs) {
135 configs = glXChooseFBConfig(sharedDisplay(), 0, fbConfigAttributes, &returnedElements);
138 XFree(configs);
144 GLXPbuffer pbuffer = glXCreatePbuffer(sharedDisplay(), configs[0], pbufferAttributes);
146 XFree(configs);
150 GLXContext context = glXCreateNewContext(sharedDisplay(), configs[0], GLX_RGBA_TYPE, 0, GL_TRUE);
151 XFree(configs);
  /sdk/emulator/opengl/host/libs/libOpenglRender/
FBConfig.cpp 79 // Query the set of configs in the EGL backend
83 fprintf(stderr, "Could not get number of available configs\n");
86 EGLConfig *configs = new EGLConfig[nConfigs]; local
87 s_egl.eglGetConfigs(dpy, configs, nConfigs, &nConfigs);
91 // configs we do not want to support.
98 // filter out configs which does not support pbuffers.
99 // we only support pbuffer configs since we use a pbuffer
103 s_egl.eglGetConfigAttrib(dpy, configs[i],
108 // Filter out not RGB configs
111 s_egl.eglGetConfigAttrib(dpy, configs[i], EGL_RED_SIZE, &redSize)
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
InputSurface.java 85 EGLConfig[] configs = new EGLConfig[1]; local
87 if (!EGL14.eglChooseConfig(mEGLDisplay, attribList, 0, configs, 0, configs.length,
97 mEGLContext = EGL14.eglCreateContext(mEGLDisplay, configs[0], EGL14.EGL_NO_CONTEXT,
108 mEGLSurface = EGL14.eglCreateWindowSurface(mEGLDisplay, configs[0], mSurface,
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglDisplay.h 44 int getConfigs(EGLConfig* configs,int config_size);
45 int chooseConfigs(const EglConfig& dummy,EGLConfig* configs,int config_size);
71 int doChooseConfigs(const EglConfig& dummy,EGLConfig* configs,int config_size);
  /cts/tests/tests/graphics/src/android/opengl/cts/
EglConfigTest.java 79 // Avoid configs like RGBA0008 which crash even though they have the window bit set.
91 EGLConfig[] configs = new EGLConfig[numConfigs[0]]; local
92 if (egl.eglChooseConfig(display, attributeList, configs, configs.length,
97 if (egl.eglGetConfigAttrib(display, configs[i], EGL10.EGL_CONFIG_ID,
  /development/ndk/platforms/android-5/samples/hello-gl2/src/com/android/gl2jni/
GL2JNIView.java 168 throw new IllegalArgumentException("No configs match configSpec");
171 /* Allocate then read the array of minimally matching EGL configs
173 EGLConfig[] configs = new EGLConfig[numConfigs]; local
174 egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config);
177 printConfigs(egl, display, configs);
181 return chooseConfig(egl, display, configs);
185 EGLConfig[] configs) {
186 for(EGLConfig config : configs) {
222 EGLConfig[] configs) {
223 int numConfigs = configs.length
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
FixLaunchConfig.java 87 ILaunchConfiguration[] configs = findConfigs(mProject.getName()); local
90 for (ILaunchConfiguration config : configs) {
136 // create a temp list to hold all the valid configs
140 ILaunchConfiguration[] configs = manager.getLaunchConfigurations(configType); local
142 for (ILaunchConfiguration config : configs) {
  /frameworks/native/opengl/tests/gl2_jni/src/com/android/gl2jni/
GL2JNIView.java 129 throw new IllegalArgumentException("No configs match configSpec");
131 EGLConfig[] configs = new EGLConfig[numConfigs]; local
132 egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config);
133 // printConfigs(egl, display, configs);
134 return chooseConfig(egl, display, configs);
138 EGLConfig[] configs) {
141 for(EGLConfig config : configs) {
178 EGLConfig[] configs) {
179 int numConfigs = configs.length;
183 printConfig(egl, display, configs[i])
    [all...]
  /frameworks/native/opengl/tests/gl_perfapp/src/com/android/glperf/
GLPerfView.java 129 throw new IllegalArgumentException("No configs match configSpec");
131 EGLConfig[] configs = new EGLConfig[numConfigs]; local
132 egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config);
133 // printConfigs(egl, display, configs);
134 return chooseConfig(egl, display, configs);
138 EGLConfig[] configs) {
141 for(EGLConfig config : configs) {
178 EGLConfig[] configs) {
179 int numConfigs = configs.length;
183 printConfig(egl, display, configs[i])
    [all...]
  /frameworks/native/opengl/tests/gldual/src/com/android/gldual/
GLDualGL2View.java 132 throw new IllegalArgumentException("No configs match configSpec");
134 EGLConfig[] configs = new EGLConfig[numConfigs]; local
135 egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config);
136 // printConfigs(egl, display, configs);
137 return chooseConfig(egl, display, configs);
141 EGLConfig[] configs) {
144 for(EGLConfig config : configs) {
181 EGLConfig[] configs) {
182 int numConfigs = configs.length;
186 printConfig(egl, display, configs[i])
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
RuimSmsInterfaceManager.java 175 CdmaSmsBroadcastConfigInfo[] configs = local
177 return setCdmaBroadcastConfig(configs);
182 private boolean setCdmaBroadcastConfig(CdmaSmsBroadcastConfigInfo[] configs) {
184 log("Calling setCdmaBroadcastConfig with " + configs.length + " configurations");
190 mPhone.mCi.setCdmaBroadcastConfig(configs, response);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
SimSmsInterfaceManager.java 177 SmsBroadcastConfigInfo[] configs = local
179 return setCellBroadcastConfig(configs);
184 private boolean setCellBroadcastConfig(SmsBroadcastConfigInfo[] configs) {
186 log("Calling setGsmBroadcastConfig with " + configs.length + " configurations");
192 mPhone.mCi.setGsmBroadcastConfig(configs, response);
  /packages/apps/LegacyCamera/src/com/android/camera/panorama/
MosaicRendererSurfaceView.java 159 throw new IllegalArgumentException("No configs match configSpec");
162 /* Allocate then read the array of minimally matching EGL configs
164 EGLConfig[] configs = new EGLConfig[numConfigs]; local
165 egl.eglChooseConfig(display, CONFIG_ATTRIBUTES, configs, numConfigs, numConfig);
168 printConfigs(egl, display, configs);
172 return chooseConfig(egl, display, configs);
176 EGLConfig[] configs) {
177 for (EGLConfig config : configs) {
213 EGLConfig[] configs) {
214 int numConfigs = configs.length
    [all...]
  /cts/tests/tests/effect/src/android/effect/cts/
GLEnv.java 52 EGLConfig[] configs = new EGLConfig[1]; local
54 egl.eglChooseConfig(mEGLDisplay, configSpec, configs, 1, num_config);
59 mEGLConfig = configs[0];

Completed in 772 milliseconds

1 2 3 4 5 6 7