HomeSort by relevance Sort by last modified time
    Searched refs:ManagedStatic (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /frameworks/compile/mclinker/lib/LD/
SectionData.cpp 14 #include <llvm/Support/ManagedStatic.h>
20 static llvm::ManagedStatic<SectDataFactory> g_SectDataFactory;
LDSymbol.cpp 16 #include <llvm/Support/ManagedStatic.h>
24 static llvm::ManagedStatic<LDSymbol> g_NullSymbol;
25 static llvm::ManagedStatic<NullFragment> g_NullSymbolFragment;
26 static llvm::ManagedStatic<LDSymbolFactory> g_LDSymbolFactory;
RelocData.cpp 13 #include <llvm/Support/ManagedStatic.h>
19 static llvm::ManagedStatic<RelocDataFactory> g_RelocDataFactory;
DebugString.cpp 22 #include <llvm/Support/ManagedStatic.h>
28 static llvm::ManagedStatic<DebugString> g_DebugString;
ELFSegment.cpp 15 #include <llvm/Support/ManagedStatic.h>
22 static llvm::ManagedStatic<ELFSegmentFactory> g_ELFSegmentFactory;
LDSection.cpp 13 #include <llvm/Support/ManagedStatic.h>
19 static llvm::ManagedStatic<SectionFactory> g_SectFactory;
  /frameworks/compile/mclinker/lib/Support/
MsgHandling.cpp 17 #include <llvm/Support/ManagedStatic.h>
28 static llvm::ManagedStatic<DiagnosticEngine> g_pEngine;
  /external/llvm/lib/Support/
PluginLoader.cpp 17 #include "llvm/Support/ManagedStatic.h"
23 static ManagedStatic<std::vector<std::string> > Plugins;
24 static ManagedStatic<sys::SmartMutex<true> > PluginsLock;
Options.cpp 16 #include "llvm/Support/ManagedStatic.h"
31 static ManagedStatic<OptionRegistry> OR;
DynamicLibrary.cpp 21 #include "llvm/Support/ManagedStatic.h"
27 static llvm::ManagedStatic<llvm::StringMap<void *> > ExplicitSymbols;
28 static llvm::ManagedStatic<llvm::sys::SmartMutex<true> > SymbolsMutex;
  /external/swiftshader/third_party/LLVM/lib/Support/
PluginLoader.cpp 15 #include "llvm/Support/ManagedStatic.h"
23 static ManagedStatic<std::vector<std::string> > Plugins;
24 static ManagedStatic<sys::SmartMutex<true> > PluginsLock;
Statistic.cpp 27 #include "llvm/Support/ManagedStatic.h"
46 /// StatisticInfo - This class is used in a ManagedStatic so that it is created
62 static ManagedStatic<StatisticInfo> StatInfo;
63 static ManagedStatic<sys::SmartMutex<true> > StatLock;
  /frameworks/compile/mclinker/lib/Script/
FileToken.cpp 13 #include <llvm/Support/ManagedStatic.h>
18 static llvm::ManagedStatic<FileTokenFactory> g_FileTokenFactory;
NameSpec.cpp 13 #include <llvm/Support/ManagedStatic.h>
18 static llvm::ManagedStatic<NameSpecFactory> g_NameSpecFactory;
StrToken.cpp 13 #include <llvm/Support/ManagedStatic.h>
18 static llvm::ManagedStatic<StrTokenFactory> g_StrTokenFactory;
StringList.cpp 15 #include <llvm/Support/ManagedStatic.h>
20 static llvm::ManagedStatic<StringListFactory> g_StringListFactory;
WildcardPattern.cpp 14 #include <llvm/Support/ManagedStatic.h>
21 static llvm::ManagedStatic<WildcardPatternFactory> g_WildcardPatternFactory;
RpnExpr.cpp 17 #include <llvm/Support/ManagedStatic.h>
23 static llvm::ManagedStatic<ExprFactory> g_ExprFactory;
Operand.cpp 17 #include <llvm/Support/ManagedStatic.h>
34 static llvm::ManagedStatic<SymOperandFactory> g_SymOperandFactory;
72 static llvm::ManagedStatic<IntOperandFactory> g_IntOperandFactory;
105 static llvm::ManagedStatic<SectOperandFactory> g_SectOperandFactory;
138 static llvm::ManagedStatic<SectDescOperandFactory> g_SectDescOperandFactory;
173 static llvm::ManagedStatic<FragOperandFactory> g_FragOperandFactory;
  /external/llvm/lib/ExecutionEngine/Orc/
OrcError.cpp 16 #include "llvm/Support/ManagedStatic.h"
51 static ManagedStatic<OrcErrorCategory> OrcErrCat;
  /external/swiftshader/third_party/LLVM/lib/VMCore/
LeakDetector.cpp 18 #include "llvm/Support/ManagedStatic.h"
24 static ManagedStatic<sys::SmartMutex<true> > ObjectsLock;
25 static ManagedStatic<LeakDetectorImpl<void> > Objects;
  /external/llvm/unittests/Support/
ManagedStatic.cpp 1 //===- llvm/unittest/Support/ManagedStatic.cpp - ManagedStatic tests ------===//
9 #include "llvm/Support/ManagedStatic.h"
25 llvm::ManagedStatic<int> ms;
  /frameworks/compile/mclinker/lib/Fragment/
Relocation.cpp 19 #include <llvm/Support/ManagedStatic.h>
23 static llvm::ManagedStatic<RelocationFactory> g_RelocationFactory;
  /external/clang/tools/diagtool/
DiagTool.h 18 #include "llvm/Support/ManagedStatic.h"
49 extern llvm::ManagedStatic<DiagTools> diagTools;
  /external/llvm/include/llvm/Support/
ManagedStatic.h 1 //===-- llvm/Support/ManagedStatic.h - Static Global wrapper ----*- C++ -*-===//
10 // This file defines the ManagedStatic class and the llvm_shutdown() function.
23 /// object_creator - Helper method for ManagedStatic.
29 /// object_deleter - Helper method for ManagedStatic.
39 /// ManagedStaticBase - Common base class for ManagedStatic instances.
56 /// ManagedStatic - This transparently changes the behavior of global statics to
62 class ManagedStatic : public ManagedStaticBase {
86 /// llvm_shutdown - Deallocate and destroy all ManagedStatic variables.

Completed in 1337 milliseconds

1 2 3 4