/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/compile/linkloader/ |
SConstruct | 20 configs = { 47 if not mode in configs: 55 build_config = configs[mode]
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
GalleryEGLConfigChooser.java | 54 throw new RuntimeException("No configs match configSpec"); 57 EGLConfig[] configs = new EGLConfig[numConfig[0]]; local 59 mConfigSpec, configs, configs.length, numConfig)) { 63 return chooseConfig(egl, display, configs); 67 EGL10 egl, EGLDisplay display, EGLConfig configs[]) { 76 for (int i = 0, n = configs.length; i < n; ++i) { 78 display, configs[i], EGL10.EGL_RED_SIZE, value)) { 79 // Filter out ARGB 8888 configs. 83 display, configs[i], EGL10.EGL_STENCIL_SIZE, value)) [all...] |
/frameworks/base/libs/ui/ |
EGLUtils.cpp | 69 // Get all the "potential match" configs... 73 EGLConfig* const configs = (EGLConfig*)malloc(sizeof(EGLConfig)*numConfigs); local 74 if (eglChooseConfig(dpy, attrs, configs, numConfigs, &n) == EGL_FALSE) { 75 free(configs); 83 eglGetConfigAttrib(dpy, configs[i], EGL_NATIVE_VISUAL_ID, &nativeVisualId); 85 config = configs[i]; 90 free(configs);
|
/frameworks/base/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/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);
|
/development/tools/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...] |
/frameworks/base/tools/localize/ |
localize.h | 31 const string& configs); 33 const vector<string>& configs); 36 int select_files(vector<vector<string> > *allResFiles, const vector<string>& configs,
|
localize.cpp | 207 const vector<string>& configs) 210 for (size_t i=0; i<configs.size(); i++) { 211 string config = configs[i]; 223 vector<string> configs; local 224 configs.push_back(config); 225 err = select_files(&allResFiles, configs, settings, rootDir); 233 select_files(vector<vector<string> > *allResFiles, const vector<string>& configs, 240 for (size_t i=0; i<configs.size(); i++) { 241 const string& config = configs[i]; 259 const string& targetLocale, const vector<string>& configs) 628 vector<string> configs; local [all...] |
/development/tools/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...] |
/packages/apps/Camera/src/com/android/camera/panorama/ |
MosaicRendererSurfaceView.java | 146 throw new IllegalArgumentException("No configs match configSpec"); 149 /* Allocate then read the array of minimally matching EGL configs 151 EGLConfig[] configs = new EGLConfig[numConfigs]; local 152 egl.eglChooseConfig(display, CONFIG_ATTRIBUTES, configs, numConfigs, numConfig); 155 printConfigs(egl, display, configs); 159 return chooseConfig(egl, display, configs); 163 EGLConfig[] configs) { 164 for (EGLConfig config : configs) { 200 EGLConfig[] configs) { 201 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/base/opengl/libs/EGL/ |
egl_display.cpp | 41 magic('_dpy'), numTotalConfigs(0), configs(0), refs(0) { 192 configs = new egl_config_t[numTotalConfigs]; 197 configs[k].impl = i; 198 configs[k].config = disp[i].config[j]; 199 configs[k].configId = k + 1; // CONFIG_ID start at 1 202 EGL_CONFIG_ID, &configs[k].implConfigId); 209 qsort(configs, numTotalConfigs, sizeof(egl_config_t), cmp_configs); 269 delete[] configs;
|
eglApi.cpp | 195 EGLConfig *configs, 204 if (!configs) { 211 *configs++ = EGLConfig(i); 221 EGLConfig *configs, EGLint config_size, 267 if (dp->configs[i].configId == configId) { 269 configId = dp->configs[i].implConfigId; 275 egl_connection_t* const cnx = &gEGLImpl[dp->configs[intptr_t(ourConfig)].impl]; 281 // dp->configs[i][index], however, we don't know if it would be 289 dp->disp[ dp->configs[intptr_t(ourConfig)].impl ].dpy, 290 attrib_list, configs, config_size, &n) [all...] |
/frameworks/base/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/base/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/base/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...] |