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

1 2

  /external/llvm/lib/Support/
StringPool.cpp 1 //===-- StringPool.cpp - Interned string pool -----------------------------===//
10 // This file implements the StringPool class.
14 #include "llvm/Support/StringPool.h"
19 StringPool::StringPool() {}
21 StringPool::~StringPool() {
25 PooledStringPtr StringPool::intern(StringRef Key) {
  /external/swiftshader/third_party/LLVM/lib/Support/
StringPool.cpp 1 //===-- StringPool.cpp - Interned string pool -----------------------------===//
10 // This file implements the StringPool class.
14 #include "llvm/Support/StringPool.h"
19 StringPool::StringPool() {}
21 StringPool::~StringPool() {
25 PooledStringPtr StringPool::intern(StringRef Key) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
StringPool.cpp 1 //===-- StringPool.cpp - Interned string pool -----------------------------===//
10 // This file implements the StringPool class.
14 #include "llvm/Support/StringPool.h"
19 StringPool::StringPool() {}
21 StringPool::~StringPool() {
25 PooledStringPtr StringPool::intern(StringRef Key) {
  /external/perfetto/src/trace_processor/
string_pool.cc 24 StringPool::StringPool() {
31 StringPool::~StringPool() = default;
33 StringPool::StringPool(StringPool&&) noexcept = default;
34 StringPool& StringPool::operator=(StringPool&&) = default
    [all...]
string_pool.h 35 class StringPool {
42 Iterator(const StringPool*);
51 const StringPool* pool_ = nullptr;
56 StringPool();
57 ~StringPool();
60 StringPool(StringPool&&) noexcept;
61 StringPool& operator=(StringPool&&);
64 StringPool(const StringPool&) = delete
    [all...]
string_pool_unittest.cc 28 StringPool pool;
39 StringPool pool;
49 StringPool pool;
57 StringPool pool;
74 StringPool pool;
78 const StringPool& const_pool = pool;
97 StringPool pool;
98 std::multimap<StringPool::Id, base::StringView> string_map;
storage_columns.cc 27 const StringPool* string_pool)
storage_schema.h 87 const std::deque<StringPool::Id>* ids,
88 const StringPool* string_pool) {
  /external/llvm/unittests/Support/
StringPool.cpp 1 //===- llvm/unittest/Support/StringPoiil.cpp - StringPool tests -----------===//
10 #include "llvm/Support/StringPool.h"
18 StringPool pool;
25 StringPool pool;
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
StringPool.cpp 1 //===- llvm/unittest/Support/StringPoiil.cpp - StringPool tests -----------===//
10 #include "llvm/Support/StringPool.h"
18 StringPool pool;
25 StringPool pool;
  /external/llvm/include/llvm/Support/
StringPool.h 1 //===-- StringPool.h - Interned string pool ---------------------*- C++ -*-===//
15 // StringPool Pool;
39 /// StringPool - An interned string pool. Use the intern method to add a
42 class StringPool {
46 StringPool *Pool; ///< So the string can remove itself.
60 StringPool();
61 ~StringPool();
79 typedef StringPool::entry_t entry_t;
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
StringPool.h 1 //===-- StringPool.h - Interned string pool ---------------------*- C++ -*-===//
15 // StringPool Pool;
40 /// StringPool - An interned string pool. Use the intern method to add a
43 class StringPool {
47 StringPool *Pool; ///< So the string can remove itself.
61 StringPool();
62 ~StringPool();
80 typedef StringPool::entry_t entry_t;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
StringPool.h 1 //===- StringPool.h - Interned string pool ----------------------*- C++ -*-===//
15 // StringPool Pool;
40 /// StringPool - An interned string pool. Use the intern method to add a
43 class StringPool {
47 StringPool *Pool = nullptr; ///< So the string can remove itself.
61 StringPool();
62 ~StringPool();
80 using entry_t = StringPool::entry_t;
  /external/swiftshader/third_party/subzero/src/
IceStringPool.h 29 class StringPool {
30 StringPool(const StringPool &) = delete;
31 StringPool &operator=(const StringPool &) = delete;
36 StringPool() = default;
37 ~StringPool() = default;
75 using IDType = StringPool::IDType;
146 static LockedPtr<StringPool> getStrings(const OwnerType *Owner);
173 return hash<Ice::StringPool::IDType>()(Key.getID())
    [all...]
IceCfg.h 102 StringPool *getNodeStrings() const { return NodeStrings.get(); }
104 StringPool *getVarStrings() const { return VarStrings.get(); }
332 std::unique_ptr<StringPool> NodeStrings;
333 std::unique_ptr<StringPool> VarStrings;
356 static StringPool *getStrings(const OwnerType *PoolOwner) {
364 static StringPool *getStrings(const OwnerType *PoolOwner) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
StringPool.java 41 public class StringPool extends StringTypeBasePool implements StringSection<CharSequence, StringReference> {
43 public StringPool(@Nonnull DexPool dexPool) {
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/
StringPoolTest.java 22 * Unit tests for {@link StringPool}.
26 private StringPool pool;
30 pool = new StringPool();
ClassAnalyzerTest.java 33 analyzer = new ClassAnalyzer(coverage, null, new StringPool());
  /external/clang/tools/libclang/
CXTranslationUnit.h 32 clang::cxstring::CXStringPool *StringPool;
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
StringPool.java 26 public final class StringPool {
ClassAnalyzer.java 28 private final StringPool stringPool;
37 * @param stringPool
41 final boolean[] probes, final StringPool stringPool) {
44 this.stringPool = stringPool;
51 coverage.setSignature(stringPool.get(signature));
52 coverage.setSuperName(stringPool.get(superName));
53 coverage.setInterfaces(stringPool.get(interfaces))
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
DeclContext.cpp 47 UniquingStringPool &StringPool, bool InClangModule) {
92 NameRef = StringPool.internString(Name);
96 NameRef = StringPool.internString("(anonymous namespace)");
99 ShortNameRef = StringPool.internString(ShortName);
150 FileRef = PathResolver.resolve(File, StringPool);
DeclContext.h 34 /// StringRef is interned in the given \p StringPool.
35 StringRef resolve(std::string Path, NonRelocatableStringpool &StringPool) {
50 return StringPool.internString(ResolvedPath);
123 /// required strings will be interned in \a StringPool.
135 CompileUnit &Unit, UniquingStringPool &StringPool,
DwarfLinker.h 81 OffsetsStringPool &StringPool);
286 CompileUnit &U, OffsetsStringPool &StringPool,
295 OffsetsStringPool &StringPool);
334 OffsetsStringPool &StringPool,
344 OffsetsStringPool &StringPool,
384 OffsetsStringPool &StringPool, bool StripTemplate = false);
396 OffsetsStringPool &StringPool, bool SkipPubSection);
DwarfLinker.cpp 160 OffsetsStringPool &StringPool,
172 Info.MangledName = StringPool.getEntry(MangledName);
176 Info.Name = StringPool.getEntry(Name);
182 Info.NameWithoutTemplate = StringPool.getEntry(Split.first);
223 UniquingStringPool &StringPool,
252 *CurrentDeclContext, DIE, CU, StringPool, InClangModule);
266 StringPool, Contexts, InImportedModule);
    [all...]

Completed in 1537 milliseconds

1 2