OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:getextensions
(Results
1 - 25
of
185
) sorted by null
1
2
3
4
5
6
7
8
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
X509CRLEntryHolder.java
29
Extension currentCaName = entry.
getExtensions
().getExtension(Extension.certificateIssuer);
92
Extensions extensions = entry.
getExtensions
();
107
public Extensions
getExtensions
()
109
return entry.
getExtensions
();
120
return CertUtils.getExtensionOIDs(entry.
getExtensions
());
131
return CertUtils.getCriticalExtensionOIDs(entry.
getExtensions
());
142
return CertUtils.getNonCriticalExtensionOIDs(entry.
getExtensions
());
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLDrawBuffers.cpp
38
context->graphicsContext3D()->
getExtensions
()->ensureEnabled("GL_EXT_draw_buffers");
58
Extensions3D* extensions = context->graphicsContext3D()->
getExtensions
();
85
m_context->graphicsContext3D()->
getExtensions
()->drawBuffersEXT(1, &value);
119
bool supportsDepth = (context->
getExtensions
()->supports("GL_CHROMIUM_depth_texture")
120
|| context->
getExtensions
()->supports("GL_OES_depth_texture")
121
|| context->
getExtensions
()->supports("GL_ARB_depth_texture"));
122
bool supportsDepthStencil = (context->
getExtensions
()->supports("GL_EXT_packed_depth_stencil")
123
|| context->
getExtensions
()->supports("GL_OES_packed_depth_stencil"));
OESVertexArrayObject.cpp
41
context->graphicsContext3D()->
getExtensions
()->ensureEnabled("GL_OES_vertex_array_object");
87
Extensions3D* extensions = m_context->graphicsContext3D()->
getExtensions
();
101
Extensions3D* extensions = m_context->graphicsContext3D()->
getExtensions
();
115
Extensions3D* extensions = context->graphicsContext3D()->
getExtensions
();
EXTFragDepth.cpp
38
context->graphicsContext3D()->
getExtensions
()->ensureEnabled("GL_EXT_frag_depth");
57
Extensions3D* extensions = context->graphicsContext3D()->
getExtensions
();
EXTTextureFilterAnisotropic.cpp
37
context->graphicsContext3D()->
getExtensions
()->ensureEnabled("GL_EXT_texture_filter_anisotropic");
56
Extensions3D* extensions = context->graphicsContext3D()->
getExtensions
();
OESElementIndexUint.cpp
37
context->graphicsContext3D()->
getExtensions
()->ensureEnabled("GL_OES_element_index_uint");
56
Extensions3D* extensions = context->graphicsContext3D()->
getExtensions
();
OESStandardDerivatives.cpp
37
context->graphicsContext3D()->
getExtensions
()->ensureEnabled("GL_OES_standard_derivatives");
56
Extensions3D* extensions = context->graphicsContext3D()->
getExtensions
();
OESTextureFloat.cpp
37
context->graphicsContext3D()->
getExtensions
()->ensureEnabled("GL_OES_texture_float");
56
Extensions3D* extensions = context->graphicsContext3D()->
getExtensions
();
OESTextureFloatLinear.cpp
38
context->graphicsContext3D()->
getExtensions
()->ensureEnabled("GL_OES_texture_float_linear");
57
Extensions3D* extensions = context->graphicsContext3D()->
getExtensions
();
OESTextureHalfFloat.cpp
37
context->graphicsContext3D()->
getExtensions
()->ensureEnabled("GL_OES_texture_half_float");
56
Extensions3D* extensions = context->graphicsContext3D()->
getExtensions
();
OESTextureHalfFloatLinear.cpp
38
context->graphicsContext3D()->
getExtensions
()->ensureEnabled("GL_OES_texture_half_float_linear");
57
Extensions3D* extensions = context->graphicsContext3D()->
getExtensions
();
ANGLEInstancedArrays.cpp
44
context->graphicsContext3D()->
getExtensions
()->ensureEnabled("GL_ANGLE_instanced_arrays");
63
Extensions3D* extensions = context->graphicsContext3D()->
getExtensions
();
WebGLDebugShaders.cpp
62
return m_context->graphicsContext3D()->
getExtensions
()->getTranslatedShaderSourceANGLE(shader->object());
67
Extensions3D* extensions = context->graphicsContext3D()->
getExtensions
();
/external/chromium_org/chrome/browser/ui/webui/sync_file_system_internals/
file_metadata_handler.cc
36
"
getExtensions
",
37
base::Bind(&FileMetadataHandler::
GetExtensions
,
65
void FileMetadataHandler::
GetExtensions
(const base::ListValue* args) {
/external/chromium_org/ui/gl/
gl_context_wgl.cc
26
std::string GLContextWGL::
GetExtensions
() {
34
return GLContext::
GetExtensions
() + " " + extensions;
36
return GLContext::
GetExtensions
();
gl_context_glx.h
35
virtual std::string
GetExtensions
() OVERRIDE;
gl_context_stub.cc
38
std::string GLContextStub::
GetExtensions
() {
gl_context_stub.h
26
virtual std::string
GetExtensions
() OVERRIDE;
gl_context_wgl.h
32
virtual std::string
GetExtensions
();
gl_context_android.cc
38
virtual std::string
GetExtensions
() OVERRIDE;
56
std::string GLNonOwnedContext::
GetExtensions
() {
57
return GLContext::
GetExtensions
();
gl_context_egl.cc
183
std::string GLContextEGL::
GetExtensions
() {
187
return GLContext::
GetExtensions
();
189
return GLContext::
GetExtensions
() + " " + extensions;
/external/chromium_org/gpu/command_buffer/service/
gl_surface_mock.h
23
MOCK_METHOD0(
GetExtensions
, std::string());
gl_context_virtual.cc
90
std::string GLContextVirtual::
GetExtensions
() {
91
return shared_context_->
GetExtensions
();
/external/chromium_org/ppapi/thunk/
ppb_websocket_thunk.cc
113
struct PP_Var
GetExtensions
(PP_Resource web_socket) {
114
VLOG(4) << "PPB_WebSocket::
GetExtensions
()";
118
return enter.object()->
GetExtensions
();
156
&
GetExtensions
,
/external/chromium_org/ppapi/cpp/
websocket.cc
121
Var WebSocket::
GetExtensions
() {
126
get_interface<PPB_WebSocket_1_0>()->
GetExtensions
(pp_resource()));
Completed in 287 milliseconds
1
2
3
4
5
6
7
8