/external/clang/tools/libclang/ |
CXTranslationUnit.h | 20 void *StringPool;
|
CXString.cpp | 90 CXStringPool *pool = static_cast<CXStringPool*>(TU->StringPool); 101 static_cast<CXStringPool*>(buf->TU->StringPool)->push_back(buf);
|
CIndex.cpp | 60 D->StringPool = createCXStringPool(); [all...] |
/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) {
|
Android.mk | 50 StringPool.cpp \
|
CMakeLists.txt | 42 StringPool.cpp
|
/libcore/luni/src/test/java/libcore/internal/ |
StringPoolTest.java | 20 import libcore.internal.StringPool; 25 StringPool stringPool = new StringPool(); 26 String bcd = stringPool.get(new char[] { 'a', 'b', 'c', 'd', 'e' }, 1, 3); 28 assertSame(bcd, stringPool.get(new char[] { 'a', 'b', 'c', 'd', 'e' }, 1, 3)); 32 StringPool stringPool = new StringPool(); 37 String aString = stringPool.get(a, 0, 2) [all...] |
/external/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;
|
/frameworks/base/tools/aapt/ |
StringPool.cpp | 7 #include "StringPool.h" 45 StringPool::StringPool(bool sorted, bool utf8) 50 ssize_t StringPool::add(const String16& value, bool mergeDuplicates) 55 ssize_t StringPool::add(const String16& value, const Vector<entry_style_span>& spans) 64 ssize_t StringPool::add(const String16& ident, const String16& value, 117 status_t StringPool::addStyleSpan(size_t idx, const String16& name, 127 status_t StringPool::addStyleSpans(size_t idx, const Vector<entry_style_span>& spans) 139 status_t StringPool::addStyleSpan(size_t idx, const entry_style_span& span) 153 size_t StringPool::size() cons [all...] |
XMLNode.h | 10 #include "StringPool.h" 27 Vector<StringPool::entry_style_span>* outSpans, 172 status_t collect_strings(StringPool* dest, Vector<uint32_t>* outResIds, 175 status_t collect_attr_strings(StringPool* outPool, 178 status_t collect_resid_strings(StringPool* outPool, 181 status_t flatten_node(const StringPool& strings, const sp<AaptFile>& dest,
|
StringPool.h | 34 * The StringPool class is used as an intermediate representation for 38 class StringPool 75 explicit StringPool(bool sorted = false, bool utf8 = false);
|
ResourceTable.h | 10 #include "StringPool.h" 94 const Vector<StringPool::entry_style_span>* style = NULL, 117 const Vector<StringPool::entry_style_span>* style = NULL, 180 bool stringToValue(Res_value* outValue, StringPool* pool, 184 const Vector<StringPool::entry_style_span>* style = NULL, 229 const Vector<StringPool::entry_style_span>* _style = NULL, 252 Vector<StringPool::entry_style_span> style; 285 const Vector<StringPool::entry_style_span>* style = NULL, 291 const Vector<StringPool::entry_style_span>* style = NULL, 308 status_t prepareFlatten(StringPool* strings, ResourceTable* table) [all...] |
Android.mk | 20 StringPool.cpp \
|
XMLNode.cpp | 181 Vector<StringPool::entry_style_span>* outSpans, 185 Vector<StringPool::entry_style_span> spanStack; 262 StringPool::entry_style_span span; 307 StringPool::entry_style_span span = spanStack.top(); 966 StringPool strings = StringPool(false, mUTF8); [all...] |
ResourceTable.cpp | 587 Vector<StringPool::entry_style_span> spans; 657 Vector<StringPool::entry_style_span> spans; [all...] |
/libcore/luni/src/main/java/libcore/internal/ |
StringPool.java | 24 public final class StringPool {
|
/frameworks/base/core/java/android/util/ |
JsonReader.java | 25 import libcore.internal.StringPool; 181 private final StringPool stringPool = new StringPool(); 888 return stringPool.get(buffer, start, pos - start - 1); 986 result = stringPool.get(buffer, pos, i); [all...] |
/external/llvm/lib/VMCore/ |
Function.cpp | 22 #include "llvm/Support/StringPool.h" 260 static StringPool *GCNamePool; 277 GCNamePool = new StringPool();
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
DwarfDebug.h | 184 /// StringPool - A String->Symbol mapping of strings used by indirect 186 StringMap<std::pair<MCSymbol*, unsigned> > StringPool;
|
DwarfDebug.cpp | 273 std::pair<MCSymbol*, unsigned> &Entry = StringPool[Str]; [all...] |
/libcore/xml/src/main/java/org/kxml2/io/ |
KXmlParser.java | 32 import libcore.internal.StringPool; 179 public final StringPool stringPool = new StringPool(); 504 return stringPool.get(buffer, start, end - start); [all...] |