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

  /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 58 StringPool.cpp \
CMakeLists.txt 51 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;
  /external/clang/tools/libclang/
CXTranslationUnit.h 21 void *StringPool;
CXString.cpp 90 CXStringPool *pool = static_cast<CXStringPool*>(TU->StringPool);
101 static_cast<CXStringPool*>(buf->TU->StringPool)->push_back(buf);
CIndex.cpp 63 D->StringPool = createCXStringPool();
    [all...]
  /frameworks/base/tools/aapt/
StringPool.h 35 * The StringPool class is used as an intermediate representation for
39 class StringPool
86 explicit StringPool(bool utf8 = false);
178 ANDROID_TRIVIAL_MOVE_TRAIT(StringPool::entry);
179 ANDROID_TRIVIAL_MOVE_TRAIT(StringPool::entry_style_span);
180 ANDROID_TRIVIAL_MOVE_TRAIT(StringPool::entry_style);
StringPool.cpp 7 #include "StringPool.h"
60 String8 StringPool::entry::makeConfigsString() const {
74 int StringPool::entry::compare(const entry& o) const {
104 StringPool::StringPool(bool utf8) :
109 ssize_t StringPool::add(const String16& value, const Vector<entry_style_span>& spans,
119 ssize_t StringPool::add(const String16& value,
182 status_t StringPool::addStyleSpan(size_t idx, const String16& name,
192 status_t StringPool::addStyleSpans(size_t idx, const Vector<entry_style_span>& spans)
204 status_t StringPool::addStyleSpan(size_t idx, const entry_style_span& span
    [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,
ResourceTable.h 10 #include "StringPool.h"
125 const Vector<StringPool::entry_style_span>* style = NULL,
148 const Vector<StringPool::entry_style_span>* style = NULL,
211 bool stringToValue(Res_value* outValue, StringPool* pool,
215 const Vector<StringPool::entry_style_span>* style = NULL,
262 const Vector<StringPool::entry_style_span>* _style = NULL,
285 Vector<StringPool::entry_style_span> style;
318 const Vector<StringPool::entry_style_span>* style = NULL,
324 const Vector<StringPool::entry_style_span>* style = NULL,
341 status_t prepareFlatten(StringPool* strings, ResourceTable* table
    [all...]
Android.mk 20 StringPool.cpp \
XMLNode.cpp 188 Vector<StringPool::entry_style_span>* outSpans,
192 Vector<StringPool::entry_style_span> spanStack;
269 StringPool::entry_style_span span;
314 StringPool::entry_style_span span = spanStack.top();
    [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 23 #include "llvm/Support/StringPool.h"
262 static StringPool *GCNamePool;
279 GCNamePool = new StringPool();
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.h 218 /// StringPool - A String->Symbol mapping of strings used by indirect
220 StringMap<std::pair<MCSymbol*, unsigned>, BumpPtrAllocator&> StringPool;
DwarfDebug.cpp 149 SourceIdMap(DIEValueAllocator), StringPool(DIEValueAllocator),
202 std::pair<MCSymbol*, unsigned> &Entry = StringPool[Str];
    [all...]
DwarfCompileUnit.cpp 91 MCSymbol *StringPool = DD->getStringPool();
92 Value = new (DIEValueAllocator) DIEDelta(Symb, StringPool);
    [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...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.core_2.0.2.R36x_v20100804.jar 
org.eclipse.equinox.preferences_3.3.0.v20100503.jar 
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 

Completed in 373 milliseconds