HomeSort by relevance Sort by last modified time
    Searched defs:GlobalContext (Results 1 - 2 of 2) sorted by null

  /frameworks/compile/libbcc/lib/Core/
BCCContext.cpp 28 static BCCContext *GlobalContext = NULL;
31 if (GlobalContext == NULL) {
32 GlobalContext = new (std::nothrow) BCCContext();
33 if (GlobalContext == NULL) {
37 return GlobalContext;
41 delete GlobalContext;
42 GlobalContext = NULL;
49 if (this == GlobalContext) {
51 // Reset the GlobalContext.
52 GlobalContext = NULL
    [all...]
  /external/llvm/lib/VMCore/
LLVMContext.cpp 25 static ManagedStatic<LLVMContext> GlobalContext;
28 return *GlobalContext;

Completed in 434 milliseconds