HomeSort by relevance Sort by last modified time
    Searched refs:ContextFactory (Results 1 - 13 of 13) sorted by null

  /frameworks/compile/mclinker/lib/MC/
ContextFactory.cpp 1 //===- ContextFactory.cpp -------------------------------------------------===//
10 #include <mcld/MC/ContextFactory.h>
16 ContextFactory::ContextFactory(size_t pNum)
21 ContextFactory::~ContextFactory()
25 LDContext* ContextFactory::produce(const sys::fs::Path& pPath)
MCLDInfo.cpp 13 #include <mcld/MC/ContextFactory.h>
30 m_pCntxtFactory = new ContextFactory(pInputNum);
Android.mk 5 ContextFactory.cpp \
  /frameworks/compile/mclinker/include/mcld/MC/
ContextFactory.h 1 //===- ContextFactory.h ---------------------------------------------------===//
21 /** \class ContextFactory
22 * \brief ContextFactory avoids the duplicated LDContext of the same file.
28 * ContextFactory is the guard to prevent redundant opening. MCLinker does not
29 * create LDContext directly. Instead, it creates LDContext by ContextFactory.
30 * ContextFactory returns the identical reference of LDContext if it's openend.
35 class ContextFactory : public UniqueGCFactoryBase<sys::fs::Path, LDContext, 0>
38 explicit ContextFactory(size_t pNum);
39 ~ContextFactory();
MCLDInfo.h 23 #include <mcld/MC/ContextFactory.h>
40 * contextFactory() - the list of all contexts.
87 ContextFactory& contextFactory()
90 const ContextFactory& contextFactory() const
128 ContextFactory *m_pCntxtFactory;
  /frameworks/compile/mclinker/unittests/
UniqueGCFactoryBaseTest.cpp 9 #include "mcld/MC/ContextFactory.h"
41 ContextFactory *contextFactory = new ContextFactory(10);
42 contextFactory->produce("/");
43 contextFactory->produce("ab/c");
44 ASSERT_EQ( 2, contextFactory->size());
45 delete contextFactory;
49 ContextFactory *contextFactory = new ContextFactory(10);
    [all...]
  /development/ndk/platforms/android-5/samples/hello-gl2/src/com/android/gl2jni/
GL2JNIView.java 55 * See ContextFactory class definition below.
93 * See ContextFactory class definition below
95 setEGLContextFactory(new ContextFactory());
110 private static class ContextFactory implements GLSurfaceView.EGLContextFactory {
  /frameworks/native/opengl/tests/gl2_jni/src/com/android/gl2jni/
GL2JNIView.java 71 setEGLContextFactory(new ContextFactory());
78 private static class ContextFactory implements GLSurfaceView.EGLContextFactory {
  /frameworks/native/opengl/tests/gl_perfapp/src/com/android/glperf/
GLPerfView.java 71 setEGLContextFactory(new ContextFactory());
78 private static class ContextFactory implements GLSurfaceView.EGLContextFactory {
  /frameworks/native/opengl/tests/gldual/src/com/android/gldual/
GLDualGL2View.java 74 setEGLContextFactory(new ContextFactory());
81 private static class ContextFactory implements GLSurfaceView.EGLContextFactory {
  /frameworks/compile/mclinker/include/mcld/Support/
TargetRegistry.h 30 class ContextFactory;
  /packages/apps/LegacyCamera/src/com/android/camera/panorama/
MosaicRendererSurfaceView.java 80 * See ContextFactory class definition below
82 setEGLContextFactory(new ContextFactory());
100 private static class ContextFactory implements GLSurfaceView.EGLContextFactory {
  /external/clang/lib/Analysis/
ThreadSafety.cpp 421 Context::Factory ContextFactory;
460 Context getEmptyContext() { return ContextFactory.getEmptyMap(); }
534 Context NewCtx = ContextFactory.add(Ctx, D, newID);
542 Context NewCtx = ContextFactory.add(Ctx, D, newID);
552 Context NewCtx = ContextFactory.remove(Ctx, D);
553 NewCtx = ContextFactory.add(NewCtx, D, newID);
565 NewCtx = ContextFactory.remove(NewCtx, D);
566 NewCtx = ContextFactory.add(NewCtx, D, 0);
575 NewCtx = ContextFactory.remove(NewCtx, D);
    [all...]

Completed in 232 milliseconds