/external/perfetto/src/trace_processor/ |
D | string_pool.cc | 24 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 …]
|
D | 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; 65 StringPool& operator=(const StringPool&) = delete;
|
D | string_pool_unittest.cc | 28 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()
|
D | storage_schema.h | 87 const std::deque<StringPool::Id>* ids, in AddStringColumn() 88 const StringPool* string_pool) { in AddStringColumn()
|
/external/swiftshader/third_party/subzero/src/ |
D | 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());
|
D | IceCfg.h | 102 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/ |
D | StringPool.cpp | 19 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/ |
D | StringPool.cpp | 19 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/ |
D | StringPool.cpp | 19 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/ |
D | StringPool.h | 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/ |
D | StringPool.h | 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/llvm/include/llvm/Support/ |
D | StringPool.h | 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-7.0/llvm/tools/dsymutil/ |
D | DeclContext.cpp | 47 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()
|
D | 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);
|
D | DwarfLinker.cpp | 160 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 …]
|
D | DeclContext.h | 35 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/ |
D | StringPool.cpp | 18 StringPool pool; in TEST() 25 StringPool pool; in TEST()
|
/external/llvm/unittests/Support/ |
D | StringPool.cpp | 18 StringPool pool; in TEST() 25 StringPool pool; in TEST()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/ |
D | StringPool.java | 41 public class StringPool extends StringTypeBasePool implements StringSection<CharSequence, StringRef… class 43 public StringPool(@Nonnull DexPool dexPool) { in StringPool() method in StringPool
|
D | DexPool.java | 57 …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/ |
D | StringPoolTest.java | 26 private StringPool pool; 30 pool = new StringPool(); in setup()
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/ |
D | Analyzer.java | 30 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/ |
D | ClassAnalyzer.java | 28 private final StringPool stringPool; 41 final boolean[] probes, final StringPool stringPool) { in ClassAnalyzer()
|
/external/pdfium/core/fxcrt/ |
D | string_pool_template_unittest.cpp | 11 TEST(StringPool, ByteString) { in TEST() argument 54 TEST(StringPool, WideString) { in TEST() argument
|
/external/clang/tools/libclang/ |
D | CXString.cpp | 147 return TU->StringPool->getCXStringBuf(TU); in getCXStringBuf() 151 TU->StringPool->Pool.push_back(this); in dispose()
|