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

1 2

  /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 60 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.h 34 * The StringPool class is used as an intermediate representation for
38 class StringPool
85 explicit StringPool(bool utf8 = false);
177 ANDROID_TRIVIAL_MOVE_TRAIT(StringPool::entry);
178 ANDROID_TRIVIAL_MOVE_TRAIT(StringPool::entry_style_span);
179 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 18 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 588 Vector<StringPool::entry_style_span> spans;
683 Vector<StringPool::entry_style_span> spans;
    [all...]
  /external/clang/tools/libclang/
CXTranslationUnit.h 29 clang::cxstring::CXStringPool *StringPool;
CXString.cpp 134 return TU->StringPool->getCXStringBuf(TU);
138 TU->StringPool->Pool.push_back(this);
CIndex.cpp 68 D->StringPool = new cxstring::CXStringPool();
    [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/CodeGen/AsmPrinter/
DwarfDebug.h 233 StrPool StringPool;
248 : Asm(AP), AbbreviationsSet(AS), Abbreviations(A), StringPool(DA),
288 StrPool *getStringPool() { return &StringPool; }
DwarfCompileUnit.cpp 142 MCSymbol *StringPool = DU->getStringPoolSym();
143 Value = new (DIEValueAllocator) DIEDelta(Symb, StringPool);
164 MCSymbol *StringPool = DU->getStringPoolSym();
165 Value = new (DIEValueAllocator) DIEDelta(Symb, StringPool);
    [all...]
DwarfDebug.cpp 250 StringPool.GetOrCreateValue(Str).getValue();
259 StringPool.GetOrCreateValue(Str).getValue();
    [all...]
  /external/llvm/lib/IR/
Function.cpp 30 #include "llvm/Support/StringPool.h"
304 static StringPool *GCNamePool;
321 GCNamePool = new StringPool();
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TimelineModel.js 38 this._stringPool = new StringPool();
utilities.js 1225 function StringPool()
1230 StringPool.prototype = {
1262 throw "recursion depth limit reached in StringPool.deepIntern(), perhaps attempting to traverse cyclical references?";
    [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 

Completed in 1163 milliseconds

1 2