Home
last modified time | relevance | path

Searched refs:callList (Results 1 – 4 of 4) sorted by relevance

/external/guice/core/test/com/google/inject/
DMethodInterceptionTest.java286 final List<String> callList = Lists.newArrayList(); in testInterceptionOrder() local
290 new NamedInterceptor("a", callList), in testInterceptionOrder()
291 new NamedInterceptor("b", callList), in testInterceptionOrder()
292 new NamedInterceptor("c", callList)); in testInterceptionOrder()
297 assertEquals(0, callList.size()); in testInterceptionOrder()
299 assertEquals(Arrays.asList("a", "b", "c"), callList); in testInterceptionOrder()
306 NamedInterceptor(String name, List<String> callList) { in NamedInterceptor() argument
308 this.called = callList; in NamedInterceptor()
/external/swiftshader/src/OpenGL/libGL/
DContext.h709 void callList(GLuint list);
DContext.cpp3312 void Context::callList(GLuint list) in callList() function in gl::Context
DlibGL.cpp5582 context->callList(list); in glCallList()
5603 case GL_UNSIGNED_INT: context->callList(((unsigned int*)lists)[i]); break; in glCallLists()