Searched refs:Functions (Results 1 - 25 of 354) sorted by relevance

1234567891011>>

/external/deqp/framework/opengl/wrapper/
H A DglwFunctions.cpp21 * \brief OpenGL API Functions.
30 Functions::Functions (void) function in class:glw::Functions
H A DglwFunctions.hpp23 * \brief OpenGL API Functions.
37 class Functions class in namespace:glw
44 Functions (void);
H A DglwWrapper.hpp31 class Functions;
34 void setCurrentThreadFunctions (const glw::Functions* gl);
H A DglwInitFunctions.hpp33 void initES20 (Functions* gl, const FunctionLoader* loader); //!< Load all OpenGL ES 2.0 functions.
34 void initES30 (Functions* gl, const FunctionLoader* loader); //!< Load all OpenGL ES 3.0 functions.
35 void initES31 (Functions* gl, const FunctionLoader* loader); //!< Load all OpenGL ES 3.1 functions.
37 void initGL30Core (Functions* gl, const FunctionLoader* loader); //!< Load all GL 3.0 core functions.
38 void initGL31Core (Functions* gl, const FunctionLoader* loader); //!< Load all GL 3.1 core functions.
39 void initGL32Core (Functions* gl, const FunctionLoader* loader); //!< Load all GL 3.2 core functions.
40 void initGL33Core (Functions* gl, const FunctionLoader* loader); //!< Load all GL 3.3 core functions.
41 void initGL40Core (Functions* gl, const FunctionLoader* loader); //!< Load all GL 4.0 core functions.
42 void initGL41Core (Functions* gl, const FunctionLoader* loader); //!< Load all GL 4.1 core functions.
43 void initGL42Core (Functions* g
[all...]
H A DglwInitES20Direct.hpp32 void initES20Direct (Functions* gl); //!< Load all OpenGL ES 2 functions using compile-time linkage.
H A DglwInitES30Direct.hpp32 void initES30Direct (Functions* gl); //!< Load all OpenGL ES 3 functions using compile-time linkage.
H A DglwWrapper.cpp43 DE_THREAD_LOCAL const glw::Functions* s_functions = DE_NULL;
45 void setCurrentThreadFunctions (const glw::Functions* gl)
50 inline const glw::Functions* getCurrentThreadFunctions (void)
70 inline void set (const glw::Functions* gl)
75 inline const glw::Functions* get (void) const
77 return (const glw::Functions*)deThreadLocal_get(m_ptr);
89 void setCurrentThreadFunctions (const glw::Functions* gl)
94 inline const glw::Functions* getCurrentThreadFunctions (void)
H A DglwInitFunctions.cpp35 void initES20 (Functions* gl, const FunctionLoader* loader)
40 void initES30 (Functions* gl, const FunctionLoader* loader)
45 void initES31 (Functions* gl, const FunctionLoader* loader)
50 void initGL30Core (Functions* gl, const FunctionLoader* loader)
55 void initGL31Core (Functions* gl, const FunctionLoader* loader)
60 void initGL32Core (Functions* gl, const FunctionLoader* loader)
65 void initGL33Core (Functions* gl, const FunctionLoader* loader)
70 void initGL40Core (Functions* gl, const FunctionLoader* loader)
75 void initGL41Core (Functions* gl, const FunctionLoader* loader)
80 void initGL42Core (Functions* g
[all...]
H A DglwImpl.inl7 const glw::Functions* gl = glw::getCurrentThreadFunctions();
15 const glw::Functions* gl = glw::getCurrentThreadFunctions();
23 const glw::Functions* gl = glw::getCurrentThreadFunctions();
31 const glw::Functions* gl = glw::getCurrentThreadFunctions();
39 const glw::Functions* gl = glw::getCurrentThreadFunctions();
47 const glw::Functions* gl = glw::getCurrentThreadFunctions();
55 const glw::Functions* gl = glw::getCurrentThreadFunctions();
63 const glw::Functions* gl = glw::getCurrentThreadFunctions();
71 const glw::Functions* gl = glw::getCurrentThreadFunctions();
79 const glw::Functions* g
[all...]
H A DglwInitES20Direct.cpp39 void initES20Direct (Functions* gl)
H A DglwInitES30Direct.cpp39 void initES30Direct (Functions* gl)
/external/deqp/framework/opengl/
H A DgluCallLogWrapper.hpp32 class Functions;
41 CallLogWrapper (const glw::Functions& gl, tcu::TestLog& log);
52 const glw::Functions& m_gl;
H A DgluObjectWrapper.cpp35 ObjectWrapper::ObjectWrapper (const glw::Functions& gl, const ObjectTraits& traits)
64 { "texture", &glw::Functions::genTextures, &glw::Functions::deleteTextures },
65 { "buffer", &glw::Functions::genBuffers, &glw::Functions::deleteBuffers },
66 { "renderbuffer", &glw::Functions::genRenderbuffers, &glw::Functions::deleteRenderbuffers },
67 { "framebuffer", &glw::Functions::genFramebuffers, &glw::Functions::deleteFramebuffers },
68 { "transform feedback", &glw::Functions
[all...]
H A DgluDummyRenderContext.hpp41 * currently depend on having access to the glw::Functions already in test
44 * simple workaround for that: a dummy render context with a glw::Functions
53 virtual const glw::Functions& getFunctions (void) const { return m_functions; }
59 glw::Functions m_functions;
H A DgluProgramInterfaceQuery.hpp33 class Functions;
89 int getProgramResourceInt (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, deUint32 queryParam);
90 deUint32 getProgramResourceUint (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, deUint32 queryParam);
92 void getProgramResourceName (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, std::string& dst);
93 std::string getProgramResourceName (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index);
95 void getProgramInterfaceBlockInfo (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, InterfaceBlockInfo& info);
96 InterfaceBlockInfo getProgramInterfaceBlockInfo (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index);
98 void getProgramInterfaceVariableInfo (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, InterfaceVariableInfo& info);
99 InterfaceVariableInfo getProgramInterfaceVariableInfo (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index);
103 inline int getProgramResourceInt (const glw::Functions
[all...]
H A DgluES3PlusWrapperContext.hpp58 virtual const glw::Functions& getFunctions (void) const { return m_functions; }
66 glw::Functions m_functions;
H A DgluObjectWrapper.hpp57 glw::glGenBuffersFunc glw::Functions::*genFunc;
58 glw::glDeleteBuffersFunc glw::Functions::*deleteFunc;
66 ObjectWrapper (const glw::Functions& gl, const ObjectTraits& traits);
73 const glw::Functions& m_gl;
89 explicit TypedObjectWrapper (const glw::Functions& gl) : ObjectWrapper(gl, objectTraits(Type)) {}
98 ObjectVector (const glw::Functions& gl, const ObjectTraits& traits, size_t numObjects = 0);
115 const glw::Functions& m_gl;
124 explicit TypedObjectVector (const glw::Functions& gl, size_t numObjects = 0) : ObjectVector(gl, objectTraits(Type), numObjects) {}
/external/guava/guava-tests/test/com/google/common/base/
H A DFunctionsTest.java33 * Tests for {@link Functions}.
42 Function<String, String> identity = Functions.identity();
48 Function<Long, Long> identity = Functions.identity();
54 checkCanReserializeSingleton(Functions.identity());
58 assertEquals("3", Functions.toStringFunction().apply(3));
59 assertEquals("hiya", Functions.toStringFunction().apply("hiya"));
61 Functions.toStringFunction().apply(
68 Functions.toStringFunction().apply(null);
77 checkCanReserializeSingleton(Functions.toStringFunction());
83 tester.testAllPublicStaticMethods(Functions
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DMapsSortedTransformValuesTest.java24 import com.google.common.base.Functions;
37 Functions.<String>identity());
46 return Maps.transformValues(underlying, Functions.toStringFunction());
51 assertTrue(Maps.transformValues(sortedMap, Functions.<String>identity())
H A DMultimapsTransformValuesAsMapTest.java20 import com.google.common.base.Functions;
41 Functions.<Integer> identity()).asMap();
48 .transformValues(delegate, Functions.<Integer> identity()).asMap();
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dstress_dtls.c55 f_t Functions[MAX_N_FUNCTIONS]; variable
63 if (!Functions[i]) break;
64 uintptr_t dtls = (uintptr_t)Functions[i]();
90 Functions[lib] = (f_t)dlsym(handle, buf);
91 if (!Functions[lib]) {
95 fprintf(stderr, "LIB[%03d] %s: %p\n", lib, buf, Functions[lib]);
/external/deqp/modules/glshared/
H A DglsSamplerObjectTest.hpp77 static void setTextureState (const glw::Functions& gl, GLenum target, SamplingState state);
78 static void setSamplerState (const glw::Functions& gl, SamplingState state, GLuint sampler);
80 static GLuint createTexture2D (const glw::Functions& gl);
81 static GLuint createTexture3D (const glw::Functions& gl);
82 static GLuint createTextureCube (const glw::Functions& gl);
83 static GLuint createTexture (const glw::Functions& gl, GLenum target);
136 static void setTextureState (const glw::Functions& gl, GLenum target, SamplingState state);
137 static void setSamplerState (const glw::Functions& gl, SamplingState state, GLuint sampler);
139 static GLuint createTexture2D (const glw::Functions& gl, int id);
140 static GLuint createTexture3D (const glw::Functions
[all...]
H A DglsStateChangePerfTestCases.hpp37 class Functions;
73 virtual void setupInitialState (const glw::Functions& gl) = 0;
74 virtual void renderTest (const glw::Functions& gl) = 0;
75 virtual void renderReference (const glw::Functions& gl) = 0;
77 void callDraw (const glw::Functions& gl);
117 virtual void execCalls (const glw::Functions& gl, int iterNdx, int callCount) = 0;
/external/deqp/framework/platform/null/
H A DtcuNullRenderContext.hpp60 virtual const glw::Functions& getFunctions (void) const { return m_functions; }
71 glw::Functions m_functions;
/external/smali/util/src/main/java/org/jf/util/
H A DCharSequenceUtils.java35 import com.google.common.base.Functions;
41 private static final Function<Object, String> TO_STRING = Functions.toStringFunction();

Completed in 2715 milliseconds

1234567891011>>