HomeSort by relevance Sort by last modified time
    Searched refs:PooledStringPtr (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/Support/
StringPool.h 16 // PooledStringPtr Str = Pool.intern("wakka wakka");
23 // Pooled strings are immutable, but you can change a PooledStringPtr to point
38 class PooledStringPtr;
54 friend class PooledStringPtr;
67 PooledStringPtr intern(StringRef Str);
74 /// PooledStringPtr - A pointer to an interned string. Use operator bool to
79 class PooledStringPtr {
84 PooledStringPtr() : S(0) {}
86 explicit PooledStringPtr(entry_t *E) : S(E) {
90 PooledStringPtr(const PooledStringPtr &That) : S(That.S)
    [all...]
  /external/llvm/lib/Support/
StringPool.cpp 22 assert(InternTable.empty() && "PooledStringPtr leaked!");
25 PooledStringPtr StringPool::intern(StringRef Key) {
28 return PooledStringPtr(&*I);
34 return PooledStringPtr(S);
  /external/llvm/lib/IR/
Function.cpp 303 static DenseMap<const Function*,PooledStringPtr> *GCNames;
323 GCNames = new DenseMap<const Function*,PooledStringPtr>();

Completed in 98 milliseconds