OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:impls
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/ui/gl/
gl_implementation_mac.cc
24
void GetAllowedGLImplementations(std::vector<GLImplementation>*
impls
) {
25
impls
->push_back(kGLImplementationDesktopGL);
26
impls
->push_back(kGLImplementationAppleGL);
27
impls
->push_back(kGLImplementationOSMesaGL);
gl_implementation_ozone.cc
31
void GetAllowedGLImplementations(std::vector<GLImplementation>*
impls
) {
32
impls
->push_back(kGLImplementationEGLGLES2);
33
impls
->push_back(kGLImplementationOSMesaGL);
gl_implementation_android.cc
34
void GetAllowedGLImplementations(std::vector<GLImplementation>*
impls
) {
35
impls
->push_back(kGLImplementationEGLGLES2);
36
impls
->push_back(kGLImplementationOSMesaGL);
gl_implementation_x11.cc
45
void GetAllowedGLImplementations(std::vector<GLImplementation>*
impls
) {
46
impls
->push_back(kGLImplementationDesktopGL);
47
impls
->push_back(kGLImplementationEGLGLES2);
48
impls
->push_back(kGLImplementationOSMesaGL);
gl_implementation.h
38
void GetAllowedGLImplementations(std::vector<GLImplementation>*
impls
);
gl_implementation_win.cc
105
void GetAllowedGLImplementations(std::vector<GLImplementation>*
impls
) {
106
impls
->push_back(kGLImplementationEGLGLES2);
107
impls
->push_back(kGLImplementationDesktopGL);
108
impls
->push_back(kGLImplementationOSMesaGL);
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
transport.cc
358
std::vector<TransportChannelImpl*>
impls
;
local
366
impls
.push_back(iter->second.get());
372
for (size_t i = 0; i <
impls
.size(); ++i)
373
DestroyTransportChannel(
impls
[i]);
Completed in 699 milliseconds