Home
last modified time | relevance | path

Searched refs:StringPool (Results 1 – 25 of 57) sorted by relevance

123

/external/perfetto/src/trace_processor/
Dstring_pool.cc24 StringPool::StringPool() { in StringPool() function in perfetto::trace_processor::StringPool
31 StringPool::~StringPool() = default;
33 StringPool::StringPool(StringPool&&) noexcept = default;
34 StringPool& StringPool::operator=(StringPool&&) = default;
36 StringPool::Id StringPool::InsertString(base::StringView str, uint64_t hash) { in InsertString()
64 uint8_t* StringPool::Block::TryInsert(base::StringView str) { in TryInsert()
88 StringPool::Iterator::Iterator(const StringPool* pool) : pool_(pool) {} in Iterator()
90 StringPool::Iterator& StringPool::Iterator::operator++() { in operator ++()
109 StringPool::Iterator::operator bool() const { in operator bool()
113 NullTermStringView StringPool::Iterator::StringView() { in StringView()
[all …]
Dstring_pool.h35 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;
65 StringPool& operator=(const StringPool&) = delete;
Dstring_pool_unittest.cc28 StringPool pool; in TEST()
39 StringPool pool; in TEST()
49 StringPool pool; in TEST()
57 StringPool pool; in TEST()
74 StringPool pool; in TEST()
78 const StringPool& const_pool = pool; in TEST()
97 StringPool pool; in TEST()
98 std::multimap<StringPool::Id, base::StringView> string_map; in TEST()
Dstorage_schema.h87 const std::deque<StringPool::Id>* ids, in AddStringColumn()
88 const StringPool* string_pool) { in AddStringColumn()
/external/swiftshader/third_party/subzero/src/
DIceStringPool.h29 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());
DIceCfg.h102 StringPool *getNodeStrings() const { return NodeStrings.get(); } in getNodeStrings()
104 StringPool *getVarStrings() const { return VarStrings.get(); } in getVarStrings()
332 std::unique_ptr<StringPool> NodeStrings;
333 std::unique_ptr<StringPool> VarStrings;
356 static StringPool *getStrings(const OwnerType *PoolOwner) { in getStrings()
364 static StringPool *getStrings(const OwnerType *PoolOwner) { in getStrings()
/external/llvm/lib/Support/
DStringPool.cpp19 StringPool::StringPool() {} in StringPool() function in StringPool
21 StringPool::~StringPool() { in ~StringPool()
25 PooledStringPtr StringPool::intern(StringRef Key) { in intern()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DStringPool.cpp19 StringPool::StringPool() {} in StringPool() function in StringPool
21 StringPool::~StringPool() { in ~StringPool()
25 PooledStringPtr StringPool::intern(StringRef Key) { in intern()
/external/swiftshader/third_party/LLVM/lib/Support/
DStringPool.cpp19 StringPool::StringPool() {} in StringPool() function in StringPool
21 StringPool::~StringPool() { in ~StringPool()
25 PooledStringPtr StringPool::intern(StringRef Key) { in intern()
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DStringPool.h43 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/
DStringPool.h43 class StringPool {
47 StringPool *Pool = nullptr; ///< So the string can remove itself.
61 StringPool();
62 ~StringPool();
80 using entry_t = StringPool::entry_t;
/external/llvm/include/llvm/Support/
DStringPool.h42 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-7.0/llvm/tools/dsymutil/
DDeclContext.cpp47 UniquingStringPool &StringPool, bool InClangModule) { in getChildDeclContext() argument
92 NameRef = StringPool.internString(Name); in getChildDeclContext()
96 NameRef = StringPool.internString("(anonymous namespace)"); in getChildDeclContext()
99 ShortNameRef = StringPool.internString(ShortName); in getChildDeclContext()
150 FileRef = PathResolver.resolve(File, StringPool); in getChildDeclContext()
DDwarfLinker.h81 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);
DDwarfLinker.cpp160 OffsetsStringPool &StringPool, in getDIENames() argument
172 Info.MangledName = StringPool.getEntry(MangledName); in getDIENames()
176 Info.Name = StringPool.getEntry(Name); in getDIENames()
182 Info.NameWithoutTemplate = StringPool.getEntry(Split.first); in getDIENames()
223 UniquingStringPool &StringPool, in analyzeContextInfo() argument
252 *CurrentDeclContext, DIE, CU, StringPool, InClangModule); in analyzeContextInfo()
266 StringPool, Contexts, InImportedModule); in analyzeContextInfo()
925 const DWARFUnit &U, OffsetsStringPool &StringPool, AttributesInfo &Info) { in cloneStringAttribute() argument
928 auto StringEntry = StringPool.getEntry(String); in cloneStringAttribute()
1174 CompileUnit &Unit, OffsetsStringPool &StringPool, const DWARFFormValue &Val, in cloneAttribute() argument
[all …]
DDeclContext.h35 StringRef resolve(std::string Path, NonRelocatableStringpool &StringPool) { in resolve() argument
50 return StringPool.internString(ResolvedPath); in resolve()
135 CompileUnit &Unit, UniquingStringPool &StringPool,
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
DStringPool.cpp18 StringPool pool; in TEST()
25 StringPool pool; in TEST()
/external/llvm/unittests/Support/
DStringPool.cpp18 StringPool pool; in TEST()
25 StringPool pool; in TEST()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
DStringPool.java41 public class StringPool extends StringTypeBasePool implements StringSection<CharSequence, StringRef… class
43 public StringPool(@Nonnull DexPool dexPool) { in StringPool() method in StringPool
DDexPool.java57 …EncodedValue, AnnotationElement, StringPool, TypePool, ProtoPool, FieldPool, MethodPool, ClassPool,
212 @Nonnull @Override public StringPool getStringSection() { in getStringSection()
213 return new StringPool(DexPool.this); in getStringSection()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/
DStringPoolTest.java26 private StringPool pool;
30 pool = new StringPool(); in setup()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
DAnalyzer.java30 import org.jacoco.core.internal.analysis.StringPool;
50 private final StringPool stringPool;
65 this.stringPool = new StringPool(); in Analyzer()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
DClassAnalyzer.java28 private final StringPool stringPool;
41 final boolean[] probes, final StringPool stringPool) { in ClassAnalyzer()
/external/pdfium/core/fxcrt/
Dstring_pool_template_unittest.cpp11 TEST(StringPool, ByteString) { in TEST() argument
54 TEST(StringPool, WideString) { in TEST() argument
/external/clang/tools/libclang/
DCXString.cpp147 return TU->StringPool->getCXStringBuf(TU); in getCXStringBuf()
151 TU->StringPool->Pool.push_back(this); in dispose()

123