/external/chromium_org/third_party/mesa/src/src/egl/main/ |
H A D | eglfallbacks.c | 55 memset(&drv->API, 0, sizeof(drv->API)); 58 drv->API.Initialize = NULL; 59 drv->API.Terminate = NULL; 61 drv->API.GetConfigs = _eglGetConfigs; 62 drv->API.ChooseConfig = _eglChooseConfig; 63 drv->API.GetConfigAttrib = _eglGetConfigAttrib; 65 drv->API.CreateContext = (CreateContext_t) _eglReturnFalse; 66 drv->API.DestroyContext = (DestroyContext_t) _eglReturnFalse; 67 drv->API [all...] |
/external/mesa3d/src/egl/main/ |
H A D | eglfallbacks.c | 55 memset(&drv->API, 0, sizeof(drv->API)); 58 drv->API.Initialize = NULL; 59 drv->API.Terminate = NULL; 61 drv->API.GetConfigs = _eglGetConfigs; 62 drv->API.ChooseConfig = _eglChooseConfig; 63 drv->API.GetConfigAttrib = _eglGetConfigAttrib; 65 drv->API.CreateContext = (CreateContext_t) _eglReturnFalse; 66 drv->API.DestroyContext = (DestroyContext_t) _eglReturnFalse; 67 drv->API [all...] |
/external/chromium_org/chrome/common/extensions/docs/server2/ |
H A D | extensions_paths.py | 12 API = join(EXTENSIONS, 'api') variable 15 API_FEATURES = join(API, '_api_features.json') 16 MANIFEST_FEATURES = join(API, '_manifest_features.json') 17 PERMISSION_FEATURES = join(API, '_permission_features.json')
|
H A D | api_models_test.py | 11 from extensions_paths import API, EXTENSIONS namespace 24 API, 'devtools', 'inspected_window.json'), 39 'alarms.idl': ReadFile(API, 'alarms.idl'), 41 API, 'declarative_web_request.json'), 43 API, 'experimental_accessibility.json'), 44 'page_action.json': ReadFile(API, 'page_action.json'), 71 # sub-feature of 'app.runtime' not a separate API. 72 # 'devtools.inspectedWindow' is an API because there is no 'devtools'. 86 get_model_name('%s/devtools/inspected_window.json' % API)) 89 self.assertEqual('alarms', get_model_name('%s/alarms.idl' % API)) [all...] |
H A D | api_models.py | 9 from extensions_paths import API namespace 34 # API names appear alongside some of their methods/events/etc in the 48 if not api_name.startswith(API + '/'): 49 api_name = posixpath.join(API, api_name) 52 assert not api_name.startswith(API) 54 # API names are given as declarativeContent and app.window but file names 57 # Devtools APIs are in API/devtools/ not API/, and have their 65 futures = [self._model_cache.GetFromFile('%s/%s.%s' % (API, file_name, ext))
|
H A D | host_file_system_provider_test.py | 9 from extensions_paths import API namespace 18 self._idle_path = '%s/idle.json' % API
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
H A D | api_exec.c | 136 if (ctx->API != API_OPENGL_CORE && ctx->API != API_OPENGLES2) { 148 if (ctx->API == API_OPENGL || ctx->API == API_OPENGL_CORE) 157 if (ctx->API != API_OPENGL_CORE && ctx->API != API_OPENGLES2) { 163 if (ctx->API == API_OPENGL) { 167 if (ctx->API != API_OPENGL_CORE && ctx->API != API_OPENGLES2) { 171 if (ctx->API ! [all...] |
H A D | enable.c | 276 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) 284 if (ctx->API != API_OPENGL) 333 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) 369 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) 384 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) 399 if (ctx->API ! [all...] |
H A D | getstring.c | 42 switch (ctx->API) { 83 _mesa_problem(ctx, "Unexpected API value in shading_language_version()"); 129 if (ctx->API == API_OPENGL_CORE) { 136 if (ctx->API == API_OPENGLES) 143 if (ctx->API == API_OPENGL && 215 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) 220 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) 225 if (ctx->API ! [all...] |
H A D | hint.c | 54 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) 62 if (!_mesa_is_desktop_gl(ctx) && ctx->API != API_OPENGLES) 70 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) 78 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) 96 if (ctx->API != API_OPENGL) 116 if (ctx->API == API_OPENGL_CORE) 126 if (ctx->API [all...] |
H A D | vtxfmt.c | 45 * API dispatch table. 51 if (ctx->API != API_OPENGL_CORE && ctx->API != API_OPENGLES2) { 60 if (ctx->API == API_OPENGL) { 64 if (ctx->API != API_OPENGL_CORE && ctx->API != API_OPENGLES2) { 98 if (ctx->API == API_OPENGL) { 110 if (ctx->API != API_OPENGLES2 || _mesa_is_gles3(ctx)) { 116 if (ctx->API != API_OPENGLES2) { 126 if (ctx->API ! [all...] |
H A D | context.h | 237 * Macro to assert that the API call was made outside the 252 * Macro to assert that the API call was made outside the 266 * Macro to assert that the API call was made outside the 278 * Macro to assert that the API call was made outside the 299 return ctx->API == API_OPENGL || ctx->API == API_OPENGL_CORE; 309 return ctx->API == API_OPENGLES || ctx->API == API_OPENGLES2; 319 return ctx->API == API_OPENGLES2 && ctx->Version >= 30;
|
/external/mesa3d/src/mesa/main/ |
H A D | api_exec.c | 136 if (ctx->API != API_OPENGL_CORE && ctx->API != API_OPENGLES2) { 148 if (ctx->API == API_OPENGL || ctx->API == API_OPENGL_CORE) 157 if (ctx->API != API_OPENGL_CORE && ctx->API != API_OPENGLES2) { 163 if (ctx->API == API_OPENGL) { 167 if (ctx->API != API_OPENGL_CORE && ctx->API != API_OPENGLES2) { 171 if (ctx->API ! [all...] |
H A D | enable.c | 276 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) 284 if (ctx->API != API_OPENGL) 333 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) 369 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) 384 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) 399 if (ctx->API ! [all...] |
H A D | getstring.c | 42 switch (ctx->API) { 83 _mesa_problem(ctx, "Unexpected API value in shading_language_version()"); 129 if (ctx->API == API_OPENGL_CORE) { 136 if (ctx->API == API_OPENGLES) 143 if (ctx->API == API_OPENGL && 215 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) 220 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) 225 if (ctx->API ! [all...] |
H A D | hint.c | 54 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) 62 if (!_mesa_is_desktop_gl(ctx) && ctx->API != API_OPENGLES) 70 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) 78 if (ctx->API != API_OPENGL && ctx->API != API_OPENGLES) 96 if (ctx->API != API_OPENGL) 116 if (ctx->API == API_OPENGL_CORE) 126 if (ctx->API [all...] |
H A D | vtxfmt.c | 45 * API dispatch table. 51 if (ctx->API != API_OPENGL_CORE && ctx->API != API_OPENGLES2) { 60 if (ctx->API == API_OPENGL) { 64 if (ctx->API != API_OPENGL_CORE && ctx->API != API_OPENGLES2) { 98 if (ctx->API == API_OPENGL) { 110 if (ctx->API != API_OPENGLES2 || _mesa_is_gles3(ctx)) { 116 if (ctx->API != API_OPENGLES2) { 126 if (ctx->API ! [all...] |
H A D | context.h | 237 * Macro to assert that the API call was made outside the 252 * Macro to assert that the API call was made outside the 266 * Macro to assert that the API call was made outside the 278 * Macro to assert that the API call was made outside the 299 return ctx->API == API_OPENGL || ctx->API == API_OPENGL_CORE; 309 return ctx->API == API_OPENGLES || ctx->API == API_OPENGLES2; 319 return ctx->API == API_OPENGLES2 && ctx->Version >= 30;
|
/external/llvm/lib/Target/NVPTX/ |
H A D | NVPTXMCExpr.cpp | 41 APInt API = APF.bitcastToAPInt(); local 42 std::string HexStr(utohexstr(API.getZExtValue())); 45 OS << utohexstr(API.getZExtValue());
|
/external/doclava/res/assets/templates/components/ |
H A D | api_filter.cs | 1 <?cs # The default API filter selector that goes in the header ?><?cs 5 <label for="apiLevelCheckbox" class="disabled">Filter by API Level: </label>
|
/external/chromium_org/third_party/angle/src/libEGL/ |
H A D | main.h | 21 EGLenum API; member in struct:egl::Current 30 void setCurrentAPI(EGLenum API);
|
H A D | main.cpp | 53 current->API = EGL_OPENGL_ES_API; 105 void setCurrentAPI(EGLenum API) argument 109 current->API = API; 116 return current->API;
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3d11/ |
H A D | d3d11.cpp | 39 #define API 11 macro 41 #if API >= 11 74 #if API >= 11 91 #if API >= 11 133 #if API >= 11 151 #if API >= 11 170 #if API < 11 171 // we use a D3D11-like API internally 223 #if API >= 11
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/ |
H A D | d3d11.cpp | 39 #define API 11 macro 41 #if API >= 11 74 #if API >= 11 91 #if API >= 11 133 #if API >= 11 151 #if API >= 11 170 #if API < 11 171 // we use a D3D11-like API internally 223 #if API >= 11
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/common/ |
H A D | egl_g3d_api.c | 78 _eglLog(_EGL_WARNING, "unknown client API 0x%04x", ctx->ClientAPI); 896 drv->API.ChooseConfig = egl_g3d_choose_config; 898 drv->API.CreateContext = egl_g3d_create_context; 899 drv->API.DestroyContext = egl_g3d_destroy_context; 900 drv->API.CreateWindowSurface = egl_g3d_create_window_surface; 901 drv->API.CreatePixmapSurface = egl_g3d_create_pixmap_surface; 902 drv->API.CreatePbufferSurface = egl_g3d_create_pbuffer_surface; 903 drv->API.CreatePbufferFromClientBuffer = egl_g3d_create_pbuffer_from_client_buffer; 904 drv->API.DestroySurface = egl_g3d_destroy_surface; 905 drv->API [all...] |